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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
|
// **************************************************************************
// * 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-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
//
#include "batch_config.h"
#include "../shared/dir_picker_i18n.h"
#include "folder_pair.h"
#include <iterator>
#include <wx/wupdlock.h>
#include "../shared/help_provider.h"
#include "../shared/file_handling.h"
#include "msg_popup.h"
#include "gui_generated.h"
#include <wx/dnd.h>
#include <wx/msgdlg.h>
//#include "../shared/util.h"
#include "../shared/wx_choice_enum.h"
#include "../shared/mouse_move_dlg.h"
using namespace zen;
class DirectoryPairBatchFirst;
class DirectoryPairBatch;
class BatchDialog: public BatchDlgGenerated
{
friend class BatchFileDropEvent;
template <class GuiPanel>
friend class FolderPairCallback;
public:
BatchDialog(wxWindow* window, const xmlAccess::XmlBatchConfig& batchCfg);
BatchDialog(wxWindow* window, const wxString& filename);
~BatchDialog();
private:
void init();
virtual void OnCmpSettings( wxCommandEvent& event);
virtual void OnSyncSettings( wxCommandEvent& event);
virtual void OnConfigureFilter( wxCommandEvent& event);
virtual void OnHelp( wxCommandEvent& event);
void OnGlobalFilterOpenContext(wxCommandEvent& event);
void OnGlobalFilterRemConfirm(wxCommandEvent& event);
virtual void OnCheckSilent( wxCommandEvent& event);
virtual void OnChangeMaxLogCountTxt(wxCommandEvent& event);
virtual void OnClose( wxCloseEvent& event);
virtual void OnCancel( wxCommandEvent& event);
virtual void OnSaveBatchJob( wxCommandEvent& event);
virtual void OnLoadBatchJob( wxCommandEvent& event);
virtual void OnAddFolderPair( wxCommandEvent& event);
virtual void OnRemoveFolderPair( wxCommandEvent& event);
virtual void OnRemoveTopFolderPair(wxCommandEvent& event);
void OnFilesDropped(FFSFileDropEvent& event);
void addFolderPair(const std::vector<zen::FolderPairEnh>& newPairs, bool addFront = false);
void removeAddFolderPair(const int pos);
void clearAddFolderPairs();
void updateGuiForFolderPair();
void updateGui(); //re-evaluate gui after config changes
void showNotebookpage(wxWindow* page, const wxString& pageName, bool show);
//error handling
//xmlAccess::OnError getSelectionHandleError() const; -> obsolete, use getEnumVal()
void setSelectionHandleError(const xmlAccess::OnError value);
void OnChangeErrorHandling(wxCommandEvent& event);
bool saveBatchFile(const wxString& filename);
void loadBatchFile(const wxString& filename);
void loadBatchCfg(const xmlAccess::XmlBatchConfig& batchCfg);
xmlAccess::XmlBatchConfig getCurrentConfiguration() const;
std::shared_ptr<DirectoryPairBatchFirst> firstFolderPair; //always bound!!!
std::vector<DirectoryPairBatch*> additionalFolderPairs;
//used when saving batch file
wxString proposedBatchFileName;
xmlAccess::XmlBatchConfig localBatchCfg;
std::unique_ptr<wxMenu> contextMenu;
std::unique_ptr<zen::DirectoryName> logfileDir;
zen::EnumDescrList<xmlAccess::OnError> enumDescrMap;
};
//###################################################################################################################################
//------------------------------------------------------------------
/* class hierarchy:
template<>
FolderPairPanelBasic
/|\
|
template<>
FolderPairCallback BatchFolderPairGenerated
/|\ /|\
_________|______________ ________|
| | |
DirectoryPairBatchFirst DirectoryPairBatch
*/
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;
}
virtual void OnAltSyncCfgChange()
{
batchDlg.updateGui();
}
virtual void OnAltSyncCfgRemoveConfirm(wxCommandEvent& event)
{
FolderPairPanelBasic<GuiPanel>::OnAltSyncCfgRemoveConfirm(event);
batchDlg.updateGui();
}
virtual void OnLocalFilterCfgChange() {}
BatchDialog& batchDlg;
};
class DirectoryPairBatch:
public BatchFolderPairGenerated, //DirectoryPairBatch "owns" BatchFolderPairGenerated!
public FolderPairCallback<BatchFolderPairGenerated>
{
public:
DirectoryPairBatch(wxWindow* parent, BatchDialog& batchDialog) :
BatchFolderPairGenerated(parent),
FolderPairCallback<BatchFolderPairGenerated>(static_cast<BatchFolderPairGenerated&>(*this), batchDialog), //pass BatchFolderPairGenerated part...
dirNameLeft (*m_panelLeft, *m_dirPickerLeft, *m_directoryLeft),
dirNameRight(*m_panelRight, *m_dirPickerRight, *m_directoryRight) {}
void setValues(const wxString& leftDir, const wxString& rightDir, AltSyncCfgPtr syncCfg, const FilterConfig& filter)
{
setConfig(syncCfg, filter);
dirNameLeft.setName(leftDir);
dirNameRight.setName(rightDir);
}
wxString getLeftDir () const { return dirNameLeft .getName(); }
wxString getRightDir() const { return dirNameRight.getName(); }
private:
//support for drag and drop
DirectoryName dirNameLeft;
DirectoryName dirNameRight;
};
class DirectoryPairBatchFirst : public FolderPairCallback<BatchDlgGenerated>
{
public:
DirectoryPairBatchFirst(BatchDialog& batchDialog) :
FolderPairCallback<BatchDlgGenerated>(batchDialog, batchDialog),
//prepare drag & drop
dirNameLeft(*batchDialog.m_panelLeft,
*batchDialog.m_dirPickerLeft,
*batchDialog.m_directoryLeft),
dirNameRight(*batchDialog.m_panelRight,
*batchDialog.m_dirPickerRight,
*batchDialog.m_directoryRight) {}
void setValues(const wxString& leftDir, const wxString& rightDir, AltSyncCfgPtr syncCfg, const FilterConfig& filter)
{
setConfig(syncCfg, filter);
dirNameLeft.setName(leftDir);
dirNameRight.setName(rightDir);
}
wxString getLeftDir () const { return dirNameLeft .getName(); }
wxString getRightDir() const { return dirNameRight.getName(); }
private:
//support for drag and drop
DirectoryName dirNameLeft;
DirectoryName dirNameRight;
};
//###################################################################################################################################
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()
{
#ifdef FFS_WIN
new zen::MouseMoveWindow(*this); //allow moving main dialog by clicking (nearly) anywhere...; ownership passed to "this"
#endif
wxWindowUpdateLocker dummy(this); //avoid display distortion
enumDescrMap.
add(xmlAccess::ON_ERROR_POPUP , _("Show popup") , _("Show popup on errors or warnings")).
add(xmlAccess::ON_ERROR_IGNORE, _("Ignore errors") , _("Hide all error and warning messages")).
add(xmlAccess::ON_ERROR_EXIT , _("Exit instantly"), _("Abort synchronization immediately"));
m_bpButtonCmpConfig->SetBitmapLabel(GlobalResources::instance().getImage(wxT("cmpConfig")));
m_bpButtonSyncConfig->SetBitmapLabel(GlobalResources::instance().getImage(wxT("syncConfig")));
m_bpButtonHelp->SetBitmapLabel(GlobalResources::instance().getImage(wxT("help")));
//init handling of first folder pair
firstFolderPair.reset(new DirectoryPairBatchFirst(*this));
m_bpButtonFilter->Connect(wxEVT_RIGHT_DOWN, wxCommandEventHandler(BatchDialog::OnGlobalFilterOpenContext), NULL, this);
//prepare drag & drop for loading of *.ffs_batch files
setupFileDrop(*this);
Connect(FFS_DROP_FILE_EVENT, FFSFileDropEventHandler(BatchDialog::OnFilesDropped), NULL, this);
logfileDir.reset(new DirectoryName(*m_panelLogging, *m_dirPickerLogfileDir, *m_textCtrlLogfileDir, sbSizerLogfileDir));
//set icons for this dialog
m_bpButtonAddPair->SetBitmapLabel(GlobalResources::instance().getImage(wxT("addFolderPair")));
m_bitmap27->SetBitmap(GlobalResources::instance().getImage(wxT("batch")));
m_buttonSave->SetFocus();
}
//------------------- error handling --------------------------
void BatchDialog::setSelectionHandleError(const xmlAccess::OnError value)
{
if (m_checkBoxSilent->GetValue())
setEnumVal(enumDescrMap, *m_choiceHandleError, value);
else
{
EnumDescrList<xmlAccess::OnError> tmp(enumDescrMap);
tmp.descrList.pop_back(); //remove "Exit instantly" -> this option shall be available for silent mode only!
setEnumVal(tmp, *m_choiceHandleError, value);
}
}
void BatchDialog::OnChangeErrorHandling(wxCommandEvent& event)
{
updateTooltipEnumVal(enumDescrMap, *m_choiceHandleError);
}
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 (zen::showCompareCfgDialog(windowPos,
localBatchCfg.mainCfg.compareVar,
localBatchCfg.mainCfg.handleSymlinks) == ReturnSmallDlg::BUTTON_OKAY)
{
updateGui();
}
}
void BatchDialog::OnSyncSettings(wxCommandEvent& event)
{
if (showSyncConfigDlg(localBatchCfg.mainCfg.compareVar,
localBatchCfg.mainCfg.syncConfiguration,
localBatchCfg.mainCfg.handleDeletion,
localBatchCfg.mainCfg.customDeletionDirectory,
NULL) == ReturnSyncConfig::BUTTON_OKAY) //optional input parameter
{
updateGui();
}
}
void BatchDialog::OnConfigureFilter(wxCommandEvent& event)
{
if (showFilterDialog(true, //is main filter dialog
localBatchCfg.mainCfg.globalFilter) == ReturnSmallDlg::BUTTON_OKAY)
{
updateGui();
}
}
void BatchDialog::updateGui() //re-evaluate gui after config changes
{
xmlAccess::XmlBatchConfig cfg = getCurrentConfiguration();
showNotebookpage(m_panelLogging, _("Logging"), cfg.silent);
m_textCtrlLogfileDir ->Enable(cfg.logFileCountMax > 0);
m_dirPickerLogfileDir->Enable(cfg.logFileCountMax > 0);
//update compare variant name
m_staticTextCmpVariant->SetLabel(wxString(wxT("(")) + getVariantName(cfg.mainCfg.compareVar) + wxT(")"));
//update sync variant name
m_staticTextSyncVariant->SetLabel(wxString(wxT("(")) + cfg.mainCfg.getSyncVariantName() + wxT(")"));
//set filter icon
if (isNullFilter(cfg.mainCfg.globalFilter))
{
m_bpButtonFilter->SetBitmapLabel(GlobalResources::instance().getImage(wxT("filterOff")));
m_bpButtonFilter->SetToolTip(_("No filter selected"));
}
else
{
m_bpButtonFilter->SetBitmapLabel(GlobalResources::instance().getImage(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)
{
updateGui();
//reset error handling depending on "m_checkBoxSilent"
setSelectionHandleError(getEnumVal(enumDescrMap, *m_choiceHandleError));
}
void BatchDialog::OnChangeMaxLogCountTxt(wxCommandEvent& event)
{
updateGui();
}
void BatchDialog::OnFilesDropped(FFSFileDropEvent& event)
{
if (event.getFiles().empty())
return;
std::vector<wxString> fileList = event.getFiles();
switch (xmlAccess::getMergeType(fileList)) //throw ()
{
case xmlAccess::MERGE_BATCH:
case xmlAccess::MERGE_GUI:
case xmlAccess::MERGE_GUI_BATCH:
if (fileList.size() == 1)
{
loadBatchFile(fileList[0]);
return;
}
else
{
xmlAccess::XmlBatchConfig batchCfg;
try
{
convertConfig(fileList, batchCfg); //throw (xmlAccess::FfsXmlError)
}
catch (const xmlAccess::FfsXmlError& error)
{
if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING)
wxMessageBox(error.msg(), _("Warning"), wxOK | wxICON_WARNING);
else
{
wxMessageBox(error.msg(), _("Error"), wxOK | wxICON_ERROR);
return;
}
}
loadBatchCfg(batchCfg);
}
break;
case xmlAccess::MERGE_OTHER:
wxMessageBox(_("Invalid FreeFileSync config file!"), _("Error"), wxOK | wxICON_ERROR);
break;
}
}
void BatchDialog::OnHelp(wxCommandEvent& event)
{
#ifdef FFS_WIN
zen::displayHelpEntry(wxT("html\\advanced\\ScheduleBatch.html"));
#elif defined FFS_LINUX
zen::displayHelpEntry(wxT("html/advanced/ScheduleBatch.html"));
#endif
}
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(ReturnBatchConfig::BUTTON_CANCEL);
}
void BatchDialog::OnCancel(wxCommandEvent& event)
{
EndModal(ReturnBatchConfig::BUTTON_CANCEL);
}
void BatchDialog::OnSaveBatchJob(wxCommandEvent& event)
{
//get a filename
wxString defaultFileName = proposedBatchFileName.empty() ? wxT("SyncJob.ffs_batch") : proposedBatchFileName;
//attention: proposedBatchFileName may be an imported *.ffs_gui file! We don't want to overwrite it with a BATCH config!
if (defaultFileName.EndsWith(wxT(".ffs_gui")))
defaultFileName.Replace(wxT(".ffs_gui"), wxT(".ffs_batch"), false);
wxFileDialog filePicker(this, wxEmptyString, wxEmptyString, defaultFileName, wxString(_("FreeFileSync batch file")) + wxT(" (*.ffs_batch)|*.ffs_batch"), wxFD_SAVE); //creating this on freestore leads to memleak!
if (filePicker.ShowModal() == wxID_OK)
{
const wxString newFileName = filePicker.GetPath();
if (zen::fileExists(wxToZ(newFileName)))
{
if (showQuestionDlg(ReturnQuestionDlg::BUTTON_YES | ReturnQuestionDlg::BUTTON_CANCEL,
wxString(_("File already exists. Overwrite?")) + wxT(" \"") + newFileName + wxT("\"")) != ReturnQuestionDlg::BUTTON_YES)
{
OnSaveBatchJob(event); //retry
return;
}
}
//create batch file
if (saveBatchFile(newFileName))
EndModal(ReturnBatchConfig::BATCH_FILE_SAVED);
}
}
void BatchDialog::OnLoadBatchJob(wxCommandEvent& event)
{
wxFileDialog filePicker(this, wxEmptyString, wxEmptyString, wxEmptyString, wxString(_("FreeFileSync configuration")) + wxT(" (*.ffs_batch;*.ffs_gui)|*.ffs_batch;*.ffs_gui"), wxFD_OPEN); //creating this on freestore leads to memleak!
if (filePicker.ShowModal() == wxID_OK)
loadBatchFile(filePicker.GetPath());
}
inline
FolderPairEnh getEnhancedPair(const DirectoryPairBatch* panel)
{
return FolderPairEnh(wxToZ(panel->getLeftDir()),
wxToZ(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(wxToZ(firstFolderPair->getLeftDir()),
wxToZ(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), getEnhancedPair);
//load structure with batch settings "batchCfg"
batchCfg.silent = m_checkBoxSilent->GetValue();
batchCfg.logFileDirectory = logfileDir->getName();
batchCfg.logFileCountMax = m_spinCtrlLogCountMax->GetValue();
batchCfg.handleError = getEnumVal(enumDescrMap, *m_choiceHandleError);
return batchCfg;
}
bool BatchDialog::saveBatchFile(const wxString& filename)
{
const xmlAccess::XmlBatchConfig batchCfg = getCurrentConfiguration();
//write config to XML
try
{
xmlAccess::writeConfig(batchCfg, filename);
}
catch (const xmlAccess::FfsXmlError& error)
{
wxMessageBox(error.msg().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
{
//open a *.ffs_gui or *.ffs_batch file!
std::vector<wxString> filenames;
filenames.push_back(filename);
xmlAccess::convertConfig(filenames, batchCfg); //throw (xmlAccess::FfsXmlError)
//xmlAccess::readConfig(filename, batchCfg);
}
catch (const xmlAccess::FfsXmlError& error)
{
if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING)
wxMessageBox(error.msg(), _("Warning"), wxOK | wxICON_WARNING);
else
{
wxMessageBox(error.msg(), _("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);
//error handling is dependent from m_checkBoxSilent! /|\ \|/
setSelectionHandleError(batchCfg.handleError);
logfileDir->setName(batchCfg.logFileDirectory);
m_spinCtrlLogCountMax->SetValue(static_cast<int>(batchCfg.logFileCountMax)); //attention: this one emits a "change value" event!! => updateGui() called implicitly!
//set first folder pair
firstFolderPair->setValues(zToWx(batchCfg.mainCfg.firstPair.leftDirectory),
zToWx(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);
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(zToWx(cfgEmpty.leftDirectory),
zToWx(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<DirectoryPairBatch*>::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 = getEnhancedPair(additionalFolderPairs[0]);
//reset first pair
firstFolderPair->setValues(zToWx(cfgSecond.leftDirectory),
zToWx(cfgSecond.rightDirectory),
cfgSecond.altSyncConfig,
cfgSecond.localFilter);
removeAddFolderPair(0); //remove second folder pair (first of additional folder pairs)
}
}
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 &&
isNullFilter(firstFolderPair->getAltFilterConfig()))
{
m_bpButtonLocalFilter->Hide();
m_bpButtonAltSyncCfg->Hide();
}
else
{
m_bpButtonLocalFilter->Show();
m_bpButtonAltSyncCfg->Show();
}
//update controls
int pairHeight = sbSizerMainPair->GetSize().GetHeight(); //respect height of main pair
if (additionalFolderPairs.size() > 0)
pairHeight += std::min<double>(1.5, additionalFolderPairs.size()) * //have 0.5 * height indicate that more folders are there
additionalFolderPairs[0]->GetSize().GetHeight();
m_scrolledWindow6->SetMinSize(wxSize( -1, pairHeight));
m_scrolledWindow6->Fit(); //adjust scrolled window size
m_scrolledWindow6->Layout(); //adjust scrolled window size
//bSizerAddFolderPairs->FitInside(m_scrolledWindow6); //adjust scrolled window size
m_panelOverview->Layout(); //adjust stuff inside scrolled window
//m_panelOverview->InvalidateBestSize(); //needed for Fit() to work correctly!
if (m_scrolledWindow6->GetSize().GetHeight() < pairHeight)
Fit(); //adapt dialog size
}
void BatchDialog::addFolderPair(const std::vector<zen::FolderPairEnh>& newPairs, bool addFront)
{
wxWindowUpdateLocker dummy(m_panelOverview); //avoid display distortion
if (!newPairs.empty())
{
//add folder pairs
for (std::vector<zen::FolderPairEnh>::const_iterator i = newPairs.begin(); i != newPairs.end(); ++i)
{
DirectoryPairBatch* newPair = new DirectoryPairBatch(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);
}
//register events
newPair->m_bpButtonRemovePair->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(BatchDialog::OnRemoveFolderPair), NULL, this );
//set alternate configuration
newPair->setValues(zToWx(i->leftDirectory),
zToWx(i->rightDirectory),
i->altSyncConfig,
i->localFilter);
}
//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
DirectoryPairBatch* pairToDelete = additionalFolderPairs[pos];
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
//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);
updateGuiForFolderPair();
}
/*
#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;
}
*/
ReturnBatchConfig::ButtonPressed zen::showSyncBatchDlg(const wxString& filename)
{
BatchDialog batchDlg(NULL, filename);
return static_cast<ReturnBatchConfig::ButtonPressed>(batchDlg.ShowModal());
}
ReturnBatchConfig::ButtonPressed zen::showSyncBatchDlg(const xmlAccess::XmlBatchConfig& batchCfg)
{
BatchDialog batchDlg(NULL, batchCfg);
return static_cast<ReturnBatchConfig::ButtonPressed>(batchDlg.ShowModal());
}
|