projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix DLL compilation
[wxWidgets.git]
/
include
/
wx
/
gtk
/
radiobut.h
diff --git
a/include/wx/gtk/radiobut.h
b/include/wx/gtk/radiobut.h
index fc3e0c21b77eb227aeee7292c8279741365ce3f6..bb4f5d869cffc81d7a73392dc00fd31e7ced7a92 100644
(file)
--- a/
include/wx/gtk/radiobut.h
+++ b/
include/wx/gtk/radiobut.h
@@
-7,19
+7,14
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
-#ifndef __GTKRADIOBUTTONH__
-#define __GTKRADIOBUTTONH__
-
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma interface
-#endif
+#ifndef _WX_GTK_RADIOBUT_H_
+#define _WX_GTK_RADIOBUT_H_
//-----------------------------------------------------------------------------
// wxRadioButton
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxRadioButton
//-----------------------------------------------------------------------------
-class wxRadioButton: public wxControl
+class
WXDLLIMPEXP_CORE
wxRadioButton: public wxControl
{
public:
wxRadioButton() { }
{
public:
wxRadioButton() { }
@@
-49,22
+44,22
@@
public:
virtual bool GetValue() const;
virtual bool Enable( bool enable = TRUE );
virtual bool GetValue() const;
virtual bool Enable( bool enable = TRUE );
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
// implementation
virtual bool IsRadioButton() const { return TRUE; }
// implementation
virtual bool IsRadioButton() const { return TRUE; }
- GSList *m_radioButtonGroup;
- void ApplyWidgetStyle();
- bool IsOwnGtkWindow( GdkWindow *window );
- void OnInternalIdle();
-
bool m_blockEvent;
protected:
virtual wxSize DoGetBestSize() const;
bool m_blockEvent;
protected:
virtual wxSize DoGetBestSize() const;
+ virtual void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
private:
DECLARE_DYNAMIC_CLASS(wxRadioButton)
};
private:
DECLARE_DYNAMIC_CLASS(wxRadioButton)
};
-#endif // _
_GTKRADIOBUTTONH_
_
+#endif // _
WX_GTK_RADIOBUT_H
_