]>
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, | |
32 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
33 | { | |
34 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
35 | } | |
36 | ||
37 | ~wxRadioBox(); | |
38 | ||
39 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
40 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
41 | int n = 0, const wxString choices[] = NULL, | |
42 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
43 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
44 | ||
cdf1e714 | 45 | virtual bool OS2Command(WXUINT param, WXWORD id); |
11e59d47 DW |
46 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
47 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
cdf1e714 | 48 | |
54da4255 DW |
49 | int FindString(const wxString& s) const; |
50 | void SetSelection(int N); | |
51 | int GetSelection() const; | |
52 | wxString GetString(int N) const; | |
cdf1e714 | 53 | |
54da4255 DW |
54 | void GetSize(int *x, int *y) const; |
55 | void GetPosition(int *x, int *y) const; | |
cdf1e714 | 56 | |
11e59d47 DW |
57 | void SetLabel(int item, const wxString& label); |
58 | void SetLabel(int item, wxBitmap *bitmap); | |
54da4255 DW |
59 | wxString GetLabel(int item) const; |
60 | bool Show(bool show); | |
61 | void SetFocus(); | |
62 | bool Enable(bool enable); | |
63 | void Enable(int item, bool enable); | |
64 | void Show(int item, bool show) ; | |
65 | inline void SetLabelFont(const wxFont& WXUNUSED(font)) {}; | |
66 | inline void SetButtonFont(const wxFont& font) { SetFont(font); } | |
67 | ||
68 | virtual wxString GetStringSelection() const; | |
69 | virtual bool SetStringSelection(const wxString& s); | |
70 | inline virtual int Number() const { return m_noItems; } ; | |
71 | void Command(wxCommandEvent& event); | |
72 | ||
73 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
74 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
0e320a79 | 75 | |
11e59d47 DW |
76 | // implementation only from now on |
77 | // ------------------------------- | |
78 | ||
79 | WXHWND *GetRadioButtons() const { return m_radioButtons; } | |
80 | bool ContainsHWND(WXHWND hWnd) const; | |
81 | void SendNotificationEvent(); | |
82 | ||
83 | // get the number of buttons per column/row | |
84 | int GetNumVer() const; | |
85 | int GetNumHor() const; | |
86 | ||
87 | #if WXWIN_COMPATIBILITY | |
88 | wxRadioBox(wxWindow *parent, wxFunction func, const char *title, | |
89 | int x = -1, int y = -1, int width = -1, int height = -1, | |
90 | int n = 0, char **choices = NULL, | |
91 | int majorDim = 0, long style = wxRA_HORIZONTAL, const char *name = wxRadioBoxNameStr); | |
92 | #endif // WXWIN_COMPATIBILITY | |
93 | ||
0e320a79 | 94 | protected: |
cdf1e714 DW |
95 | void SubclassRadioButton(WXHWND hWndBtn); |
96 | ||
54da4255 | 97 | WXHWND * m_radioButtons; |
54da4255 | 98 | int m_majorDim ; |
cdf1e714 DW |
99 | int * m_radioWidth; // for bitmaps |
100 | int * m_radioHeight; | |
101 | ||
54da4255 DW |
102 | int m_noItems; |
103 | int m_noRowsOrCols; | |
104 | int m_selectedButton; | |
0e320a79 | 105 | |
cdf1e714 DW |
106 | virtual void DoSetSize(int x, int y, |
107 | int width, int height, | |
108 | int sizeFlags = wxSIZE_AUTO); | |
11e59d47 DW |
109 | private: |
110 | virtual void SetLabel(const wxString& label) | |
111 | { wxWindowBase::SetLabel(label); } | |
112 | wxString GetLabel() const | |
113 | { return(wxWindowBase::GetLabel()); } | |
0e320a79 DW |
114 | }; |
115 | ||
116 | #endif | |
117 | // _WX_RADIOBOX_H_ |