summaryrefslogtreecommitdiff
path: root/ui/SmallDialogs.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:59:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:59:06 +0200
commit4046be06720932a57a0f49416b0144b2858824d0 (patch)
tree678c37cab05960f48923a23bb46d9e01be89d35a /ui/SmallDialogs.h
parent1.19 (diff)
downloadFreeFileSync-4046be06720932a57a0f49416b0144b2858824d0.tar.gz
FreeFileSync-4046be06720932a57a0f49416b0144b2858824d0.tar.bz2
FreeFileSync-4046be06720932a57a0f49416b0144b2858824d0.zip
2.0
Diffstat (limited to 'ui/SmallDialogs.h')
-rw-r--r--ui/SmallDialogs.h28
1 files changed, 26 insertions, 2 deletions
diff --git a/ui/SmallDialogs.h b/ui/SmallDialogs.h
index 2c3e89d2..e9156665 100644
--- a/ui/SmallDialogs.h
+++ b/ui/SmallDialogs.h
@@ -143,7 +143,6 @@ class QuestionDlg : public QuestionDlgGenerated
{
public:
QuestionDlg(wxWindow* parentWindow, int activeButtons, const wxString messageText, bool& dontShowAgain);
- ~QuestionDlg();
enum
{
@@ -166,7 +165,6 @@ class CustomizeColsDlg : public CustomizeColsDlgGenerated
{
public:
CustomizeColsDlg(wxWindow* window, xmlAccess::ColumnAttributes& attr, bool& showFileIcons);
- ~CustomizeColsDlg() {}
enum
{
@@ -187,6 +185,32 @@ private:
};
+class SyncPreviewDlg : public SyncPreviewDlgGenerated
+{
+public:
+ SyncPreviewDlg(wxWindow* parentWindow,
+ const wxString& variantName,
+ const wxString& toCreate,
+ const wxString& toUpdate,
+ const wxString& toDelete,
+ const wxString& data,
+ bool& dontShowAgain);
+
+ enum
+ {
+ BUTTON_START = 1,
+ BUTTON_CANCEL = 2
+ };
+
+private:
+ void OnClose(wxCloseEvent& event);
+ void OnCancel(wxCommandEvent& event);
+ void OnStartSync(wxCommandEvent& event);
+
+ bool& m_dontShowAgain;
+};
+
+
class GlobalSettingsDlg : public GlobalSettingsDlgGenerated
{
public:
bgstack15