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
|
// **************************************************************************
// * 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 *
// **************************************************************************
#include "main_dlg.h"
#include "resources.h"
#include <wx/msgdlg.h>
#include <wx/wupdlock.h>
#include <wx/filedlg.h>
#include <wx/utils.h>
#include <wx/filedlg.h>
#include <wx+/button.h>
#include <wx+/string_conv.h>
#include <wx+/mouse_move_dlg.h>
#include <zen/assert_static.h>
#include <zen/file_handling.h>
#include <zen/build_info.h>
#include "watcher.h"
#include "xml_proc.h"
#include "tray_menu.h"
#include "xml_ffs.h"
#include "../lib/help_provider.h"
#include "../lib/process_xml.h"
#include "../lib/ffs_paths.h"
using namespace zen;
class DirectoryPanel : public FolderGenerated
{
public:
DirectoryPanel(wxWindow* parent) :
FolderGenerated(parent),
dirName(*this, *m_buttonSelectDir, *m_txtCtrlDirectory) {}
void setName(const wxString& dirname) { dirName.setName(dirname); }
wxString getName() const { return dirName.getName(); }
private:
zen::DirectoryName<wxTextCtrl> dirName;
};
MainDialog::MainDialog(wxDialog* dlg, const wxString& cfgFileName)
: MainDlgGenerated(dlg)
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
m_bpButtonRemoveTopFolder->Hide();
m_panelMainFolder->Layout();
m_bpButtonAddFolder ->SetBitmapLabel(GlobalResources::getImage(L"item_add"));
m_bpButtonRemoveTopFolder->SetBitmapLabel(GlobalResources::getImage(L"item_delete"));
m_buttonStart ->setBitmapFront(GlobalResources::getImage(L"startRts"), 5);
//register key event
Connect(wxEVT_CHAR_HOOK, wxKeyEventHandler(MainDialog::OnKeyPressed), nullptr, this);
//prepare drag & drop
dirNameFirst.reset(new DirectoryName<wxTextCtrl>(*m_panelMainFolder, *m_buttonSelectDirMain, *m_txtCtrlDirectoryMain, m_staticTextFinalPath));
#ifdef FFS_WIN
new MouseMoveWindow(*this); //ownership passed to "this"
#endif
//--------------------------- load config values ------------------------------------
xmlAccess::XmlRealConfig newConfig;
const wxString currentConfigFile = cfgFileName.empty() ? lastConfigFileName() : cfgFileName;
bool loadCfgSuccess = false;
if (!cfgFileName.empty() || wxFileExists(lastConfigFileName()))
try
{
rts::readRealOrBatchConfig(toZ(currentConfigFile), newConfig); //throw FfsXmlError
loadCfgSuccess = true;
}
catch (const xmlAccess::FfsXmlError& error)
{
if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING)
wxMessageBox(error.toString(), _("Warning"), wxOK | wxICON_WARNING, this);
else
wxMessageBox(error.toString(), _("Error"), wxOK | wxICON_ERROR, this);
}
const bool startWatchingImmediately = loadCfgSuccess && !cfgFileName.empty();
setConfiguration(newConfig);
setLastUsedConfig(currentConfigFile);
//-----------------------------------------------------------------------------------------
//Layout();
//Fit();
m_scrolledWinFolders->Fit(); //adjust scrolled window size
m_scrolledWinFolders->Layout(); //fix small layout problem
m_panelMain->Layout(); //adjust stuff inside scrolled window
Fit(); //adapt dialog size
Center();
if (startWatchingImmediately) //start watch mode directly
{
wxCommandEvent dummy2(wxEVT_COMMAND_BUTTON_CLICKED);
this->OnStart(dummy2);
}
else
m_buttonStart->SetFocus(); //don't "steal" focus if program is running from sys-tray"
//drag and drop .ffs_real and .ffs_batch on main dialog
setupFileDrop(*m_panelMain);
m_panelMain->Connect(EVENT_DROP_FILE, FileDropEventHandler(MainDialog::onFilesDropped), nullptr, this);
}
MainDialog::~MainDialog()
{
//save current configuration
const xmlAccess::XmlRealConfig currentCfg = getConfiguration();
try //write config to XML
{
writeRealConfig(currentCfg, toZ(lastConfigFileName())); //throw FfsXmlError
}
catch (const xmlAccess::FfsXmlError& error)
{
wxMessageBox(error.toString().c_str(), _("Error"), wxOK | wxICON_ERROR, this);
}
}
const wxString& MainDialog::lastConfigFileName()
{
static wxString instance = toWx(zen::getConfigDir()) + L"LastRun.ffs_real";
return instance;
}
void MainDialog::OnShowHelp(wxCommandEvent& event)
{
zen::displayHelpEntry(L"html/RealtimeSync.html");
}
void MainDialog::OnMenuAbout(wxCommandEvent& event)
{
//build information
wxString build = __TDATE__;
#if wxUSE_UNICODE
build += L" - Unicode";
#else
build += L" - ANSI";
#endif //wxUSE_UNICODE
//compile time info about 32/64-bit build
if (zen::is64BitBuild)
build += L" x64";
else
build += L" x86";
assert_static(zen::is32BitBuild || zen::is64BitBuild);
wxMessageBox(L"RealtimeSync" L"\n\n" + replaceCpy(_("Build: %x"), L"%x", build), _("About"), wxOK, this);
}
void MainDialog::OnKeyPressed(wxKeyEvent& event)
{
const int keyCode = event.GetKeyCode();
if (keyCode == WXK_ESCAPE)
Close();
event.Skip();
}
void MainDialog::OnStart(wxCommandEvent& event)
{
xmlAccess::XmlRealConfig currentCfg = getConfiguration();
Hide();
switch (rts::startDirectoryMonitor(currentCfg, xmlAccess::extractJobName(utfCvrtTo<Zstring>(currentConfigFileName))))
{
case rts::EXIT_APP:
Close();
return;
case rts::SHOW_GUI:
break;
}
Show(); //don't show for EXIT_APP
}
void MainDialog::OnConfigSave(wxCommandEvent& event)
{
wxString defaultFileName = currentConfigFileName.empty() ? L"Realtime.ffs_real" : currentConfigFileName;
//attention: currentConfigFileName may be an imported *.ffs_batch file! We don't want to overwrite it with a GUI config!
if (endsWith(defaultFileName, L".ffs_batch"))
replace(defaultFileName, L".ffs_batch", L".ffs_real", false);
wxFileDialog filePicker(this, wxEmptyString, wxEmptyString, defaultFileName,
wxString(L"RealtimeSync (*.ffs_real)|*.ffs_real") + L"|" +_("All files") + L" (*.*)|*",
wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
if (filePicker.ShowModal() != wxID_OK)
return;
const wxString newFileName = filePicker.GetPath();
//write config to XML
const xmlAccess::XmlRealConfig currentCfg = getConfiguration();
try
{
writeRealConfig(currentCfg, toZ(newFileName)); //throw FfsXmlError
setLastUsedConfig(newFileName);
}
catch (const xmlAccess::FfsXmlError& e)
{
wxMessageBox(e.toString().c_str(), _("Error"), wxOK | wxICON_ERROR, this);
}
}
void MainDialog::loadConfig(const wxString& filename)
{
xmlAccess::XmlRealConfig newConfig;
try
{
rts::readRealOrBatchConfig(toZ(filename), newConfig);
}
catch (const xmlAccess::FfsXmlError& error)
{
if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING)
wxMessageBox(error.toString(), _("Warning"), wxOK | wxICON_WARNING);
else
{
wxMessageBox(error.toString(), _("Error"), wxOK | wxICON_ERROR);
return;
}
}
setConfiguration(newConfig);
setLastUsedConfig(filename);
}
void MainDialog::setLastUsedConfig(const wxString& filename)
{
//set title
if (filename == lastConfigFileName())
{
SetTitle(_("RealtimeSync - Automated Synchronization"));
currentConfigFileName.clear();
}
else
{
SetTitle(filename);
currentConfigFileName = filename;
}
}
void MainDialog::OnConfigLoad(wxCommandEvent& event)
{
wxFileDialog filePicker(this, wxEmptyString, wxEmptyString, wxEmptyString,
wxString(L"RealtimeSync (*.ffs_real;*.ffs_batch)|*.ffs_real;*.ffs_batch") + L"|" +_("All files") + L" (*.*)|*",
wxFD_OPEN);
if (filePicker.ShowModal() == wxID_OK)
loadConfig(filePicker.GetPath());
}
void MainDialog::onFilesDropped(FileDropEvent& event)
{
const auto& files = event.getFiles();
if (!files.empty())
loadConfig(files[0]);
}
void MainDialog::setConfiguration(const xmlAccess::XmlRealConfig& cfg)
{
//clear existing folders
dirNameFirst->setName(wxString());
clearAddFolders();
if (!cfg.directories.empty())
{
//fill top folder
dirNameFirst->setName(*cfg.directories.begin());
//fill additional folders
addFolder(std::vector<wxString>(cfg.directories.begin() + 1, cfg.directories.end()));
}
//fill commandline
m_textCtrlCommand->SetValue(cfg.commandline);
//set delay
m_spinCtrlDelay->SetValue(static_cast<int>(cfg.delay));
}
xmlAccess::XmlRealConfig MainDialog::getConfiguration()
{
xmlAccess::XmlRealConfig output;
output.directories.push_back(dirNameFirst->getName());
for (std::vector<DirectoryPanel*>::const_iterator i = dirNamesExtra.begin(); i != dirNamesExtra.end(); ++i)
output.directories.push_back((*i)->getName());
output.commandline = m_textCtrlCommand->GetValue();
output.delay = m_spinCtrlDelay->GetValue();
return output;
}
void MainDialog::OnAddFolder(wxCommandEvent& event)
{
const wxString topFolder = dirNameFirst->getName();
//clear existing top folder first
dirNameFirst->setName(wxString());
std::vector<wxString> newFolders;
newFolders.push_back(topFolder);
addFolder(newFolders, true); //add pair in front of additonal pairs
}
void MainDialog::OnRemoveFolder(wxCommandEvent& event)
{
//find folder pair originating the event
const wxObject* const eventObj = event.GetEventObject();
for (std::vector<DirectoryPanel*>::const_iterator i = dirNamesExtra.begin(); i != dirNamesExtra.end(); ++i)
if (eventObj == static_cast<wxObject*>((*i)->m_bpButtonRemoveFolder))
{
removeAddFolder(i - dirNamesExtra.begin());
return;
}
}
void MainDialog::OnRemoveTopFolder(wxCommandEvent& event)
{
if (dirNamesExtra.size() > 0)
{
const wxString topDir = (*dirNamesExtra.begin())->getName();
dirNameFirst->setName(topDir);
removeAddFolder(0); //remove first of additional folders
}
}
#ifdef FFS_WIN
static const size_t MAX_ADD_FOLDERS = 8;
#elif defined FFS_LINUX
static const size_t MAX_ADD_FOLDERS = 6;
#endif
void MainDialog::addFolder(const std::vector<wxString>& newFolders, bool addFront)
{
if (newFolders.size() == 0)
return;
wxWindowUpdateLocker dummy(this); //avoid display distortion
int folderHeight = 0;
for (std::vector<wxString>::const_iterator i = newFolders.begin(); i != newFolders.end(); ++i)
{
//add new folder pair
DirectoryPanel* newFolder = new DirectoryPanel(m_scrolledWinFolders);
newFolder->m_bpButtonRemoveFolder->SetBitmapLabel(GlobalResources::getImage(L"item_delete"));
//get size of scrolled window
folderHeight = newFolder->GetSize().GetHeight();
if (addFront)
{
bSizerFolders->Insert(0, newFolder, 0, wxEXPAND, 5);
dirNamesExtra.insert(dirNamesExtra.begin(), newFolder);
}
else
{
bSizerFolders->Add(newFolder, 0, wxEXPAND, 5);
dirNamesExtra.push_back(newFolder);
}
//register events
newFolder->m_bpButtonRemoveFolder->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(MainDialog::OnRemoveFolder), nullptr, this );
//insert directory name
newFolder->setName(*i);
}
//set size of scrolled window
const size_t additionalRows = std::min(dirNamesExtra.size(), MAX_ADD_FOLDERS); //up to MAX_ADD_FOLDERS additional folders shall be shown
m_scrolledWinFolders->SetMinSize(wxSize( -1, folderHeight * static_cast<int>(additionalRows)));
//adapt delete top folder pair button
m_bpButtonRemoveTopFolder->Show();
m_panelMainFolder->Layout();
//update controls
m_scrolledWinFolders->Fit(); //adjust scrolled window size
m_scrolledWinFolders->Layout(); //fix small layout problem
m_panelMain->Layout(); //adjust stuff inside scrolled window
Fit(); //adapt dialog size
}
void MainDialog::removeAddFolder(int pos)
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
if (0 <= pos && pos < static_cast<int>(dirNamesExtra.size()))
{
//remove folder pairs from window
DirectoryPanel* dirToDelete = dirNamesExtra[pos];
const int folderHeight = dirToDelete->GetSize().GetHeight();
bSizerFolders->Detach(dirToDelete); //Remove() does not work on Window*, so do it manually
dirToDelete->Destroy(); //
dirNamesExtra.erase(dirNamesExtra.begin() + pos); //remove last element in vector
//set size of scrolled window
const size_t additionalRows = std::min(dirNamesExtra.size(), MAX_ADD_FOLDERS); //up to MAX_ADD_FOLDERS additional folders shall be shown
m_scrolledWinFolders->SetMinSize(wxSize( -1, folderHeight * static_cast<int>(additionalRows)));
//adapt delete top folder pair button
if (dirNamesExtra.size() == 0)
{
m_bpButtonRemoveTopFolder->Hide();
m_panelMainFolder->Layout();
}
//update controls
m_scrolledWinFolders->Fit(); //adjust scrolled window size
m_panelMain->Layout(); //adjust stuff inside scrolled window
Fit(); //adapt dialog size
}
}
void MainDialog::clearAddFolders()
{
wxWindowUpdateLocker dummy(this); //avoid display distortion
dirNamesExtra.clear();
bSizerFolders->Clear(true);
m_bpButtonRemoveTopFolder->Hide();
m_panelMainFolder->Layout();
m_scrolledWinFolders->SetMinSize(wxSize(-1, 0));
Fit(); //adapt dialog size
}
|