diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:54:32 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:54:32 +0200 |
commit | cbb59ba3fb48fb87065469eaa1b4a34a18851b9e (patch) | |
tree | 6f43ab99e0f22a33fccb941ab0441d1bee38adf9 /library/processXml.h | |
parent | 1.11 (diff) | |
download | FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.tar.gz FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.tar.bz2 FreeFileSync-cbb59ba3fb48fb87065469eaa1b4a34a18851b9e.zip |
1.12
Diffstat (limited to 'library/processXml.h')
-rw-r--r-- | library/processXml.h | 115 |
1 files changed, 43 insertions, 72 deletions
diff --git a/library/processXml.h b/library/processXml.h index d30cf49f..abf5bfc6 100644 --- a/library/processXml.h +++ b/library/processXml.h @@ -3,6 +3,8 @@ #include "../FreeFileSync.h" #include "tinyxml/tinyxml.h" +#include <wx/intl.h> + namespace xmlAccess { @@ -10,34 +12,21 @@ namespace xmlAccess { XML_GUI_CONFIG, XML_BATCH_CONFIG, + XML_GLOBAL_SETTINGS, XML_OTHER }; - - struct XmlMainConfig - { - MainConfiguration cfg; - vector<FolderPair> directoryPairs; - }; + XmlType getXmlType(const wxString& filename); struct XmlGuiConfig { - XmlGuiConfig() : - hideFilteredElements(false), //initialize values - widthNotMaximized(-1), - heightNotMaximized(-1), - posXNotMaximized(-1), - posYNotMaximized(-1), - isMaximized(false) {} + XmlGuiConfig() : hideFilteredElements(false) {} //initialize values + + MainConfiguration mainCfg; + vector<FolderPair> directoryPairs; + bool hideFilteredElements; - int widthNotMaximized; - int heightNotMaximized; - int posXNotMaximized; - int posYNotMaximized; - bool isMaximized; - vector<int> columnWidthLeft; - vector<int> columnWidthRight; }; @@ -45,68 +34,50 @@ namespace xmlAccess { XmlBatchConfig() : silent(false) {} + MainConfiguration mainCfg; + vector<FolderPair> directoryPairs; + bool silent; }; - XmlType getXmlType(const wxString& filename); - - class XmlInput + struct XmlGlobalSettings { - public: - XmlInput(const wxString& fileName, const XmlType type); - ~XmlInput() {} + struct _Global + { + _Global() : programLanguage(wxLocale::GetSystemLanguage()) {} + int programLanguage; + } global; - bool loadedSuccessfully() + struct _Gui { - return loadSuccess; - } - - //read basic FreefileSync settings (used by commandline and GUI), return true if ALL values have been retrieved successfully - bool readXmlMainConfig(XmlMainConfig& outputCfg); - //read additional gui settings, all values retrieved are optional, so check for initial values! (== -1) - bool readXmlGuiConfig(XmlGuiConfig& outputCfg); - //read additional batch settings, all values retrieved are optional - bool readXmlBatchConfig(XmlBatchConfig& outputCfg); - - private: -//read - bool readXmlElementValue(string& output, const TiXmlElement* parent, const string& name); - bool readXmlElementValue(int& output, const TiXmlElement* parent, const string& name); - bool readXmlElementValue(CompareVariant& output, const TiXmlElement* parent, const string& name); - bool readXmlElementValue(SyncDirection& output, const TiXmlElement* parent, const string& name); - bool readXmlElementValue(bool& output, const TiXmlElement* parent, const string& name); - - TiXmlDocument doc; - bool loadSuccess; + _Gui() : + widthNotMaximized(wxDefaultCoord), + heightNotMaximized(wxDefaultCoord), + posXNotMaximized(wxDefaultCoord), + posYNotMaximized(wxDefaultCoord), + isMaximized(false) {} + + int widthNotMaximized; + int heightNotMaximized; + int posXNotMaximized; + int posYNotMaximized; + bool isMaximized; + vector<int> columnWidthLeft; + vector<int> columnWidthRight; + } gui; + + //struct _Batch }; - class XmlOutput - { - public: - XmlOutput(const wxString& fileName, const XmlType type); - ~XmlOutput() {} - - bool writeToFile(); - - //write basic FreefileSync settings (used by commandline and GUI), return true if everything was written successfully - bool writeXmlMainConfig(const XmlMainConfig& inputCfg); - //write additional gui settings - bool writeXmlGuiConfig(const XmlGuiConfig& inputCfg); - //write additional batch settings - bool writeXmlBatchConfig(const XmlBatchConfig& inputCfg); - - private: -//write - void addXmlElement(TiXmlElement* parent, const string& name, const string& value); - void addXmlElement(TiXmlElement* parent, const string& name, const int value); - void addXmlElement(TiXmlElement* parent, const string& name, const SyncDirection value); - void addXmlElement(TiXmlElement* parent, const string& name, const bool value); - - TiXmlDocument doc; - const wxString& m_fileName; - }; + XmlGuiConfig readGuiConfig(const wxString& filename); + XmlBatchConfig readBatchConfig(const wxString& filename); + XmlGlobalSettings readGlobalSettings(); //used for both GUI and batch mode, independent from configuration instance + + void writeGuiConfig(const wxString& filename, const XmlGuiConfig& inputCfg); + void writeBatchConfig(const wxString& filename, const XmlBatchConfig& inputCfg); + void writeGlobalSettings(const XmlGlobalSettings& inputCfg); } |