summaryrefslogtreecommitdiff
path: root/ui/batchConfig.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
commitfbe76102e941b9f1edaf236788e42678f05fdf9a (patch)
treef5f538316019fa89be8dc478103490c3a826f3ac /ui/batchConfig.h
parent3.8 (diff)
downloadFreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip
3.9
Diffstat (limited to 'ui/batchConfig.h')
-rw-r--r--ui/batchConfig.h96
1 files changed, 0 insertions, 96 deletions
diff --git a/ui/batchConfig.h b/ui/batchConfig.h
deleted file mode 100644
index 5fcf54a3..00000000
--- a/ui/batchConfig.h
+++ /dev/null
@@ -1,96 +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) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#ifndef BATCHCONFIG_H_INCLUDED
-#define BATCHCONFIG_H_INCLUDED
-
-#include "guiGenerated.h"
-#include "../library/processXml.h"
-
-
-namespace FreeFileSync
-{
-class DragDropOnDlg;
-}
-
-class BatchFolderPairPanel;
-class FirstBatchFolderPairCfg;
-
-
-class BatchDialog: public BatchDlgGenerated
-{
- friend class BatchFileDropEvent;
- template <class GuiPanel>
- friend class FolderPairCallback;
-
-public:
- BatchDialog(wxWindow* window, const xmlAccess::XmlBatchConfig& batchCfg);
- BatchDialog(wxWindow* window, const wxString& filename);
- ~BatchDialog();
-
- enum
- {
- BATCH_FILE_SAVED = 15
- };
-
-private:
- void init();
-
- virtual void OnCmpSettings( wxCommandEvent& event);
- virtual void OnSyncSettings( wxCommandEvent& event);
- virtual void OnConfigureFilter( wxCommandEvent& event);
-
- virtual void OnHelp( wxCommandEvent& event);
-
- void OnGlobalFilterOpenContext(wxCommandEvent& event);
- void OnGlobalFilterRemConfirm(wxCommandEvent& event);
- virtual void OnCheckSilent( wxCommandEvent& event);
- virtual void OnClose( wxCloseEvent& event);
- virtual void OnCancel( wxCommandEvent& event);
- virtual void OnSaveBatchJob( wxCommandEvent& event);
- virtual void OnLoadBatchJob( wxCommandEvent& event);
- virtual void OnAddFolderPair( wxCommandEvent& event);
- virtual void OnRemoveFolderPair( wxCommandEvent& event);
- virtual void OnRemoveTopFolderPair(wxCommandEvent& event);
-
- void addFolderPair(const std::vector<FreeFileSync::FolderPairEnh>& newPairs, bool addFront = false);
- void removeAddFolderPair(const int pos);
- void clearAddFolderPairs();
-
- void updateGuiForFolderPair();
-
- void updateGui(); //re-evaluate gui after config changes
-
- void updateVisibleTabs();
- void showNotebookpage(wxWindow* page, const wxString& pageName, bool show);
-
- //error handling
- xmlAccess::OnError getSelectionHandleError() const;
- void setSelectionHandleError(const xmlAccess::OnError value);
- void OnChangeErrorHandling(wxCommandEvent& event);
- void updateToolTipErrorHandling(const xmlAccess::OnError value);
-
- bool saveBatchFile(const wxString& filename);
- void loadBatchFile(const wxString& filename);
- void loadBatchCfg(const xmlAccess::XmlBatchConfig& batchCfg);
-
- xmlAccess::XmlBatchConfig getCurrentConfiguration() const;
-
- boost::shared_ptr<FirstBatchFolderPairCfg> firstFolderPair; //always bound!!!
- std::vector<BatchFolderPairPanel*> additionalFolderPairs;
-
- //used when saving batch file
- wxString proposedBatchFileName;
-
- xmlAccess::XmlBatchConfig localBatchCfg;
-
- std::auto_ptr<wxMenu> contextMenu;
-
- //add drag & drop support when selecting logfile directory
- std::auto_ptr<FreeFileSync::DragDropOnDlg> dragDropOnLogfileDir;
-};
-
-#endif // BATCHCONFIG_H_INCLUDED
bgstack15