]>
Commit | Line | Data |
---|---|---|
7c78e7c7 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
01b2eeec KB |
3 | // Purpose: wxRadioBox class |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
7c78e7c7 RR |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
01b2eeec KB |
12 | #ifndef _WX_RADIOBOX_H_ |
13 | #define _WX_RADIOBOX_H_ | |
7c78e7c7 RR |
14 | |
15 | #ifdef __GNUG__ | |
01b2eeec | 16 | #pragma interface "radiobox.h" |
7c78e7c7 RR |
17 | #endif |
18 | ||
7c78e7c7 | 19 | #include "wx/control.h" |
7c78e7c7 | 20 | |
01b2eeec | 21 | WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr; |
7c78e7c7 | 22 | |
01b2eeec KB |
23 | // List box item |
24 | class WXDLLEXPORT wxBitmap ; | |
7c78e7c7 | 25 | |
01b2eeec KB |
26 | class WXDLLEXPORT wxRadioBox: public wxControl |
27 | { | |
28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) | |
29 | public: | |
30 | wxRadioBox(); | |
7c78e7c7 | 31 | |
01b2eeec KB |
32 | inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
33 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
34 | int n = 0, const wxString choices[] = NULL, | |
35 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
36 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
37 | { | |
38 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
39 | } | |
7c78e7c7 | 40 | |
01b2eeec | 41 | ~wxRadioBox(); |
7c78e7c7 | 42 | |
01b2eeec KB |
43 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
44 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
45 | int n = 0, const wxString choices[] = NULL, | |
46 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
47 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
7c78e7c7 | 48 | |
01b2eeec KB |
49 | int FindString(const wxString& s) const; |
50 | void SetSelection(int N); | |
51 | int GetSelection() const; | |
52 | wxString GetString(int N) const; | |
53 | void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
54 | void GetSize(int *x, int *y) const; | |
55 | void GetPosition(int *x, int *y) const; | |
56 | wxString GetLabel() const; | |
57 | void SetLabel(const wxString& label); | |
58 | void SetLabel(int item, const wxString& label) ; | |
59 | wxString GetLabel(int item) const; | |
60 | bool Show(bool show); | |
61 | void SetFocus(); | |
62 | void 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); | |
7c78e7c7 | 72 | |
01b2eeec KB |
73 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
74 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
75 | ||
76 | protected: | |
77 | /* TODO: implementation | |
78 | WXHWND * m_radioButtons; | |
79 | */ | |
80 | int m_majorDim ; | |
81 | int m_noItems; | |
82 | int m_noRowsOrCols; | |
83 | int m_selectedButton; | |
84 | ||
7c78e7c7 RR |
85 | }; |
86 | ||
01b2eeec KB |
87 | #endif |
88 | // _WX_RADIOBOX_H_ |