#include "wx/bitmap.h"
-class WXDLLIMPEXP_CORE wxGTKRadioButtonInfo;
+class WXDLLIMPEXP_FWD_CORE wxGTKRadioButtonInfo;
#include "wx/list.h"
-WX_DECLARE_LIST(wxGTKRadioButtonInfo, wxRadioBoxButtonsInfoList);
+WX_DECLARE_EXPORTED_LIST(wxGTKRadioButtonInfo, wxRadioBoxButtonsInfoList);
//-----------------------------------------------------------------------------
const wxSize& size = wxDefaultSize,
int n = 0,
const wxString choices[] = (const wxString *) NULL,
- int majorDim = 1,
- long style = wxRA_HORIZONTAL,
+ int majorDim = 0,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr)
{
const wxPoint& pos,
const wxSize& size,
const wxArrayString& choices,
- int majorDim = 1,
- long style = wxRA_HORIZONTAL,
+ int majorDim = 0,
+ long style = wxRA_SPECIFY_COLS,
const wxValidator& val = wxDefaultValidator,
const wxString& name = wxRadioBoxNameStr)
{
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);
// implementation
// --------------
- void SetFocus();
void GtkDisableEvents();
void GtkEnableEvents();
- bool IsOwnGtkWindow( GdkWindow *window );
#if wxUSE_TOOLTIPS
- void ApplyToolTip( GtkTooltips *tips, const wxChar *tip );
+ void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
#endif // wxUSE_TOOLTIPS
- virtual void OnInternalIdle();
-
- bool m_hasFocus,
- m_lostFocus;
wxRadioBoxButtonsInfoList m_buttonsInfo;
protected:
+ virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
+
#if wxUSE_TOOLTIPS
virtual void DoSetItemToolTip(unsigned int n, wxToolTip *tooltip);
#endif
- void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
+
+ virtual bool GTKNeedsToFilterSameWindowFocus() const { return true; }
virtual bool GTKWidgetNeedsMnemonic() const;
virtual void GTKWidgetDoSetMnemonic(GtkWidget* w);
- // common part of all ctors
- void Init();
-
private:
DECLARE_DYNAMIC_CLASS(wxRadioBox)
};