diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:36 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:36 +0200 |
commit | ecb1524f8da7901338b263384fed3c612f117b4c (patch) | |
tree | e7e06423fe27ea5ab45f27fc4b39ae597ba72490 /ui/batch_config.h | |
parent | 5.10 (diff) | |
download | FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.gz FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.bz2 FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.zip |
5.11
Diffstat (limited to 'ui/batch_config.h')
-rw-r--r-- | ui/batch_config.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/ui/batch_config.h b/ui/batch_config.h index 98d0bf6b..5bff09e1 100644 --- a/ui/batch_config.h +++ b/ui/batch_config.h @@ -7,19 +7,16 @@ #ifndef BATCHCONFIG_H_INCLUDED #define BATCHCONFIG_H_INCLUDED +#include <wx/window.h> #include "../lib/process_xml.h" -#include "folder_history_box.h" - namespace zen { -void showSyncBatchDlg(wxWindow* parent, - const wxString& referenceFile, - const xmlAccess::XmlBatchConfig& batchCfg, - const std::shared_ptr<FolderHistory>& folderHistLeft, - const std::shared_ptr<FolderHistory>& folderHistRight, - std::vector<std::wstring>& execFinishedhistory, - size_t execFinishedhistoryMax); +//show and let user customize batch settings (without saving) +bool customizeBatchConfig(wxWindow* parent, //return "false" if aborted, "true" on "do save" + xmlAccess::XmlBatchConfig& batchCfg, //in/out + std::vector<std::wstring>& execFinishedhistory, + size_t execFinishedhistoryMax); } #endif // BATCHCONFIG_H_INCLUDED |