| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: radiobox.h |
| 3 | // Purpose: wxRadioBox class |
| 4 | // Author: Julian Smart |
| 5 | // Modified by: |
| 6 | // Created: 17/09/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Julian Smart |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_RADIOBOX_H_ |
| 13 | #define _WX_RADIOBOX_H_ |
| 14 | |
| 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
| 16 | #pragma interface "radiobox.h" |
| 17 | #endif |
| 18 | |
| 19 | #include "wx/control.h" |
| 20 | |
| 21 | // List box item |
| 22 | class WXDLLEXPORT wxBitmap ; |
| 23 | |
| 24 | class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase |
| 25 | { |
| 26 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
| 27 | |
| 28 | public: |
| 29 | wxRadioBox(); |
| 30 | |
| 31 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
| 32 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
| 33 | int n = 0, const wxString choices[] = NULL, |
| 34 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
| 35 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) |
| 36 | { |
| 37 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); |
| 38 | } |
| 39 | |
| 40 | ~wxRadioBox(); |
| 41 | |
| 42 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
| 43 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
| 44 | int n = 0, const wxString choices[] = NULL, |
| 45 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
| 46 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); |
| 47 | |
| 48 | int FindString(const wxString& s) const; |
| 49 | void SetSelection(int N); |
| 50 | int GetSelection() const; |
| 51 | |
| 52 | void SetString(int item, const wxString& label) ; |
| 53 | wxString GetString(int item) const; |
| 54 | virtual bool Enable(bool enable = TRUE); |
| 55 | void Enable(int item, bool enable); |
| 56 | void Show(int item, bool show) ; |
| 57 | virtual bool Show(bool show = TRUE) ; |
| 58 | |
| 59 | virtual wxString GetStringSelection() const; |
| 60 | virtual bool SetStringSelection(const wxString& s); |
| 61 | virtual int GetCount() const { return m_noItems; } ; |
| 62 | void Command(wxCommandEvent& event); |
| 63 | |
| 64 | int GetColumnCount() const; |
| 65 | int GetRowCount() const; |
| 66 | |
| 67 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
| 68 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } |
| 69 | |
| 70 | // Implementation |
| 71 | virtual void ChangeFont(bool keepOriginalSize = TRUE); |
| 72 | virtual void ChangeBackgroundColour(); |
| 73 | virtual void ChangeForegroundColour(); |
| 74 | WXWidget* GetRadioButtons() const { return m_radioButtons; } |
| 75 | void SetSel(int i) { m_selectedButton = i; } |
| 76 | virtual WXWidget GetLabelWidget() const { return m_labelWidget; } |
| 77 | |
| 78 | protected: |
| 79 | int m_majorDim; |
| 80 | int m_noItems; |
| 81 | int m_noRowsOrCols; |
| 82 | int m_selectedButton; |
| 83 | |
| 84 | WXWidget* m_radioButtons; |
| 85 | WXWidget m_labelWidget; |
| 86 | wxString* m_radioButtonLabels; |
| 87 | |
| 88 | virtual void DoSetSize(int x, int y, |
| 89 | int width, int height, |
| 90 | int sizeFlags = wxSIZE_AUTO); |
| 91 | }; |
| 92 | |
| 93 | #endif |
| 94 | // _WX_RADIOBOX_H_ |