X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20123d495814b8b8543bf43fbd63aa7ec21e5d78..3d777efedc1e05bd6c2a7c34a00a65895b62bb13:/include/wx/gtk/radiobut.h diff --git a/include/wx/gtk/radiobut.h b/include/wx/gtk/radiobut.h index 8611d506b8..165370aa12 100644 --- a/include/wx/gtk/radiobut.h +++ b/include/wx/gtk/radiobut.h @@ -2,18 +2,12 @@ // Name: wx/gtk/radiobut.h // Purpose: // Author: Robert Roebling -// Id: $Id$ // Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifndef __GTKRADIOBUTTONH__ -#define __GTKRADIOBUTTONH__ - -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif +#ifndef _WX_GTK_RADIOBUT_H_ +#define _WX_GTK_RADIOBUT_H_ //----------------------------------------------------------------------------- // wxRadioButton @@ -47,27 +41,21 @@ public: virtual void SetLabel(const wxString& label); virtual void SetValue(bool val); virtual bool GetValue() const; - virtual bool Enable( bool enable = TRUE ); + virtual bool Enable( bool enable = true ); static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - // implementation - - virtual bool IsRadioButton() const { return TRUE; } - - GSList *m_radioButtonGroup; - void DoApplyWidgetStyle(GtkRcStyle *style); - bool IsOwnGtkWindow( GdkWindow *window ); - void OnInternalIdle(); - - bool m_blockEvent; - 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_