summaryrefslogtreecommitdiff
path: root/ui/batch_config.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
commitecb1524f8da7901338b263384fed3c612f117b4c (patch)
treee7e06423fe27ea5ab45f27fc4b39ae597ba72490 /ui/batch_config.h
parent5.10 (diff)
downloadFreeFileSync-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.h15
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
bgstack15