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
|
// **************************************************************************
// * 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 (zhnmju123 AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef MAINDIALOG_H
#define MAINDIALOG_H
#include <memory>
#include <map>
#include <set>
#include <wx/aui/aui.h>
#include <zen/int64.h>
#include <stack>
#include "gui_generated.h"
#include "../lib/process_xml.h"
#include "custom_grid.h"
#include "tree_view.h"
#include <wx+/file_drop.h>
class FolderHistory;
class DirectoryPair;
class CompareStatus;
class DirectoryPairFirst;
class MainDialog : public MainDialogGenerated
{
public:
MainDialog(const std::vector<wxString>& cfgFileNames, //default behavior, application start
const xmlAccess::XmlGlobalSettings& globalSettings); //take over ownership => save on exit
MainDialog(const std::vector<wxString>& referenceFiles,
const xmlAccess::XmlGuiConfig& guiCfg,
const xmlAccess::XmlGlobalSettings& globalSettings, //take over ownership => save on exit
bool startComparison);
~MainDialog();
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:
friend class CompareStatusHandler;
friend class SyncStatusHandler;
friend class ManualDeletionHandler;
friend class DirectoryPairFirst;
friend class DirectoryNameMainImpl;
template <class GuiPanel>
friend class FolderPairCallback;
friend class PanelMoveWindow;
MainDialog();
void init(const xmlAccess::XmlGuiConfig& guiCfg,
const xmlAccess::XmlGlobalSettings& globalSettings,
bool startComparison);
//configuration load/save
void setLastUsedConfig(const wxString& filename, const xmlAccess::XmlGuiConfig& guiConfig);
void setLastUsedConfig(const std::vector<wxString>& filenames, const xmlAccess::XmlGuiConfig& guiConfig);
xmlAccess::XmlGuiConfig getConfig() const;
void setConfig(const xmlAccess::XmlGuiConfig& newGuiCfg);
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)"
void loadConfiguration(const wxString& filename);
void loadConfiguration(const std::vector<wxString>& filenames);
bool trySaveConfig(const wxString* fileName); //return true if saved successfully
bool saveOldConfig(); //return false on user abort
static const wxString& lastRunConfigName();
xmlAccess::XmlGuiConfig lastConfigurationSaved; //support for: "Save changed configuration?" dialog
//used when saving configuration
std::vector<wxString> activeConfigFiles; //name of currently loaded config file (may be more than 1)
void initViewFilterButtons();
void updateFilterButtons();
void addFileToCfgHistory(const std::vector<wxString>& 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();
void updateGridViewData();
//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 setManualFilter(const std::vector<zen::FileSystemObject*>& selection, bool setIncluded);
void copySelectionToClipboard();
void deleteSelectedFiles(const std::vector<zen::FileSystemObject*>& selectionLeft,
const std::vector<zen::FileSystemObject*>& selectionRight);
void openExternalApplication(const wxString& commandline, const zen::FileSystemObject* fsObj, bool leftSide); //fsObj may be nullptr
//work to be done in idle time
void OnIdleEvent(wxEvent& event);
//delayed status information restore
void setStatusInformation(const wxString& msg); //set main status
void flashStatusInformation(const wxString& msg); //temporarily show different status
//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);
void OnCompSettingsContext(wxMouseEvent& event);
void OnSyncSettingsContext(wxMouseEvent& event);
void OnGlobalFilterContext(wxCommandEvent& event);
void applyCompareConfig(bool changePreviewStatus = true);
//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(wxFileDirPickerEvent& event);
void onCheckRows (zen::CheckRowsEvent& event);
void onSetSyncDirection(zen::SyncDirectionEvent& event);
void onGridDoubleClickL(zen::GridClickEvent& event);
void onGridDoubleClickR(zen::GridClickEvent& event);
void onGridDoubleClickRim(int 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 OnLeftOnlyFiles( wxCommandEvent& event);
void OnRightOnlyFiles( wxCommandEvent& event);
void OnLeftNewerFiles( wxCommandEvent& event);
void OnRightNewerFiles( wxCommandEvent& event);
void OnEqualFiles( wxCommandEvent& event);
void OnDifferentFiles( wxCommandEvent& event);
void OnConflictFiles( wxCommandEvent& event);
void OnSyncCreateLeft( wxCommandEvent& event);
void OnSyncCreateRight( wxCommandEvent& event);
void OnSyncDeleteLeft( wxCommandEvent& event);
void OnSyncDeleteRight( wxCommandEvent& event);
void OnSyncDirLeft( wxCommandEvent& event);
void OnSyncDirRight( wxCommandEvent& event);
void OnSyncDirNone( wxCommandEvent& event);
void OnConfigNew( wxCommandEvent& event);
void OnConfigSave( wxCommandEvent& event);
void OnConfigSaveAs( wxCommandEvent& event);
void OnConfigLoad( wxCommandEvent& event);
void OnLoadFromHistory( wxCommandEvent& event);
void OnCfgHistoryKeyEvent( wxKeyEvent& event);
void OnRegularUpdateCheck( wxIdleEvent& event);
void OnLayoutWindowAsync( wxIdleEvent& event);
void OnResizeFolderPairs( wxEvent& event);
void OnResizeConfigPanel( wxEvent& event);
void OnResizeViewPanel( wxEvent& event);
void OnResizeStatisticsPanel(wxEvent& event);
void OnHideFilteredButton( 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 updateGuiAfterFilterChange(int delay);
void excludeExtension(const Zstring& extension);
void excludeShortname(const zen::FileSystemObject& fsObj);
void excludeItems(const std::vector<zen::FileSystemObject*>& selection);
void updateStatistics();
void updateSyncEnabledStatus();
void OnAddFolderPair( wxCommandEvent& event);
void OnRemoveFolderPair( wxCommandEvent& event);
void OnRemoveTopFolderPair( wxCommandEvent& event);
void applyFilterConfig();
void applySyncConfig();
//menu events
void OnMenuGlobalSettings( wxCommandEvent& event);
void OnMenuExportFileList( wxCommandEvent& event);
void OnMenuBatchJob( wxCommandEvent& event);
void OnMenuCheckVersion( wxCommandEvent& event);
void OnMenuAbout( wxCommandEvent& event);
void OnShowHelp( wxCommandEvent& event);
void OnMenuQuit( wxCommandEvent& event);
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(bool refreshGrid = true);
//-------------------------------------
//functional 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
wxLongLong lastStatusChange;
std::vector<wxString> statusMsgStack;
//compare status panel (hidden on start, shown when comparing)
std::unique_ptr<CompareStatus> compareStatus; //always bound
bool cleanedUp;
bool processingGlobalKeyEvent; //indicator to notify recursion in OnGlobalKeyEvent()
bool showSyncAction_; //toggle to display configuration preview instead of comparison result
//use this methods when changing values!
void showSyncAction(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!
};
#endif // MAINDIALOG_H
|