summaryrefslogtreecommitdiff
path: root/ui/SyncDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
commit222024f07e505617aec93dc4837be2be27d18856 (patch)
treec40f400baa6cf1d047205359f80c2b8f74a2b507 /ui/SyncDialog.h
parent1.12 (diff)
downloadFreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.gz
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.bz2
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.zip
1.13
Diffstat (limited to 'ui/SyncDialog.h')
-rw-r--r--ui/SyncDialog.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/ui/SyncDialog.h b/ui/SyncDialog.h
index de00539e..036e9b6f 100644
--- a/ui/SyncDialog.h
+++ b/ui/SyncDialog.h
@@ -4,6 +4,9 @@
#include "../FreeFileSync.h"
#include "guiGenerated.h"
+using namespace FreeFileSync;
+
+
class SyncDialog: public SyncDlgGenerated
{
public:
@@ -14,7 +17,10 @@ public:
~SyncDialog();
- static const int StartSynchronizationProcess = 15;
+ enum
+ {
+ BUTTON_START = 15
+ };
static void updateConfigIcons(wxBitmapButton* button1,
wxBitmapButton* button2,
@@ -29,6 +35,7 @@ private:
void calculatePreview();
void OnSyncLeftToRight( wxCommandEvent& event);
+ void OnSyncUpdate( wxCommandEvent& event);
void OnSyncBothSides( wxCommandEvent& event);
void OnExLeftSideOnly( wxCommandEvent& event);
bgstack15