]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: wxRadioBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_RADIOBOX_H_ |
13 | #define _WX_RADIOBOX_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "radiobox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr; | |
22 | ||
23 | // List box item | |
e373f51b | 24 | class WXDLLEXPORT wxBitmap; |
2bda0e17 | 25 | |
bfc6fde4 | 26 | class WXDLLEXPORT wxRadioBox : public wxControl |
2bda0e17 | 27 | { |
bfc6fde4 VZ |
28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
29 | ||
2bda0e17 | 30 | public: |
bfc6fde4 | 31 | wxRadioBox(); |
2bda0e17 KB |
32 | |
33 | #if WXWIN_COMPATIBILITY | |
bfc6fde4 VZ |
34 | wxRadioBox(wxWindow *parent, wxFunction func, const char *title, |
35 | int x = -1, int y = -1, int width = -1, int height = -1, | |
36 | int n = 0, char **choices = NULL, | |
37 | int majorDim = 0, long style = wxRA_HORIZONTAL, const char *name = wxRadioBoxNameStr); | |
bfc6fde4 VZ |
38 | #endif // WXWIN_COMPATIBILITY |
39 | ||
40 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
42 | int n = 0, const wxString choices[] = NULL, | |
43 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
44 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
45 | { | |
46 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
47 | } | |
48 | ||
bfc6fde4 VZ |
49 | ~wxRadioBox(); |
50 | ||
51 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
52 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
53 | int n = 0, const wxString choices[] = NULL, | |
54 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
55 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
56 | ||
bfc6fde4 VZ |
57 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
58 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, | |
e373f51b | 59 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); |
bfc6fde4 VZ |
60 | |
61 | int FindString(const wxString& s) const; | |
62 | void SetSelection(int N); | |
63 | int GetSelection() const; | |
64 | wxString GetString(int N) const; | |
65 | ||
66 | void GetSize(int *x, int *y) const; | |
67 | void GetPosition(int *x, int *y) const; | |
68 | ||
69 | wxString GetLabel() const; | |
70 | void SetLabel(const wxString& label); | |
e373f51b VZ |
71 | void SetLabel(int item, const wxString& label); |
72 | void SetLabel(int item, wxBitmap *bitmap); | |
bfc6fde4 VZ |
73 | wxString GetLabel(int item) const; |
74 | bool Show(bool show); | |
75 | void SetFocus(); | |
76 | void Enable(bool enable); | |
77 | void Enable(int item, bool enable); | |
e373f51b | 78 | void Show(int item, bool show); |
bfc6fde4 VZ |
79 | void SetLabelFont(const wxFont& WXUNUSED(font)) {}; |
80 | void SetButtonFont(const wxFont& font) { SetFont(font); } | |
81 | ||
82 | virtual wxString GetStringSelection() const; | |
83 | virtual bool SetStringSelection(const wxString& s); | |
e373f51b | 84 | virtual int Number() const { return m_noItems; }; |
bfc6fde4 VZ |
85 | void Command(wxCommandEvent& event); |
86 | ||
87 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
88 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
89 | ||
90 | // Implementation | |
91 | WXHWND *GetRadioButtons() const { return m_radioButtons; } | |
e373f51b | 92 | bool ContainsHWND(WXHWND hWnd) const; |
bfc6fde4 VZ |
93 | |
94 | long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
9c331ded | 95 | |
e373f51b VZ |
96 | // get the number of buttons per column/row |
97 | inline int GetNumVer() const; | |
98 | inline int GetNumHor() const; | |
99 | ||
2bda0e17 | 100 | protected: |
e373f51b VZ |
101 | void SubclassRadioButton(WXHWND hWndBtn); |
102 | ||
bfc6fde4 | 103 | WXHWND * m_radioButtons; |
e373f51b VZ |
104 | int m_majorDim; |
105 | int * m_radioWidth; // for bitmaps | |
106 | int * m_radioHeight; | |
bfc6fde4 VZ |
107 | |
108 | int m_noItems; | |
109 | int m_noRowsOrCols; | |
110 | int m_selectedButton; | |
111 | ||
112 | virtual void DoSetSize(int x, int y, | |
113 | int width, int height, | |
114 | int sizeFlags = wxSIZE_AUTO); | |
2bda0e17 KB |
115 | }; |
116 | ||
117 | #endif | |
bbcdf8bc | 118 | // _WX_RADIOBOX_H_ |