summaryrefslogtreecommitdiff
path: root/RealtimeSync/main_dlg.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
commit75c07011b7c4d06acd7b45dabdcd60ab9d80f385 (patch)
tree8853c3978dd152ef377e652239448b1352320206 /RealtimeSync/main_dlg.h
parent5.22 (diff)
downloadFreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.gz
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.bz2
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.zip
5.23
Diffstat (limited to 'RealtimeSync/main_dlg.h')
-rw-r--r--RealtimeSync/main_dlg.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/RealtimeSync/main_dlg.h b/RealtimeSync/main_dlg.h
deleted file mode 100644
index 9e5537f0..00000000
--- a/RealtimeSync/main_dlg.h
+++ /dev/null
@@ -1,80 +0,0 @@
-// **************************************************************************
-// * 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 REALTIMESYNCMAIN_H
-#define REALTIMESYNCMAIN_H
-
-#include "gui_generated.h"
-#include <vector>
-#include <memory>
-#include <zen/zstring.h>
-#include <zen/async_task.h>
-#include <wx+/file_drop.h>
-#include <wx/timer.h>
-#include "../ui/dir_name.h"
-
-namespace xmlAccess
-{
-struct XmlRealConfig;
-}
-class DirectoryPanel;
-
-
-class MainDialog: public MainDlgGenerated
-{
-public:
- static void create(const Zstring& cfgFile);
-
-private:
- MainDialog(wxDialog* dlg, const Zstring& cfgFileName);
- ~MainDialog();
-
- void loadConfig(const Zstring& filename);
-
- virtual void OnClose (wxCloseEvent& event) { Destroy(); }
- virtual void OnShowHelp (wxCommandEvent& event);
- virtual void OnMenuAbout (wxCommandEvent& event);
- virtual void OnAddFolder (wxCommandEvent& event);
- virtual void OnRemoveFolder (wxCommandEvent& event);
- virtual void OnRemoveTopFolder(wxCommandEvent& event);
- virtual void OnKeyPressed (wxKeyEvent& event);
- virtual void OnStart (wxCommandEvent& event);
- virtual void OnConfigSave (wxCommandEvent& event);
- virtual void OnConfigLoad (wxCommandEvent& event);
- virtual void OnMenuQuit (wxCommandEvent& event) { Close(); }
- void onFilesDropped(zen::FileDropEvent& event);
-
- void setConfiguration(const xmlAccess::XmlRealConfig& cfg);
- xmlAccess::XmlRealConfig getConfiguration();
- void setLastUsedConfig(const Zstring& filename);
-
- void layoutAsync(); //call Layout() asynchronously
-
- //void addFolder(const Zstring& dirname, bool addFront = false);
- void addFolder(const std::vector<Zstring>& newFolders, bool addFront = false);
- void removeAddFolder(size_t pos);
- void clearAddFolders();
-
- static const Zstring& lastConfigFileName();
-
- std::unique_ptr<zen::DirectoryName<wxTextCtrl>> dirNameFirst;
- std::vector<DirectoryPanel*> dirNamesExtra; //additional pairs to the standard pair
-
- Zstring currentConfigFileName;
-
- 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] */ }
-
- //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!
-};
-
-#endif // REALTIMESYNCMAIN_H
bgstack15