]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/appsettings.h
synching down and up events for the synthetic right mouse handling
[wxWidgets.git] / utils / configtool / src / appsettings.h
index ac218f6d2143216bcd89e692e4f25ee4413adec6..7bb000d499f6913b58a3eb2acaeda0ff25514610 100644 (file)
 #ifndef _AP_APPSETTINGS_H_
 #define _AP_APPSETTINGS_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "appsettings.cpp"
 #endif
 
 #include "wx/notebook.h"
 #include "wx/dialog.h"
 #include "wx/datetime.h"
-#include "wx/wave.h"
 
 #include "wxconfigtool.h"
 
@@ -82,12 +81,12 @@ public:
     /// May not be needed in this application.
     wxString& GetLastFilename() { return m_lastFilename; }
 
-    /// Returns TRUE if this is the first time the application
+    /// Returns true if this is the first time the application
     /// has been run.
     bool GetFirstTimeRun() const { return m_firstTimeRun; }
 
 public:
-    wxString                m_currentDocumentDir; // Not yet used
+    wxString                m_lastSetupSaveDir; // Not yet used
     wxString                m_lastDocument;       // Last document
     bool                    m_showToolBar;
     bool                    m_smallToolbar;
@@ -117,6 +116,13 @@ public:
     int                     m_mainSashSize;
     bool                    m_showTrayIcon;
     bool                    m_trayIconIsShown;
+
+    // "Setup file" or "Configure script"
+    wxString                m_defaultFileKind;
+
+    // Search settings
+    bool                    m_matchCase;
+    bool                    m_matchWholeWord;
 };
 
 #endif