]>
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 DW |
45 | virtual bool OS2Command(WXUINT param, WXWORD id); |
46 | ||
54da4255 DW |
47 | int FindString(const wxString& s) const; |
48 | void SetSelection(int N); | |
49 | int GetSelection() const; | |
50 | wxString GetString(int N) const; | |
cdf1e714 | 51 | |
54da4255 DW |
52 | void GetSize(int *x, int *y) const; |
53 | void GetPosition(int *x, int *y) const; | |
cdf1e714 | 54 | |
54da4255 DW |
55 | void SetLabel(const wxString& label); |
56 | void SetLabel(int item, const wxString& label) ; | |
57 | wxString GetLabel(int item) const; | |
cdf1e714 | 58 | wxString GetLabel() const; |
54da4255 DW |
59 | bool Show(bool show); |
60 | void SetFocus(); | |
61 | bool Enable(bool enable); | |
62 | void Enable(int item, bool enable); | |
63 | void Show(int item, bool show) ; | |
64 | inline void SetLabelFont(const wxFont& WXUNUSED(font)) {}; | |
65 | inline void SetButtonFont(const wxFont& font) { SetFont(font); } | |
66 | ||
67 | virtual wxString GetStringSelection() const; | |
68 | virtual bool SetStringSelection(const wxString& s); | |
69 | inline virtual int Number() const { return m_noItems; } ; | |
70 | void Command(wxCommandEvent& event); | |
71 | ||
72 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
73 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
0e320a79 DW |
74 | |
75 | protected: | |
cdf1e714 DW |
76 | void SubclassRadioButton(WXHWND hWndBtn); |
77 | ||
54da4255 | 78 | WXHWND * m_radioButtons; |
54da4255 | 79 | int m_majorDim ; |
cdf1e714 DW |
80 | int * m_radioWidth; // for bitmaps |
81 | int * m_radioHeight; | |
82 | ||
54da4255 DW |
83 | int m_noItems; |
84 | int m_noRowsOrCols; | |
85 | int m_selectedButton; | |
0e320a79 | 86 | |
cdf1e714 DW |
87 | virtual void DoSetSize(int x, int y, |
88 | int width, int height, | |
89 | int sizeFlags = wxSIZE_AUTO); | |
0e320a79 DW |
90 | }; |
91 | ||
92 | #endif | |
93 | // _WX_RADIOBOX_H_ |