]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: wxRadioBox class | |
54da4255 | 4 | // Author: AUTHOR |
0e320a79 | 5 | // Modified by: |
54da4255 | 6 | // Created: ??/??/98 |
0e320a79 | 7 | // RCS-ID: $Id$ |
54da4255 | 8 | // Copyright: (c) AUTHOR |
0e320a79 DW |
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 | ||
54da4255 | 21 | WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr; |
0e320a79 DW |
22 | |
23 | // List box item | |
54da4255 | 24 | class WXDLLEXPORT wxBitmap ; |
0e320a79 | 25 | |
54da4255 | 26 | class WXDLLEXPORT wxRadioBox: public wxControl |
0e320a79 | 27 | { |
54da4255 | 28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
0e320a79 | 29 | public: |
54da4255 DW |
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) ; | |
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 DW |
75 | |
76 | protected: | |
54da4255 DW |
77 | /* TODO: implementation |
78 | WXHWND * m_radioButtons; | |
79 | */ | |
80 | int m_majorDim ; | |
81 | int m_noItems; | |
82 | int m_noRowsOrCols; | |
83 | int m_selectedButton; | |
0e320a79 DW |
84 | |
85 | }; | |
86 | ||
87 | #endif | |
88 | // _WX_RADIOBOX_H_ |