]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/radiobox.h
make it non mach-o carbon savvy
[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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_RADIOBOX_H_
13#define _WX_RADIOBOX_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "radiobox.h"
17#endif
18
19// List box item
20class WXDLLEXPORT wxBitmap ;
21
22class WXDLLEXPORT wxRadioButton ;
23
24class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase
25{
26 DECLARE_DYNAMIC_CLASS(wxRadioBox)
27public:
28// Constructors & destructor
29 wxRadioBox();
30 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
31 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
32 int n = 0, const wxString choices[] = NULL,
33 int majorDim = 0, long style = wxRA_HORIZONTAL,
34 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr)
35 {
36 Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name);
37 }
38 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
39 const wxPoint& pos, const wxSize& size,
40 const wxArrayString& choices,
41 int majorDim = 0, long style = wxRA_HORIZONTAL,
42 const wxValidator& val = wxDefaultValidator,
43 const wxString& name = wxRadioBoxNameStr)
44 {
45 Create(parent, id, title, pos, size, choices,
46 majorDim, style, val, name);
47 }
48 ~wxRadioBox();
49 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
50 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
51 int n = 0, const wxString choices[] = NULL,
52 int majorDim = 0, long style = wxRA_HORIZONTAL,
53 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr);
54 bool Create(wxWindow *parent, wxWindowID id, const wxString& title,
55 const wxPoint& pos, const wxSize& size,
56 const wxArrayString& choices,
57 int majorDim = 0, long style = wxRA_HORIZONTAL,
58 const wxValidator& val = wxDefaultValidator,
59 const wxString& name = wxRadioBoxNameStr);
60
61// Specific functions (in wxWindows2 reference)
62 virtual void SetSelection(int item);
63 virtual int GetSelection() const;
64
65 inline virtual int GetCount() const { return m_noItems; } ;
66
67 virtual wxString GetString(int item) const;
68 virtual void SetString(int item, const wxString& label) ;
69
70 virtual void Enable(int item, bool enable);
71 virtual void Show(int item, bool show) ;
72
73 virtual int GetColumnCount() const ;
74 virtual int GetRowCount() const ;
75
76
77 virtual bool Enable(bool enable = TRUE);
78 virtual wxString GetLabel() const;
79 virtual void SetLabel(const wxString& label) ;
80 virtual bool Show(bool show = TRUE);
81
82// Other external functions
83 void Command(wxCommandEvent& event);
84 void SetFocus();
85
86// Other variable access functions
87 inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
88 inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
89
90 void OnRadioButton( wxCommandEvent& event ) ;
91protected:
92 wxRadioButton *m_radioButtonCycle;
93
94 int m_majorDim ;
95 int m_noItems;
96 int m_noRowsOrCols;
97
98// Internal functions
99 virtual wxSize DoGetBestSize() const ;
100 virtual void DoSetSize(int x, int y,
101 int width, int height,
102 int sizeFlags = wxSIZE_AUTO);
103
104 DECLARE_EVENT_TABLE()
105};
106
107#endif
108 // _WX_RADIOBOX_H_