1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
//
#include "batchConfig.h"
#include "../shared/xmlBase.h"
#include "folderPair.h"
#include <iterator>
#include <wx/wupdlock.h>
#include "../shared/helpProvider.h"
#include "../shared/fileHandling.h"
#include "messagePopup.h"
#include <wx/dnd.h>
#include <wx/msgdlg.h>
using namespace FreeFileSync;
class BatchFileDropEvent : public wxFileDropTarget
{
public:
BatchFileDropEvent(BatchDialog& dlg) :
batchDlg(dlg) {}
virtual bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& filenames)
{
if (!filenames.IsEmpty())
{
const wxString droppedFileName = filenames[0];
xmlAccess::XmlType fileType = xmlAccess::getXmlType(droppedFileName);
//test if ffs batch file has been dropped
if (fileType == xmlAccess::XML_BATCH_CONFIG)
batchDlg.loadBatchFile(droppedFileName);
else
{
wxString errorMessage = _("%x is not a valid FreeFileSync batch file!");
errorMessage.Replace(wxT("%x"), wxString(wxT("\"")) + droppedFileName + wxT("\""), false);
wxMessageBox(errorMessage, _("Error"), wxOK | wxICON_ERROR);
}
}
return false;
}
private:
BatchDialog& batchDlg;
};
//###################################################################################################################################
//------------------------------------------------------------------
/* class hierarchy:
template<>
FolderPairPanelBasic
/|\
|
template<>
FolderPairCallback BatchFolderPairGenerated
/|\ /|\
_________|______________ ________|
| | |
FirstBatchFolderPairCfg BatchFolderPairPanel
*/
template <class GuiPanel>
class FolderPairCallback : public FolderPairPanelBasic<GuiPanel> //implements callback functionality to BatchDialog as imposed by FolderPairPanelBasic
{
public:
FolderPairCallback(GuiPanel& basicPanel, BatchDialog& batchDialog) :
FolderPairPanelBasic<GuiPanel>(basicPanel), //pass FolderPairGenerated part...
batchDlg(batchDialog) {}
private:
virtual wxWindow* getParentWindow()
{
return &batchDlg;
}
virtual MainConfiguration getMainConfig() const
{
return batchDlg.getCurrentConfiguration().mainCfg;
}
BatchDialog& batchDlg;
};
class BatchFolderPairPanel :
public BatchFolderPairGenerated, //BatchFolderPairPanel "owns" BatchFolderPairGenerated!
public FolderPairCallback<BatchFolderPairGenerated>
{
public:
BatchFolderPairPanel(wxWindow* parent, BatchDialog& batchDialog) :
BatchFolderPairGenerated(parent),
FolderPairCallback<BatchFolderPairGenerated>(static_cast<BatchFolderPairGenerated&>(*this), batchDialog), //pass BatchFolderPairGenerated part...
dragDropOnLeft( m_panelLeft, m_dirPickerLeft, m_directoryLeft),
dragDropOnRight(m_panelRight, m_dirPickerRight, m_directoryRight) {}
private:
//support for drag and drop
DragDropOnDlg dragDropOnLeft;
DragDropOnDlg dragDropOnRight;
};
class FirstBatchFolderPairCfg : public FolderPairCallback<BatchDlgGenerated>
{
public:
FirstBatchFolderPairCfg(BatchDialog& batchDialog) :
FolderPairCallback<BatchDlgGenerated>(batchDialog, batchDialog),
//prepare drag & drop
dragDropOnLeft(batchDialog.m_panelLeft,
batchDialog.m_dirPickerLeft,
batchDialog.m_directoryLeft),
dragDropOnRight(batchDialog.m_panelRight,
batchDialog.m_dirPickerRight,
batchDialog.m_directoryRight) {}
private:
//support for drag and drop
DragDropOnDlg dragDropOnLeft;
DragDropOnDlg dragDropOnRight;
};
//###################################################################################################################################
BatchDialog::BatchDialog(wxWindow* window, const xmlAccess::XmlBatchConfig& batchCfg) :
BatchDlgGenerated(window)
{
init();
loadBatchCfg(batchCfg);
}
BatchDialog::BatchDialog(wxWindow* window, const wxString& filename) :
BatchDlgGenerated(window)
{
init();
loadBatchFile(filename);
}
BatchDialog::~BatchDialog() {} //non-inline destructor for std::auto_ptr to work with forward declaration
void BatchDialog::init()
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
m_bpButtonCmpConfig->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("cmpConfig")));
m_bpButtonSyncConfig->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("syncConfig")));
m_bpButtonHelp->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("help")));
//init handling of first folder pair
firstFolderPair.reset(new FirstBatchFolderPairCfg(*this));
m_bpButtonFilter->Connect(wxEVT_RIGHT_DOWN, wxCommandEventHandler(BatchDialog::OnGlobalFilterOpenContext), NULL, this);
//prepare drag & drop for loading of *.ffs_batch files
SetDropTarget(new BatchFileDropEvent(*this));
dragDropOnLogfileDir.reset(new DragDropOnDlg(m_panelLogging, m_dirPickerLogfileDir, m_textCtrlLogfileDir));
//set icons for this dialog
m_bpButtonAddPair->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("addFolderPair")));
m_bitmap27->SetBitmap(GlobalResources::getInstance().getImageByName(wxT("batch")));
m_buttonSave->SetFocus();
}
//------------------- error handling --------------------------
xmlAccess::OnError BatchDialog::getSelectionHandleError() const
{
switch (m_choiceHandleError->GetSelection())
{
case 0:
return xmlAccess::ON_ERROR_POPUP;
case 1:
return xmlAccess::ON_ERROR_IGNORE;
case 2:
return xmlAccess::ON_ERROR_EXIT;
default:
assert(false);
return xmlAccess::ON_ERROR_POPUP;
}
}
void BatchDialog::updateToolTipErrorHandling(const xmlAccess::OnError value)
{
switch (value)
{
case xmlAccess::ON_ERROR_POPUP:
m_choiceHandleError->SetToolTip(_("Show popup on errors or warnings"));
break;
case xmlAccess::ON_ERROR_IGNORE:
m_choiceHandleError->SetToolTip(_("Hide all error and warning messages"));
break;
case xmlAccess::ON_ERROR_EXIT:
m_choiceHandleError->SetToolTip(_("Abort synchronization immediately"));
break;
}
}
void BatchDialog::setSelectionHandleError(const xmlAccess::OnError value)
{
m_choiceHandleError->Clear();
m_choiceHandleError->Append(_("Show popup"));
m_choiceHandleError->Append(_("Ignore errors"));
if (m_checkBoxSilent->GetValue()) //this option shall be available for silent mode only!
m_choiceHandleError->Append(_("Exit instantly"));
//default
m_choiceHandleError->SetSelection(0);
switch (value)
{
case xmlAccess::ON_ERROR_POPUP:
m_choiceHandleError->SetSelection(0);
break;
case xmlAccess::ON_ERROR_IGNORE:
m_choiceHandleError->SetSelection(1);
break;
case xmlAccess::ON_ERROR_EXIT:
if (m_checkBoxSilent->GetValue()) //this option shall be available for silent mode only!
m_choiceHandleError->SetSelection(2);
break;
}
updateToolTipErrorHandling(getSelectionHandleError());
}
void BatchDialog::OnChangeErrorHandling(wxCommandEvent& event)
{
updateToolTipErrorHandling(getSelectionHandleError());
}
void BatchDialog::OnCmpSettings(wxCommandEvent& event)
{
//show window right next to the compare-config button
wxPoint windowPos = m_bpButtonCmpConfig->GetScreenPosition();
windowPos.x += m_bpButtonCmpConfig->GetSize().GetWidth() + 5;
if (FreeFileSync::showCompareCfgDialog(windowPos,
localBatchCfg.mainCfg.compareVar,
localBatchCfg.mainCfg.handleSymlinks) == DefaultReturnCode::BUTTON_OKAY)
{
updateGui();
}
}
void BatchDialog::OnSyncSettings(wxCommandEvent& event)
{
SyncCfgDialog* syncDlg = new SyncCfgDialog(this,
localBatchCfg.mainCfg.compareVar,
localBatchCfg.mainCfg.syncConfiguration,
localBatchCfg.mainCfg.handleDeletion,
localBatchCfg.mainCfg.customDeletionDirectory,
NULL);
if (syncDlg->ShowModal() == SyncCfgDialog::BUTTON_APPLY)
{
updateGui();
}
}
void BatchDialog::OnConfigureFilter(wxCommandEvent& event)
{
if (showFilterDialog(true, //is main filter dialog
localBatchCfg.mainCfg.globalFilter.includeFilter,
localBatchCfg.mainCfg.globalFilter.excludeFilter) == DefaultReturnCode::BUTTON_OKAY)
{
updateGui();
}
}
void BatchDialog::updateGui() //re-evaluate gui after config changes
{
//update compare variant name
m_staticTextCmpVariant->SetLabel(wxString(wxT("(")) + getVariantName(localBatchCfg.mainCfg.compareVar) + wxT(")"));
//update sync variant name
m_staticTextSyncVariant->SetLabel(wxString(wxT("(")) + localBatchCfg.mainCfg.getSyncVariantName() + wxT(")"));
//set filter icon
if (isNullFilter(localBatchCfg.mainCfg.globalFilter))
{
m_bpButtonFilter->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("filterOff")));
m_bpButtonFilter->SetToolTip(_("No filter selected"));
}
else
{
m_bpButtonFilter->SetBitmapLabel(GlobalResources::getInstance().getImageByName(wxT("filterOn")));
m_bpButtonFilter->SetToolTip(_("Filter is active"));
}
m_panelOverview->Layout(); //adjust stuff inside scrolled window
}
void BatchDialog::OnGlobalFilterOpenContext(wxCommandEvent& event)
{
const int menuId = 1234;
contextMenu.reset(new wxMenu); //re-create context menu
contextMenu->Append(menuId, _("Clear filter settings"));
contextMenu->Connect(wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(BatchDialog::OnGlobalFilterRemConfirm), NULL, this);
if (isNullFilter(localBatchCfg.mainCfg.globalFilter))
contextMenu->Enable(menuId, false); //disable menu item, if clicking wouldn't make sense anyway
PopupMenu(contextMenu.get()); //show context menu
}
void BatchDialog::OnGlobalFilterRemConfirm(wxCommandEvent& event)
{
localBatchCfg.mainCfg.globalFilter = FilterConfig();
updateGui();
}
void BatchDialog::OnCheckSilent(wxCommandEvent& event)
{
updateVisibleTabs();
//reset error handling depending on "m_checkBoxSilent"
setSelectionHandleError(getSelectionHandleError());
}
void BatchDialog::OnHelp(wxCommandEvent& event)
{
#ifdef FFS_WIN
FreeFileSync::displayHelpEntry(wxT("html\\advanced\\ScheduleBatch.html"));
#elif defined FFS_LINUX
FreeFileSync::displayHelpEntry(wxT("html/advanced/ScheduleBatch.html"));
#endif
}
void BatchDialog::updateVisibleTabs()
{
showNotebookpage(m_panelLogging, _("Logging"), m_checkBoxSilent->GetValue());
}
void BatchDialog::showNotebookpage(wxWindow* page, const wxString& pageName, bool show)
{
int windowPosition = -1;
for (size_t i = 0; i < m_notebookSettings->GetPageCount(); ++i)
if (m_notebookSettings->GetPage(i) == page)
{
windowPosition = static_cast<int>(i);
break;
}
if (show)
{
if (windowPosition == -1)
m_notebookSettings->AddPage(page, pageName, false);
}
else
{
if (windowPosition != -1)
{
//do not delete currently selected tab!!
if (m_notebookSettings->GetCurrentPage() == m_notebookSettings->GetPage(windowPosition))
m_notebookSettings->ChangeSelection(0);
m_notebookSettings->RemovePage(windowPosition);
}
}
}
void BatchDialog::OnClose(wxCloseEvent& event)
{
EndModal(0);
}
void BatchDialog::OnCancel(wxCommandEvent& event)
{
EndModal(0);
}
void BatchDialog::OnSaveBatchJob(wxCommandEvent& event)
{
//get a filename
const wxString defaultFileName = proposedBatchFileName.empty() ? wxT("SyncJob.ffs_batch") : proposedBatchFileName;
wxFileDialog* filePicker = new wxFileDialog(this, wxEmptyString, wxEmptyString, defaultFileName, wxString(_("FreeFileSync batch file")) + wxT(" (*.ffs_batch)|*.ffs_batch"), wxFD_SAVE);
if (filePicker->ShowModal() == wxID_OK)
{
const wxString newFileName = filePicker->GetPath();
if (FreeFileSync::fileExists(wxToZ(newFileName)))
{
QuestionDlg* messageDlg = new QuestionDlg(this,
QuestionDlg::BUTTON_YES | QuestionDlg::BUTTON_CANCEL,
wxString(_("File already exists. Overwrite?")) + wxT(" \"") + newFileName + wxT("\""));
if (messageDlg->ShowModal() != QuestionDlg::BUTTON_YES)
{
OnSaveBatchJob(event); //retry
return;
}
}
//create batch file
if (saveBatchFile(newFileName))
EndModal(BATCH_FILE_SAVED);
}
}
void BatchDialog::OnLoadBatchJob(wxCommandEvent& event)
{
wxFileDialog* filePicker = new wxFileDialog(this, wxEmptyString, wxEmptyString, wxEmptyString, wxString(_("FreeFileSync batch file")) + wxT(" (*.ffs_batch)|*.ffs_batch"), wxFD_OPEN);;
if (filePicker->ShowModal() == wxID_OK)
loadBatchFile(filePicker->GetPath());
}
inline
FolderPairEnh getEnahncedPair(const BatchFolderPairPanel* panel)
{
return FolderPairEnh(panel->getLeftDir(),
panel->getRightDir(),
panel->getAltSyncConfig(),
panel->getAltFilterConfig());
}
xmlAccess::XmlBatchConfig BatchDialog::getCurrentConfiguration() const
{
xmlAccess::XmlBatchConfig batchCfg = localBatchCfg;
//load parameter with ownership within wxWidgets controls...
//first folder pair
batchCfg.mainCfg.firstPair = FolderPairEnh(firstFolderPair->getLeftDir(),
firstFolderPair->getRightDir(),
firstFolderPair->getAltSyncConfig(),
firstFolderPair->getAltFilterConfig());
//add additional pairs
batchCfg.mainCfg.additionalPairs.clear();
std::transform(additionalFolderPairs.begin(), additionalFolderPairs.end(),
std::back_inserter(batchCfg.mainCfg.additionalPairs), getEnahncedPair);
//load structure with batch settings "batchCfg"
batchCfg.silent = m_checkBoxSilent->GetValue();
batchCfg.logFileDirectory = m_textCtrlLogfileDir->GetValue();
batchCfg.handleError = getSelectionHandleError();
return batchCfg;
}
bool BatchDialog::saveBatchFile(const wxString& filename)
{
const xmlAccess::XmlBatchConfig batchCfg = getCurrentConfiguration();
//write config to XML
try
{
xmlAccess::writeBatchConfig(batchCfg, filename);
}
catch (const xmlAccess::XmlError& error)
{
wxMessageBox(error.show().c_str(), _("Error"), wxOK | wxICON_ERROR);
return false;
}
SetTitle(wxString(_("Create a batch job")) + wxT(" - ") + filename);
proposedBatchFileName = filename; //may be used on next save
return true;
}
void BatchDialog::loadBatchFile(const wxString& filename)
{
//load XML settings
xmlAccess::XmlBatchConfig batchCfg; //structure to receive gui settings
try
{
xmlAccess::readBatchConfig(filename, batchCfg);
}
catch (const xmlAccess::XmlError& error)
{
if (error.getSeverity() == xmlAccess::XmlError::WARNING)
wxMessageBox(error.show(), _("Warning"), wxOK | wxICON_WARNING);
else
{
wxMessageBox(error.show(), _("Error"), wxOK | wxICON_ERROR);
return;
}
}
SetTitle(wxString(_("Create a batch job")) + wxT(" - ") + filename);
proposedBatchFileName = filename; //may be used on next save
this->loadBatchCfg(batchCfg);
}
void BatchDialog::loadBatchCfg(const xmlAccess::XmlBatchConfig& batchCfg)
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
//make working copy
localBatchCfg = batchCfg;
m_checkBoxSilent->SetValue(batchCfg.silent);
m_textCtrlLogfileDir->SetValue(batchCfg.logFileDirectory);
//error handling is dependent from m_checkBoxSilent! /|\ \|/
setSelectionHandleError(batchCfg.handleError);
//set first folder pair
firstFolderPair->setValues(batchCfg.mainCfg.firstPair.leftDirectory,
batchCfg.mainCfg.firstPair.rightDirectory,
batchCfg.mainCfg.firstPair.altSyncConfig,
batchCfg.mainCfg.firstPair.localFilter);
//remove existing additional folder pairs
clearAddFolderPairs();
//set additional pairs
addFolderPair(batchCfg.mainCfg.additionalPairs);
updateVisibleTabs();
updateGui(); //re-evaluate gui after config changes
Fit(); //needed
Refresh(); //needed
Centre();
}
void BatchDialog::OnAddFolderPair(wxCommandEvent& event)
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
std::vector<FolderPairEnh> newPairs;
newPairs.push_back(getCurrentConfiguration().mainCfg.firstPair);
addFolderPair(newPairs, true); //add pair in front of additonal pairs
//clear first pair
const FolderPairEnh cfgEmpty;
firstFolderPair->setValues(cfgEmpty.leftDirectory,
cfgEmpty.rightDirectory,
cfgEmpty.altSyncConfig,
cfgEmpty.localFilter);
}
void BatchDialog::OnRemoveFolderPair(wxCommandEvent& event)
{
//find folder pair originating the event
const wxObject* const eventObj = event.GetEventObject();
for (std::vector<BatchFolderPairPanel*>::const_iterator i = additionalFolderPairs.begin(); i != additionalFolderPairs.end(); ++i)
{
if (eventObj == static_cast<wxObject*>((*i)->m_bpButtonRemovePair))
{
removeAddFolderPair(i - additionalFolderPairs.begin());
return;
}
}
}
void BatchDialog::OnRemoveTopFolderPair(wxCommandEvent& event)
{
if (additionalFolderPairs.size() > 0)
{
//get settings from second folder pair
const FolderPairEnh cfgSecond = getEnahncedPair(additionalFolderPairs[0]);
//reset first pair
firstFolderPair->setValues(cfgSecond.leftDirectory,
cfgSecond.rightDirectory,
cfgSecond.altSyncConfig,
cfgSecond.localFilter);
removeAddFolderPair(0); //remove second folder pair (first of additional folder pairs)
}
}
const size_t MAX_FOLDER_PAIRS = 3;
void BatchDialog::updateGuiForFolderPair()
{
//adapt delete top folder pair button
if (additionalFolderPairs.size() == 0)
m_bpButtonRemovePair->Hide();
else
m_bpButtonRemovePair->Show();
//adapt local filter and sync cfg for first folder pair
if ( additionalFolderPairs.size() == 0 &&
firstFolderPair->getAltSyncConfig().get() == NULL &&
NameFilter(firstFolderPair->getAltFilterConfig().includeFilter,
firstFolderPair->getAltFilterConfig().excludeFilter).isNull())
{
m_bpButtonLocalFilter->Hide();
m_bpButtonAltSyncCfg->Hide();
}
else
{
m_bpButtonLocalFilter->Show();
m_bpButtonAltSyncCfg->Show();
}
m_scrolledWindow6->Fit(); //adjust scrolled window size
m_panelOverview->Layout(); //adjust stuff inside scrolled window
}
void BatchDialog::addFolderPair(const std::vector<FreeFileSync::FolderPairEnh>& newPairs, bool addFront)
{
wxWindowUpdateLocker dummy(m_panelOverview); //avoid display distortion
if (!newPairs.empty())
{
//add folder pairs
int pairHeight = 0;
for (std::vector<FreeFileSync::FolderPairEnh>::const_iterator i = newPairs.begin(); i != newPairs.end(); ++i)
{
BatchFolderPairPanel* newPair = new BatchFolderPairPanel(m_scrolledWindow6, *this);
if (addFront)
{
bSizerAddFolderPairs->Insert(0, newPair, 0, wxEXPAND, 5);
additionalFolderPairs.insert(additionalFolderPairs.begin(), newPair);
}
else
{
bSizerAddFolderPairs->Add(newPair, 0, wxEXPAND, 5);
additionalFolderPairs.push_back(newPair);
}
//get size of scrolled window
pairHeight = newPair->GetSize().GetHeight();
//register events
newPair->m_bpButtonRemovePair->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(BatchDialog::OnRemoveFolderPair), NULL, this );
//set alternate configuration
newPair->setValues(i->leftDirectory,
i->rightDirectory,
i->altSyncConfig,
i->localFilter);
}
//set size of scrolled window
const size_t visiblePairs = std::min(additionalFolderPairs.size() + 1, MAX_FOLDER_PAIRS); //up to MAX_FOLDER_PAIRS pairs shall be shown
m_scrolledWindow6->SetMinSize(wxSize( -1, pairHeight * static_cast<int>(visiblePairs)));
//update controls
m_scrolledWindow6->Fit(); //adjust scrolled window size
m_panelOverview->Layout(); //adjust stuff inside scrolled window
Fit(); //adapt dialog size
//after changing folder pairs window focus is lost: results in scrolled window scrolling to top each time window is shown: we don't want this
m_bpButtonAddPair->SetFocus();
}
updateGuiForFolderPair();
}
void BatchDialog::removeAddFolderPair(const int pos)
{
wxWindowUpdateLocker dummy(m_panelOverview); //avoid display distortion
if (0 <= pos && pos < static_cast<int>(additionalFolderPairs.size()))
{
//remove folder pairs from window
BatchFolderPairPanel* pairToDelete = additionalFolderPairs[pos];
const int pairHeight = pairToDelete->GetSize().GetHeight();
bSizerAddFolderPairs->Detach(pairToDelete); //Remove() does not work on Window*, so do it manually
pairToDelete->Destroy(); //
additionalFolderPairs.erase(additionalFolderPairs.begin() + pos); //remove last element in vector
//set size of scrolled window
const size_t visiblePairs = std::min(additionalFolderPairs.size() + 1, MAX_FOLDER_PAIRS); //up to MAX_FOLDER_PAIRS pairs shall be shown
m_scrolledWindow6->SetMinSize(wxSize(-1, pairHeight * static_cast<int>(visiblePairs)));
//update controls
m_scrolledWindow6->Fit(); //adjust scrolled window size
m_panelOverview->Layout(); //adjust stuff inside scrolled window
m_panelOverview->InvalidateBestSize(); //needed for Fit() to work correctly!
Fit(); //adapt dialog size
//after changing folder pairs window focus is lost: results in scrolled window scrolling to top each time window is shown: we don't want this
m_bpButtonCmpConfig->SetFocus();
}
updateGuiForFolderPair();
}
void BatchDialog::clearAddFolderPairs()
{
wxWindowUpdateLocker dummy(m_panelOverview); //avoid display distortion
additionalFolderPairs.clear();
bSizerAddFolderPairs->Clear(true);
m_scrolledWindow6->SetMinSize(wxSize(-1, sbSizerMainPair->GetSize().GetHeight())); //respect height of main pair
}
/*
#ifdef FFS_WIN
#include <wx/msw/wrapwin.h> //includes "windows.h"
#include <shlobj.h>
#endif // FFS_WIN
template <typename T>
struct CleanUp
{
CleanUp(T* element) : m_element(element) {}
~CleanUp()
{
m_element->Release();
}
T* m_element;
};
bool BatchDialog::createBatchFile(const wxString& filename)
{
//create shell link (instead of batch file) for full Unicode support
HRESULT hResult = E_FAIL;
IShellLink* pShellLink = NULL;
if (FAILED(CoCreateInstance(CLSID_ShellLink, //class identifier
NULL, //object isn't part of an aggregate
CLSCTX_INPROC_SERVER, //context for running executable code
IID_IShellLink, //interface identifier
(void**)&pShellLink))) //pointer to storage of interface pointer
return false;
CleanUp<IShellLink> cleanOnExit(pShellLink);
wxString freeFileSyncExe = wxStandardPaths::Get().GetExecutablePath();
if (FAILED(pShellLink->SetPath(freeFileSyncExe.c_str())))
return false;
if (FAILED(pShellLink->SetArguments(getCommandlineArguments().c_str())))
return false;
if (FAILED(pShellLink->SetIconLocation(freeFileSyncExe.c_str(), 1))) //second icon from executable file is used
return false;
if (FAILED(pShellLink->SetDescription(_("FreeFileSync Batch Job"))))
return false;
IPersistFile* pPersistFile = NULL;
if (FAILED(pShellLink->QueryInterface(IID_IPersistFile, (void**)&pPersistFile)))
return false;
CleanUp<IPersistFile> cleanOnExit2(pPersistFile);
//pPersistFile->Save accepts unicode input only
#ifdef _UNICODE
hResult = pPersistFile->Save(filename.c_str(), TRUE);
#else
WCHAR wszTemp [MAX_PATH];
if (MultiByteToWideChar(CP_ACP, 0, filename.c_str(), -1, wszTemp, MAX_PATH) == 0)
return false;
hResult = pPersistFile->Save(wszTemp, TRUE);
#endif
if (FAILED(hResult))
return false;
return true;
}
*/
|