summaryrefslogtreecommitdiff
path: root/ui/batch_config.h
diff options
context:
space:
mode:
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