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
|
// **************************************************************************
// * 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) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef MAINDIALOG_H
#define MAINDIALOG_H
#include <map>
#include <set>
#include <stack>
#include <memory>
#include <zen/int64.h>
#include <zen/async_task.h>
#include <wx+/file_drop.h>
#include <wx/aui/aui.h>
#include "gui_generated.h"
#include "custom_grid.h"
#include "tree_view.h"
#include "folder_history_box.h"
#include "../lib/process_xml.h"
//class FolderHistory;
class DirectoryPair;
class CompareProgressDialog;
class DirectoryPairFirst;
class MainDialog : public MainDialogGenerated
{
public:
//default behavior, application start
static void create(const std::vector<Zstring>& cfgFileNames); //cfgFileNames empty: restore last config; non-empty load/merge given set of config files
//load dynamically assembled config
static void create(const xmlAccess::XmlGuiConfig& guiCfg, bool startComparison);
//when switching language or switching from batch run to GUI on warnings
static void create(const xmlAccess::XmlGuiConfig& guiCfg,
const std::vector<Zstring>& referenceFiles,
const xmlAccess::XmlGlobalSettings& globalSettings, //take over ownership => save on exit
bool startComparison);
void disableAllElements(bool enableAbort); //dis-/enables all elements (except abort button) that might receive user input
void enableAllElements(); //during long-running processes: comparison, deletion
void onQueryEndSession(); //last chance to do something useful before killing the application!
private:
static void create_impl(const xmlAccess::XmlGuiConfig& guiCfg,
const std::vector<Zstring>& referenceFiles,
const xmlAccess::XmlGlobalSettings& globalSettings,
bool startComparison);
MainDialog(const xmlAccess::XmlGuiConfig& guiCfg,
const std::vector<Zstring>& referenceFiles,
const xmlAccess::XmlGlobalSettings& globalSettings, //take over ownership => save on exit
bool startComparison);
~MainDialog();
friend class CompareStatusHandler;
friend class SyncStatusHandler;
friend class ManualDeletionHandler;
friend class DirectoryPairFirst;
friend class DirectoryPair;
friend class DirectoryNameMainImpl;
template <class GuiPanel>
friend class FolderPairCallback;
friend class PanelMoveWindow;
//configuration load/save
void setLastUsedConfig(const Zstring& filename, const xmlAccess::XmlGuiConfig& guiConfig);
void setLastUsedConfig(const std::vector<Zstring>& filenames, const xmlAccess::XmlGuiConfig& guiConfig);
xmlAccess::XmlGuiConfig getConfig() const;
void setConfig(const xmlAccess::XmlGuiConfig& newGuiCfg, const std::vector<Zstring>& referenceFiles);
void setGlobalCfgOnInit(const xmlAccess::XmlGlobalSettings& globalSettings); //messes with Maximize(), window sizes, so call just once!
xmlAccess::XmlGlobalSettings getGlobalCfgBeforeExit(); //destructive "get" thanks to "Iconize(false), Maximize(false)"
bool loadConfiguration(const std::vector<Zstring>& filenames); //return true if loaded successfully
bool trySaveConfig (const Zstring* fileNameGui); //return true if saved successfully
bool trySaveBatchConfig(const Zstring* fileNameBatch); //
bool saveOldConfig(); //return false on user abort
static const Zstring& lastRunConfigName();
xmlAccess::XmlGuiConfig lastConfigurationSaved; //support for: "Save changed configuration?" dialog
//used when saving configuration
std::vector<Zstring> activeConfigFiles; //name of currently loaded config file (may be more than 1)
void updateGlobalFilterButton();
void initViewFilterButtons();
void setViewFilterDefault();
void addFileToCfgHistory(const std::vector<Zstring>& filenames); //= update/insert + apply selection
void removeObsoleteCfgHistoryItems(const std::vector<Zstring>& filenames);
void removeCfgHistoryItems(const std::vector<Zstring>& filenames);
void addFolderPair(const std::vector<zen::FolderPairEnh>& newPairs, bool addFront = false);
void removeAddFolderPair(size_t pos);
void clearAddFolderPairs();
void updateGuiForFolderPair(); //helper method: add usability by showing/hiding buttons related to folder pairs
//main method for putting gridDataView on UI: updates data respecting current view settings
void updateGui(); //kitchen-sink update
void updateGuiDelayedIf(bool condition); // 400 ms delay
void updateGridViewData(); //
void updateStatistics(); // more fine-grained updaters
void updateUnsavedCfgStatus(); //
//context menu functions
std::vector<zen::FileSystemObject*> getGridSelection(bool fromLeft = true, bool fromRight = true) const;
std::vector<zen::FileSystemObject*> getTreeSelection() const;
void setSyncDirManually(const std::vector<zen::FileSystemObject*>& selection, zen::SyncDirection direction);
void setFilterManually(const std::vector<zen::FileSystemObject*>& selection, bool setIncluded);
void copySelectionToClipboard(const std::vector<const zen::Grid*>& gridRefs);
void deleteSelectedFiles(const std::vector<zen::FileSystemObject*>& selectionLeft,
const std::vector<zen::FileSystemObject*>& selectionRight);
void openExternalApplication(const wxString& commandline, const std::vector<zen::FileSystemObject*>& selection, bool leftSide); //selection may be empty
//don't use wxWidgets idle handling => repeated idle requests/consumption hogs 100% cpu!
void onProcessAsyncTasks(wxEvent& event);
template <class Fun, class Fun2>
void processAsync(Fun doAsync, Fun2 evalOnGui) { asyncTasks.add(doAsync, evalOnGui); timerForAsyncTasks.Start(50); /*timer interval in [ms] */ }
template <class Fun, class Fun2>
void processAsync2(Fun doAsync, Fun2 evalOnGui) { asyncTasks.add2(doAsync, evalOnGui); timerForAsyncTasks.Start(50); /*timer interval in [ms] */ }
//status bar supports one of the following two states at a time:
void setStatusBarFullText(const wxString& msg);
void setStatusBarFileStatistics(size_t filesOnLeftView, size_t foldersOnLeftView, size_t filesOnRightView, size_t foldersOnRightView, zen::UInt64 filesizeLeftView, zen::UInt64 filesizeRightView);
void flashStatusInformation(const wxString& msg); //temporarily show different status (only valid for setStatusBarFullText)
void restoreStatusInformation(); //called automatically after a few seconds
//events
void onGridButtonEventL(wxKeyEvent& event);
void onGridButtonEventC(wxKeyEvent& event);
void onGridButtonEventR(wxKeyEvent& event);
void onGridButtonEvent (wxKeyEvent& event, zen::Grid& grid, bool leftSide);
void onTreeButtonEvent (wxKeyEvent& event);
void OnContextSetLayout(wxMouseEvent& event);
void OnGlobalKeyEvent (wxKeyEvent& event);
virtual void OnCompSettingsContext(wxMouseEvent& event);
virtual void OnSyncSettingsContext(wxMouseEvent& event);
virtual void OnGlobalFilterContext(wxMouseEvent& event);
virtual void OnViewButtonRightClick(wxMouseEvent& event);
void applyCompareConfig(bool switchMiddleGrid = false);
//context menu handler methods
void onMainGridContextL(zen::GridClickEvent& event);
void onMainGridContextC(zen::GridClickEvent& event);
void onMainGridContextR(zen::GridClickEvent& event);
void onMainGridContextRim(bool leftSide);
void onNaviGridContext(zen::GridClickEvent& event);
void onNaviSelection(zen::GridRangeSelectEvent& event);
void onNaviPanelFilesDropped(zen::FileDropEvent& event);
void onDirSelected(wxCommandEvent& event);
void onDirManualCorrection(wxCommandEvent& event);
void onCheckRows (zen::CheckRowsEvent& event);
void onSetSyncDirection(zen::SyncDirectionEvent& event);
void onGridDoubleClickL(zen::GridClickEvent& event);
void onGridDoubleClickR(zen::GridClickEvent& event);
void onGridDoubleClickRim(size_t row, bool leftSide);
void onGridLabelLeftClickC(zen::GridClickEvent& event);
void onGridLabelLeftClickL(zen::GridClickEvent& event);
void onGridLabelLeftClickR(zen::GridClickEvent& event);
void onGridLabelLeftClick(bool onLeft, zen::ColumnTypeRim type);
void onGridLabelContextL(zen::GridClickEvent& event);
void onGridLabelContextC(zen::GridClickEvent& event);
void onGridLabelContextR(zen::GridClickEvent& event);
void onGridLabelContext(zen::Grid& grid, zen::ColumnTypeRim type, const std::vector<zen::ColumnAttributeRim>& defaultColumnAttributes);
void OnToggleViewType (wxCommandEvent& event);
void OnToggleViewButton(wxCommandEvent& event);
void OnConfigNew (wxCommandEvent& event);
void OnConfigSave (wxCommandEvent& event);
void OnConfigSaveAs (wxCommandEvent& event);
void OnSaveAsBatchJob (wxCommandEvent& event);
void OnConfigLoad (wxCommandEvent& event);
void OnLoadFromHistory(wxCommandEvent& event);
void OnLoadFromHistoryDoubleClick(wxCommandEvent& event);
void deleteSelectedCfgHistoryItems();
void OnCfgHistoryKeyEvent(wxKeyEvent& event);
void OnCfgHistoryRightClick(wxMouseEvent& event);
void OnRegularUpdateCheck(wxIdleEvent& event);
void OnLayoutWindowAsync (wxIdleEvent& event);
void OnResizeLeftFolderWidth(wxEvent& event);
void OnResizeConfigPanel (wxEvent& event);
void OnResizeViewPanel (wxEvent& event);
void OnResizeStatisticsPanel(wxEvent& event);
void OnShowExcluded (wxCommandEvent& event);
void OnConfigureFilter (wxCommandEvent& event);
void OnSwapSides (wxCommandEvent& event);
void OnCompare (wxCommandEvent& event);
void OnSyncSettings (wxCommandEvent& event);
void OnCmpSettings (wxCommandEvent& event);
void OnStartSync (wxCommandEvent& event);
void OnClose (wxCloseEvent& event);
void excludeExtension(const Zstring& extension);
void excludeShortname(const zen::FileSystemObject& fsObj);
void excludeItems(const std::vector<zen::FileSystemObject*>& selection);
void OnAddFolderPair (wxCommandEvent& event);
void OnRemoveFolderPair (wxCommandEvent& event);
void OnRemoveTopFolderPair(wxCommandEvent& event);
void applyFilterConfig();
void applySyncConfig();
//menu events
virtual void OnMenuGlobalSettings(wxCommandEvent& event);
virtual void OnMenuExportFileList(wxCommandEvent& event);
virtual void OnMenuCheckVersion (wxCommandEvent& event);
virtual void OnMenuCheckVersionAutomatically(wxCommandEvent& event);
virtual void OnMenuAbout (wxCommandEvent& event);
virtual void OnShowHelp (wxCommandEvent& event);
virtual void OnMenuQuit (wxCommandEvent& event) { Close(); }
void OnMenuLanguageSwitch(wxCommandEvent& event);
void switchProgramLanguage(int langID);
typedef int MenuItemID;
typedef int LanguageID;
std::map<MenuItemID, LanguageID> languageMenuItemMap; //needed to attach menu item events
//***********************************************
//application variables are stored here:
//global settings shared by GUI and batch mode
xmlAccess::XmlGlobalSettings globalCfg;
//UI view of FolderComparison structure (partially owns folderCmp)
std::shared_ptr<zen::GridView> gridDataView; //always bound!
std::shared_ptr<zen::TreeView> treeDataView; //
//the prime data structure of this tool *bling*:
zen::FolderComparison folderCmp; //optional!: sync button not available if empty
void clearGrid();
//-------------------------------------
//program configuration
xmlAccess::XmlGuiConfig currentCfg;
//folder pairs:
std::unique_ptr<DirectoryPairFirst> firstFolderPair; //always bound!!!
std::vector<DirectoryPair*> additionalFolderPairs; //additional pairs to the first pair
//-------------------------------------
//***********************************************
//status information
std::list<wxString> oldStatusMsgs; //the first one is the original/non-flash status message
//compare status panel (hidden on start, shown when comparing)
std::unique_ptr<CompareProgressDialog> compareStatus; //always bound
bool cleanedUp;
bool processingGlobalKeyEvent; //indicator to notify recursion in OnGlobalKeyEvent()
//toggle to display configuration preview instead of comparison result:
//for read access use: m_bpButtonViewTypeSyncAction->isActive()
//when changing value use:
void setViewTypeSyncAction(bool value);
wxAuiManager auiMgr; //implement dockable GUI design
wxString defaultPerspective;
zen::Int64 manualTimeSpanFrom, manualTimeSpanTo; //buffer manual time span selection at session level
std::shared_ptr<FolderHistory> folderHistoryLeft; //shared by all wxComboBox dropdown controls
std::shared_ptr<FolderHistory> folderHistoryRight; //always bound!
//schedule and run long-running tasks asynchronously, but process results on GUI queue
zen::AsyncTasks asyncTasks;
wxTimer timerForAsyncTasks; //don't use wxWidgets idle handling => repeated idle requests/consumption hogs 100% cpu!
std::unique_ptr<zen::FilterConfig> filterCfgOnClipboard; //copy/paste of filter config
};
#endif // MAINDIALOG_H
|