// Name: wx/gtk/radiobox.h
// Purpose:
// Author: Robert Roebling
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
public:
// ctors and dtor
- wxRadioBox() { Init(); }
+ wxRadioBox() { }
wxRadioBox(wxWindow *parent,
wxWindowID id,
const wxString& title,
int n = 0,
const wxString choices[] = (const wxString *) NULL,
int majorDim = 0,
- long style = wxRA_HORIZONTAL,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr)
{
- Init();
-
Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name );
}
const wxSize& size,
const wxArrayString& choices,
int majorDim = 0,
- long style = wxRA_HORIZONTAL,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr)
{
- Init();
-
Create( parent, id, title, pos, size, choices, majorDim, style, val, name );
}
int n = 0,
const wxString choices[] = (const wxString *) NULL,
int majorDim = 0,
- long style = wxRA_HORIZONTAL,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr);
bool Create(wxWindow *parent,
const wxSize& size,
const wxArrayString& choices,
int majorDim = 0,
- long style = wxRA_HORIZONTAL,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr);
void GtkDisableEvents();
void GtkEnableEvents();
#if wxUSE_TOOLTIPS
- void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
+ virtual void GTKApplyToolTip(const char* tip);
#endif // wxUSE_TOOLTIPS
wxRadioBoxButtonsInfoList m_buttonsInfo;