]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/radiobox.h
final (?) changes to the generic tree ctrl -- seems to work ok
[wxWidgets.git] / include / wx / motif / radiobox.h
CommitLineData
9b6dbb09
JS
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#ifdef __GNUG__
16#pragma interface "radiobox.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
22
23// List box item
24class WXDLLEXPORT wxBitmap ;
25
26class WXDLLEXPORT wxRadioBox: public wxControl
27{
28 DECLARE_DYNAMIC_CLASS(wxRadioBox)
29public:
30 wxRadioBox();
31
32 inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title,
33 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
34 int n = 0, const wxString choices[] = NULL,
35 int majorDim = 0, long style = wxRA_HORIZONTAL,
36 const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr)
37 {
38 Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name);
39 }
40
41 ~wxRadioBox();
42
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 int FindString(const wxString& s) const;
50 void SetSelection(int N);
51 int GetSelection() const;
52 wxString GetString(int N) const;
53 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
a4294b78 54 void SetLabel(const wxString& label) { wxControl::SetLabel(label); };
9b6dbb09
JS
55 void SetLabel(int item, const wxString& label) ;
56 wxString GetLabel(int item) const;
a4294b78 57 wxString GetLabel() const { return wxControl::GetLabel(); };
9b6dbb09
JS
58 void Enable(bool enable);
59 void Enable(int item, bool enable);
60 void Show(int item, bool show) ;
a4294b78 61 bool Show(bool show) { return wxControl::Show(show); };
9b6dbb09
JS
62
63 virtual wxString GetStringSelection() const;
64 virtual bool SetStringSelection(const wxString& s);
65 inline virtual int Number() const { return m_noItems; } ;
66 void Command(wxCommandEvent& event);
67
68 inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
69 inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
70
0d57be45 71// Implementation
4b5f3fe6 72 virtual void ChangeFont(bool keepOriginalSize = TRUE);
0d57be45
JS
73 virtual void ChangeBackgroundColour();
74 virtual void ChangeForegroundColour();
a4294b78
JS
75 WXWidget GetTopWidget() const { return m_formWidget; }
76 WXWidget GetLabelWidget() const { return m_labelWidget; }
77 inline WXWidget* GetRadioButtons() const { return m_radioButtons; }
78 inline void SetSel(int i) { m_selectedButton = i; }
79
9b6dbb09 80protected:
9b6dbb09
JS
81 int m_majorDim ;
82 int m_noItems;
83 int m_noRowsOrCols;
84 int m_selectedButton;
85
a4294b78
JS
86 WXWidget m_formWidget;
87 WXWidget m_labelWidget;
88 WXWidget* m_radioButtons;
89 wxString* m_radioButtonLabels;
9b6dbb09
JS
90};
91
92#endif
93 // _WX_RADIOBOX_H_