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