disable use of #pragma interface under Mac OS X
[wxWidgets.git] / include / wx / motif / radiobox.h
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 WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
22
23 // List box item
24 class WXDLLEXPORT wxBitmap ;
25
26 class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase
27 {
28 DECLARE_DYNAMIC_CLASS(wxRadioBox)
29
30 public:
31 wxRadioBox();
32
33 wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
34 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
35 int n = 0, const wxString choices[] = NULL,
36 int majorDim = 0, long style = wxRA_HORIZONTAL,
37 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr)
38 {
39 Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name);
40 }
41
42 ~wxRadioBox();
43
44 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
45 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
46 int n = 0, const wxString choices[] = NULL,
47 int majorDim = 0, long style = wxRA_HORIZONTAL,
48 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr);
49
50 int FindString(const wxString& s) const;
51 void SetSelection(int N);
52 int GetSelection() const;
53
54 void SetString(int item, const wxString& label) ;
55 wxString GetString(int item) const;
56 virtual bool Enable(bool enable = TRUE);
57 void Enable(int item, bool enable);
58 void Show(int item, bool show) ;
59 virtual bool Show(bool show = TRUE) ;
60
61 virtual wxString GetStringSelection() const;
62 virtual bool SetStringSelection(const wxString& s);
63 virtual int GetCount() const { return m_noItems; } ;
64 void Command(wxCommandEvent& event);
65
66 int GetColumnCount() const;
67 int GetRowCount() const;
68
69 int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
70 void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
71
72 // Implementation
73 virtual void ChangeFont(bool keepOriginalSize = TRUE);
74 virtual void ChangeBackgroundColour();
75 virtual void ChangeForegroundColour();
76 WXWidget* GetRadioButtons() const { return m_radioButtons; }
77 void SetSel(int i) { m_selectedButton = i; }
78 virtual WXWidget GetLabelWidget() const { return m_labelWidget; }
79
80 protected:
81 int m_majorDim;
82 int m_noItems;
83 int m_noRowsOrCols;
84 int m_selectedButton;
85
86 WXWidget* m_radioButtons;
87 WXWidget m_labelWidget;
88 wxString* m_radioButtonLabels;
89
90 virtual void DoSetSize(int x, int y,
91 int width, int height,
92 int sizeFlags = wxSIZE_AUTO);
93 };
94
95 #endif
96 // _WX_RADIOBOX_H_