Rewrote wxRadioBox (recompile)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-09-08 00:27:29 +00:00
parent 6987a6c3d0
commit d6d1892b89
4 changed files with 180 additions and 164 deletions

View File

@@ -55,6 +55,7 @@ class wxRadioBox: public wxControl
{
Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name );
}
~wxRadioBox(void);
bool Create( wxWindow *parent, wxWindowID id, const wxString& title,
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
int n = 0, const wxString choices[] = (const wxString *) NULL,
@@ -86,14 +87,10 @@ class wxRadioBox: public wxControl
bool IsOwnGtkWindow( GdkWindow *window );
bool m_alreadySent;
private:
GtkRadioButton *m_radio;
bool m_alreadySent;
wxList m_boxes;
DECLARE_EVENT_TABLE()
};
#endif // __GTKRADIOBOXH__