]>
Commit | Line | Data |
---|---|---|
7c23a0b0 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: wxRadioBox class | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_RADIOBOX_H_ | |
13 | #define _WX_RADIOBOX_H_ | |
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 | |
24 | class WXDLLEXPORT wxBitmap ; | |
25 | ||
26 | class WXDLLEXPORT wxRadioBox: public wxControl | |
27 | { | |
28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) | |
29 | public: | |
30 | wxRadioBox(); | |
31 | ||
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 | } | |
40 | ||
41 | ~wxRadioBox(); | |
42 | ||
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); | |
48 | ||
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) ; | |
7c23a0b0 JS |
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); | |
72 | ||
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 ; | |
7c23a0b0 JS |
81 | int m_noItems; |
82 | int m_noRowsOrCols; | |
83 | int m_selectedButton; | |
84 | ||
85 | }; | |
86 | ||
87 | #endif | |
88 | // _WX_RADIOBOX_H_ |