]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/colordlg.h
Make list consistent with tree in terms of Vetoed changes closing the inline edit...
[wxWidgets.git] / include / wx / msw / colordlg.h
index cf93a514efd0ed7de6f4926bdb44b6a215925f7d..1f6679b8b9717b5b732d8f3195421cb19fbd59f2 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_COLORDLG_H_
 #define _WX_COLORDLG_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "colordlg.h"
 #endif
 
@@ -36,10 +36,12 @@ public:
 
     // override some base class virtuals
     virtual void SetTitle(const wxString& title);
-    virtual wxString GetTitle();
+    virtual wxString GetTitle() const;
 
     virtual int ShowModal();
 
+    virtual void DoGetPosition( int *x, int *y ) const;
+
 protected:
     virtual void DoGetSize(int *width, int *height) const;
     virtual void DoGetClientSize(int *width, int *height) const;
@@ -50,7 +52,9 @@ protected:
     wxColourData        m_colourData;
     wxString            m_title;
 
-    DECLARE_DYNAMIC_CLASS(wxColourDialog)
+    wxPoint             m_pos;
+
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxColourDialog)
 };
 
 #endif