]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/radiobut.h
Better compatibility between wxRichTextCtrl and wxTextCtrlBase
[wxWidgets.git] / include / wx / msw / radiobut.h
index 1ffb17d75159d9724f855c6f2f368ca09d55b165..43a8e30e328989654e99ac054b749b371b1abe91 100644 (file)
 #ifndef _WX_RADIOBUT_H_
 #define _WX_RADIOBUT_H_
 
 #ifndef _WX_RADIOBUT_H_
 #define _WX_RADIOBUT_H_
 
-#ifdef __GNUG__
-    #pragma interface "radiobut.h"
-#endif
-
 class WXDLLEXPORT wxRadioButton: public wxControl
 {
 public:
 class WXDLLEXPORT wxRadioButton: public wxControl
 {
 public:
@@ -52,8 +48,9 @@ public:
     // implementation only from now on
     virtual bool MSWCommand(WXUINT param, WXWORD id);
     virtual void Command(wxCommandEvent& event);
     // implementation only from now on
     virtual bool MSWCommand(WXUINT param, WXWORD id);
     virtual void Command(wxCommandEvent& event);
+    virtual bool HasTransparentBackground() { return true; }
 
 
-    virtual void SetFocus();
+    virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
 
 protected:
     virtual wxSize DoGetBestSize() const;
 
 protected:
     virtual wxSize DoGetBestSize() const;
@@ -62,10 +59,11 @@ private:
     // common part of all ctors
     void Init();
 
     // common part of all ctors
     void Init();
 
-    // see the comments in SetFocus()
-    bool m_focusJustSet;
+    // we need to store the state internally as the result of GetValue()
+    // sometimes gets out of sync in WM_COMMAND handler
+    bool m_isChecked;
 
 
-    DECLARE_DYNAMIC_CLASS(wxRadioButton)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
 };
 
 #endif
 };
 
 #endif