| 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 wxBitmap ; |
| 25 | |
| 26 | class wxRadioButton ; |
| 27 | |
| 28 | class wxRadioBox: public wxControl |
| 29 | { |
| 30 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
| 31 | public: |
| 32 | // Constructors & destructor |
| 33 | wxRadioBox(); |
| 34 | inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
| 35 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
| 36 | int n = 0, const wxString choices[] = NULL, |
| 37 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
| 38 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) |
| 39 | { |
| 40 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); |
| 41 | } |
| 42 | ~wxRadioBox(); |
| 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 | // Specific functions (in wxWindows2 reference) |
| 50 | bool Enable(bool enable); |
| 51 | void Enable(int item, bool enable); |
| 52 | int FindString(const wxString& s) const; |
| 53 | wxString GetLabel() const; |
| 54 | wxString GetLabel(int item) const; |
| 55 | int GetSelection() const; |
| 56 | wxString GetString(int item) const; |
| 57 | virtual wxString GetStringSelection() const; |
| 58 | inline virtual int Number() const { return m_noItems; } ; |
| 59 | void SetLabel(const wxString& label) ; |
| 60 | void SetLabel(int item, const wxString& label) ; |
| 61 | void SetSelection(int item); |
| 62 | virtual bool SetStringSelection(const wxString& s); |
| 63 | bool Show(bool show); |
| 64 | void Show(int item, bool show) ; |
| 65 | |
| 66 | // Other external functions |
| 67 | void Command(wxCommandEvent& event); |
| 68 | void SetFocus(); |
| 69 | |
| 70 | // Other variable access functions |
| 71 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
| 72 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } |
| 73 | |
| 74 | protected: |
| 75 | wxRadioButton *m_radioButtonCycle; |
| 76 | |
| 77 | int m_majorDim ; |
| 78 | int m_noItems; |
| 79 | int m_noRowsOrCols; |
| 80 | |
| 81 | // Internal functions |
| 82 | virtual void DoSetSize(int x, int y, |
| 83 | int width, int height, |
| 84 | int sizeFlags = wxSIZE_AUTO); |
| 85 | int GetNumHor() const; |
| 86 | int GetNumVer() const; |
| 87 | |
| 88 | }; |
| 89 | |
| 90 | #endif |
| 91 | // _WX_RADIOBOX_H_ |