]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/radiobox.h
more extra semicolons removed (patch 1303724)
[wxWidgets.git] / include / wx / mac / carbon / radiobox.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobox.h
3// Purpose: wxRadioBox class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_RADIOBOX_H_
13#define _WX_RADIOBOX_H_
14
8cf73271
SC
15// List box item
16class WXDLLEXPORT wxBitmap ;
17
18class WXDLLEXPORT wxRadioButton ;
19
20class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase
21{
22 DECLARE_DYNAMIC_CLASS(wxRadioBox)
23public:
24// Constructors & destructor
25 wxRadioBox();
26 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
27 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
28 int n = 0, const wxString choices[] = NULL,
29 int majorDim = 0, long style = wxRA_HORIZONTAL,
30 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr)
31 {
32 Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name);
33 }
34 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
35 const wxPoint& pos, const wxSize& size,
36 const wxArrayString& choices,
37 int majorDim = 0, long style = wxRA_HORIZONTAL,
38 const wxValidator& val = wxDefaultValidator,
39 const wxString& name = wxRadioBoxNameStr)
40 {
41 Create(parent, id, title, pos, size, choices,
42 majorDim, style, val, name);
43 }
44 ~wxRadioBox();
45 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
46 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
47 int n = 0, const wxString choices[] = NULL,
48 int majorDim = 0, long style = wxRA_HORIZONTAL,
49 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr);
50 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
51 const wxPoint& pos, const wxSize& size,
52 const wxArrayString& choices,
53 int majorDim = 0, long style = wxRA_HORIZONTAL,
54 const wxValidator& val = wxDefaultValidator,
55 const wxString& name = wxRadioBoxNameStr);
56
77ffb593 57// Specific functions (in wxWidgets2 reference)
8cf73271
SC
58 virtual void SetSelection(int item);
59 virtual int GetSelection() const;
60
61 inline virtual int GetCount() const { return m_noItems; } ;
62
63 virtual wxString GetString(int item) const;
64 virtual void SetString(int item, const wxString& label) ;
65
1a87edf2 66 virtual bool Enable(int item, bool enable = true);
6cb0bfdf 67 virtual bool Show(int item, bool show = true);
8cf73271
SC
68
69 virtual int GetColumnCount() const ;
70 virtual int GetRowCount() const ;
71
72
1a87edf2 73 virtual bool Enable(bool enable = true);
8cf73271
SC
74 virtual wxString GetLabel() const;
75 virtual void SetLabel(const wxString& label) ;
1a87edf2 76 virtual bool Show(bool show = true);
8cf73271 77
1a87edf2 78// Other external functions
8cf73271
SC
79 void Command(wxCommandEvent& event);
80 void SetFocus();
81
82// Other variable access functions
83 inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
84 inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
85
86 void OnRadioButton( wxCommandEvent& event ) ;
87protected:
88 wxRadioButton *m_radioButtonCycle;
89
90 int m_majorDim ;
91 int m_noItems;
92 int m_noRowsOrCols;
93
1a87edf2 94// Internal functions
8cf73271
SC
95 virtual wxSize DoGetBestSize() const ;
96 virtual void DoSetSize(int x, int y,
97 int width, int height,
98 int sizeFlags = wxSIZE_AUTO);
99
100 DECLARE_EVENT_TABLE()
101};
102
103#endif
104 // _WX_RADIOBOX_H_