X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6b0d8a01d184b8d410238677b2cfc0e3059e1268..74af0b13434f4fa5c814a19a6d325d271944accf:/include/wx/gtk/radiobut.h diff --git a/include/wx/gtk/radiobut.h b/include/wx/gtk/radiobut.h index 32d1a9e189..e1a1d6275e 100644 --- a/include/wx/gtk/radiobut.h +++ b/include/wx/gtk/radiobut.h @@ -7,19 +7,14 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifndef __GTKRADIOBUTTONH__ -#define __GTKRADIOBUTTONH__ - -#ifdef __GNUG__ -#pragma interface -#endif +#ifndef _WX_GTK_RADIOBUT_H_ +#define _WX_GTK_RADIOBUT_H_ //----------------------------------------------------------------------------- // wxRadioButton //----------------------------------------------------------------------------- -class wxRadioButton: public wxControl +class WXDLLIMPEXP_CORE wxRadioButton: public wxControl { public: wxRadioButton() { } @@ -47,24 +42,21 @@ public: virtual void SetLabel(const wxString& label); virtual void SetValue(bool val); virtual bool GetValue() const; - virtual bool Enable( bool enable = TRUE ); - - // implementation - - virtual bool IsRadioButton() const { return TRUE; } + virtual bool Enable( bool enable = true ); - GSList *m_radioButtonGroup; - void ApplyWidgetStyle(); - bool IsOwnGtkWindow( GdkWindow *window ); - void OnInternalIdle(); - - bool m_blockEvent; + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); protected: - virtual wxSize DoGetBestSize() const; + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } + + virtual void DoApplyWidgetStyle(GtkRcStyle *style); + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; private: + typedef wxControl base_type; + DECLARE_DYNAMIC_CLASS(wxRadioButton) }; -#endif // __GTKRADIOBUTTONH__ +#endif // _WX_GTK_RADIOBUT_H_