]> git.saurik.com Git - wxWidgets.git/blame - include/wx/radiobox.h
add wxPosixPermissions enumeration; it provides more readable synonims for wxS_I...
[wxWidgets.git] / include / wx / radiobox.h
CommitLineData
1e6feb95
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/radiobox.h
3// Purpose: wxRadioBox declaration
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 10.09.00
7// RCS-ID: $Id$
99d80019 8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
1e6feb95
VZ
10///////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_RADIOBOX_H_BASE_
13#define _WX_RADIOBOX_H_BASE_
c801d85f 14
1e6feb95
VZ
15#if wxUSE_RADIOBOX
16
8ba7c771 17#include "wx/ctrlsub.h"
1e6feb95 18
c670c855
VZ
19#if wxUSE_TOOLTIPS
20
21#include "wx/dynarray.h"
22
b5dbe15d 23class WXDLLIMPEXP_FWD_CORE wxToolTip;
c670c855
VZ
24
25WX_DEFINE_EXPORTED_ARRAY_PTR(wxToolTip *, wxToolTipArray);
26
27#endif // wxUSE_TOOLTIPS
28
53a2db12 29extern WXDLLIMPEXP_DATA_CORE(const char) wxRadioBoxNameStr[];
1e6feb95
VZ
30
31// ----------------------------------------------------------------------------
32// wxRadioBoxBase is not a normal base class, but rather a mix-in because the
33// real wxRadioBox derives from different classes on different platforms: for
aca49b79 34// example, it is a wxStaticBox in wxUniv and wxMSW but not in other ports
1e6feb95
VZ
35// ----------------------------------------------------------------------------
36
53a2db12 37class WXDLLIMPEXP_CORE wxRadioBoxBase : public wxItemContainerImmutable
1e6feb95
VZ
38{
39public:
c670c855
VZ
40 virtual ~wxRadioBoxBase();
41
3bfa7be9 42 // change/query the individual radio button state
aa61d352
VZ
43 virtual bool Enable(unsigned int n, bool enable = true) = 0;
44 virtual bool Show(unsigned int n, bool show = true) = 0;
7a952d4c
WS
45 virtual bool IsItemEnabled(unsigned int n) const = 0;
46 virtual bool IsItemShown(unsigned int n) const = 0;
3bfa7be9 47
21e0a4d5 48 // return number of columns/rows in this radiobox
aa61d352
VZ
49 unsigned int GetColumnCount() const { return m_numCols; }
50 unsigned int GetRowCount() const { return m_numRows; }
1e6feb95 51
05d31b3a
VZ
52 // return the next active (i.e. shown and not disabled) item above/below/to
53 // the left/right of the given one
1e6feb95
VZ
54 int GetNextItem(int item, wxDirection dir, long style) const;
55
c670c855
VZ
56#if wxUSE_TOOLTIPS
57 // set the tooltip text for a radio item, empty string unsets any tooltip
58 void SetItemToolTip(unsigned int item, const wxString& text);
59
60 // get the individual items tooltip; returns NULL if none
61 wxToolTip *GetItemToolTip(unsigned int item) const
62 { return m_itemsTooltips ? (*m_itemsTooltips)[item] : NULL; }
63#endif // wxUSE_TOOLTIPS
3bfa7be9 64
dc26eeb3
VZ
65#if wxUSE_HELP
66 // set helptext for a particular item, pass an empty string to erase it
67 void SetItemHelpText(unsigned int n, const wxString& helpText);
68
69 // retrieve helptext for a particular item, empty string means no help text
70 wxString GetItemHelpText(unsigned int n) const;
71#else // wxUSE_HELP
72 // just silently ignore the help text, it's better than requiring using
73 // conditional compilation in all code using this function
74 void SetItemHelpText(unsigned int WXUNUSED(n),
75 const wxString& WXUNUSED(helpText))
76 {
77 }
78#endif // wxUSE_HELP
79
80 // returns the radio item at the given position or wxNOT_FOUND if none
81 // (currently implemented only under MSW and GTK)
82 virtual int GetItemFromPoint(const wxPoint& WXUNUSED(pt)) const
83 {
84 return wxNOT_FOUND;
85 }
86
87
21e0a4d5
VZ
88protected:
89 wxRadioBoxBase()
90 {
155e46c2
VZ
91 m_numCols =
92 m_numRows =
21e0a4d5 93 m_majorDim = 0;
c670c855
VZ
94
95#if wxUSE_TOOLTIPS
96 m_itemsTooltips = NULL;
97#endif // wxUSE_TOOLTIPS
21e0a4d5
VZ
98 }
99
677dc0ed
JS
100 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
101
21e0a4d5
VZ
102 // return the number of items in major direction (which depends on whether
103 // we have wxRA_SPECIFY_COLS or wxRA_SPECIFY_ROWS style)
aa61d352 104 unsigned int GetMajorDim() const { return m_majorDim; }
21e0a4d5
VZ
105
106 // sets m_majorDim and also updates m_numCols/Rows
107 //
108 // the style parameter should be the style of the radiobox itself
aa61d352 109 void SetMajorDim(unsigned int majorDim, long style);
21e0a4d5 110
c670c855
VZ
111#if wxUSE_TOOLTIPS
112 // called from SetItemToolTip() to really set the tooltip for the specified
113 // item in the box (or, if tooltip is NULL, to remove any existing one).
114 //
115 // NB: this function should really be pure virtual but to avoid breaking
116 // the build of the ports for which it's not implemented yet we provide
117 // an empty stub in the base class for now
118 virtual void DoSetItemToolTip(unsigned int item, wxToolTip *tooltip);
119
120 // returns true if we have any item tooltips
121 bool HasItemToolTips() const { return m_itemsTooltips != NULL; }
122#endif // wxUSE_TOOLTIPS
21e0a4d5 123
dc26eeb3
VZ
124#if wxUSE_HELP
125 // Retrieve help text for an item: this is a helper for the implementation
126 // of wxWindow::GetHelpTextAtPoint() in the real radiobox class
127 wxString DoGetHelpTextAtPoint(const wxWindow *derived,
128 const wxPoint& pt,
129 wxHelpEvent::Origin origin) const;
130#endif // wxUSE_HELP
131
21e0a4d5
VZ
132private:
133 // the number of elements in major dimension (i.e. number of columns if
134 // wxRA_SPECIFY_COLS or the number of rows if wxRA_SPECIFY_ROWS) and also
135 // the number of rows/columns calculated from it
aa61d352
VZ
136 unsigned int m_majorDim,
137 m_numCols,
138 m_numRows;
c670c855
VZ
139
140#if wxUSE_TOOLTIPS
141 // array of tooltips for the individual items
142 //
143 // this array is initially NULL and initialized on first use
144 wxToolTipArray *m_itemsTooltips;
145#endif
dc26eeb3
VZ
146
147#if wxUSE_HELP
148 // help text associated with a particular item or empty string if none
149 wxArrayString m_itemsHelpTexts;
150#endif // wxUSE_HELP
1e6feb95
VZ
151};
152
153#if defined(__WXUNIVERSAL__)
154 #include "wx/univ/radiobox.h"
155#elif defined(__WXMSW__)
156 #include "wx/msw/radiobox.h"
2049ba38 157#elif defined(__WXMOTIF__)
1e6feb95 158 #include "wx/motif/radiobox.h"
1be7a35c 159#elif defined(__WXGTK20__)
1e6feb95 160 #include "wx/gtk/radiobox.h"
1be7a35c
MR
161#elif defined(__WXGTK__)
162 #include "wx/gtk1/radiobox.h"
34138703 163#elif defined(__WXMAC__)
ef0e9220 164 #include "wx/osx/radiobox.h"
e64df9bc
DE
165#elif defined(__WXCOCOA__)
166 #include "wx/cocoa/radiobox.h"
1777b9bb 167#elif defined(__WXPM__)
1e6feb95 168 #include "wx/os2/radiobox.h"
a152561c
WS
169#elif defined(__WXPALMOS__)
170 #include "wx/palmos/radiobox.h"
c801d85f
KB
171#endif
172
1e6feb95
VZ
173#endif // wxUSE_RADIOBOX
174
dc26eeb3 175#endif // _WX_RADIOBOX_H_BASE_