]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/radiobox.h
3 // Purpose: wxRadioBox class
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native wxRadioBox implementation
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBOX_H_
13 #define _WX_RADIOBOX_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "radiobox.h"
19 class WXDLLEXPORT wxBitmap
;
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 class WXDLLEXPORT wxRadioBox
: public wxControl
, public wxRadioBoxBase
30 wxRadioBox(wxWindow
*parent
,
32 const wxString
& title
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
35 int n
= 0, const wxString choices
[] = NULL
,
37 long style
= wxRA_SPECIFY_COLS
,
38 const wxValidator
& val
= wxDefaultValidator
,
39 const wxString
& name
= wxRadioBoxNameStr
)
41 (void)Create(parent
, id
, title
, pos
, size
, n
, choices
, majorDim
,
44 wxRadioBox(wxWindow
*parent
,
46 const wxString
& title
,
49 const wxArrayString
& choices
,
51 long style
= wxRA_SPECIFY_COLS
,
52 const wxValidator
& val
= wxDefaultValidator
,
53 const wxString
& name
= wxRadioBoxNameStr
)
55 (void)Create(parent
, id
, title
, pos
, size
, choices
, majorDim
,
61 bool Create(wxWindow
*parent
,
63 const wxString
& title
,
64 const wxPoint
& pos
= wxDefaultPosition
,
65 const wxSize
& size
= wxDefaultSize
,
66 int n
= 0, const wxString choices
[] = NULL
,
68 long style
= wxRA_SPECIFY_COLS
,
69 const wxValidator
& val
= wxDefaultValidator
,
70 const wxString
& name
= wxRadioBoxNameStr
);
72 bool Create(wxWindow
*parent
,
74 const wxString
& title
,
77 const wxArrayString
& choices
,
79 long style
= wxRA_SPECIFY_COLS
,
80 const wxValidator
& val
= wxDefaultValidator
,
81 const wxString
& name
= wxRadioBoxNameStr
);
83 // implement the radiobox interface
84 virtual void SetSelection(int n
);
85 virtual int GetSelection() const;
86 virtual int GetCount() const;
87 virtual wxString
GetString(int n
) const;
88 virtual void SetString(int n
, const wxString
& label
);
89 virtual void Enable(int n
, bool enable
= true);
90 virtual void Show(int n
, bool show
= true);
91 virtual int GetColumnCount() const;
92 virtual int GetRowCount() const;
94 virtual bool Show(bool show
= true);
96 virtual bool Enable(bool enable
= true);
97 void SetLabelFont(const wxFont
& WXUNUSED(font
)) {};
98 void SetButtonFont(const wxFont
& font
) { SetFont(font
); }
100 void Command(wxCommandEvent
& event
);
102 int GetNumberOfRowsOrCols() const { return m_noRowsOrCols
; }
103 void SetNumberOfRowsOrCols(int n
) { m_noRowsOrCols
= n
; }
105 // implementation only from now on
106 // -------------------------------
108 virtual bool SetFont(const wxFont
& font
);
110 void SendNotificationEvent();
112 // get the number of buttons per column/row
113 int GetNumVer() const;
114 int GetNumHor() const;
116 virtual void ApplyParentThemeBackground(const wxColour
& bg
)
117 { SetBackgroundColour(bg
); }
120 // we can't compute our best size before the items are added to the control
121 virtual void SetInitialBestSize(const wxSize
& WXUNUSED(size
)) { }
123 // get the max size of radio buttons
124 wxSize
GetMaxButtonSize() const;
126 // get the total size occupied by the radio box buttons
127 wxSize
GetTotalButtonSize(const wxSize
& sizeBtn
) const;
130 int * m_radioWidth
; // for bitmaps
135 int m_selectedButton
;
137 virtual void DoSetSize(int x
, int y
,
138 int width
, int height
,
139 int sizeFlags
= wxSIZE_AUTO
);
140 virtual wxSize
DoGetBestSize() const;
143 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
144 DECLARE_NO_COPY_CLASS(wxRadioBox
)