1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRadioBox declaration
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBOX_H_BASE_
13 #define _WX_RADIOBOX_H_BASE_
17 #include "wx/ctrlsub.h"
19 extern WXDLLEXPORT_DATA(const wxChar
) wxRadioBoxNameStr
[];
21 // ----------------------------------------------------------------------------
22 // wxRadioBoxBase is not a normal base class, but rather a mix-in because the
23 // real wxRadioBox derives from different classes on different platforms: for
24 // example, it is a wxStaticBox in wxUniv and wxMSW but not in other ports
25 // ----------------------------------------------------------------------------
27 class WXDLLEXPORT wxRadioBoxBase
: public wxItemContainerImmutable
30 // change/query the individual radio button state
31 virtual bool Enable(int n
, bool enable
= true) = 0;
32 virtual bool Show(int n
, bool show
= true) = 0;
34 // NB: these functions are stubbed here for now but should become pure
35 // virtual once all ports implement them
36 virtual bool IsItemEnabled(int WXUNUSED(n
)) const { return true; }
37 virtual bool IsItemShown(int WXUNUSED(n
)) const { return true; }
39 // return number of columns/rows in this radiobox
40 int GetColumnCount() const { return m_numCols
; }
41 int GetRowCount() const { return m_numRows
; }
43 // return the item above/below/to the left/right of the given one
44 int GetNextItem(int item
, wxDirection dir
, long style
) const;
47 // deprecated functions
48 // --------------------
50 #if WXWIN_COMPATIBILITY_2_4
51 wxDEPRECATED( int GetNumberOfRowsOrCols() const );
52 wxDEPRECATED( void SetNumberOfRowsOrCols(int n
) );
53 #endif // WXWIN_COMPATIBILITY_2_4
61 // return the number of items in major direction (which depends on whether
62 // we have wxRA_SPECIFY_COLS or wxRA_SPECIFY_ROWS style)
63 int GetMajorDim() const { return m_majorDim
; }
65 // sets m_majorDim and also updates m_numCols/Rows
67 // the style parameter should be the style of the radiobox itself
68 void SetMajorDim(int majorDim
, long style
);
72 // the number of elements in major dimension (i.e. number of columns if
73 // wxRA_SPECIFY_COLS or the number of rows if wxRA_SPECIFY_ROWS) and also
74 // the number of rows/columns calculated from it
80 #if defined(__WXUNIVERSAL__)
81 #include "wx/univ/radiobox.h"
82 #elif defined(__WXMSW__)
83 #include "wx/msw/radiobox.h"
84 #elif defined(__WXMOTIF__)
85 #include "wx/motif/radiobox.h"
86 #elif defined(__WXGTK20__)
87 #include "wx/gtk/radiobox.h"
88 #elif defined(__WXGTK__)
89 #include "wx/gtk1/radiobox.h"
90 #elif defined(__WXMAC__)
91 #include "wx/mac/radiobox.h"
92 #elif defined(__WXCOCOA__)
93 #include "wx/cocoa/radiobox.h"
94 #elif defined(__WXPM__)
95 #include "wx/os2/radiobox.h"
96 #elif defined(__WXPALMOS__)
97 #include "wx/palmos/radiobox.h"
100 #endif // wxUSE_RADIOBOX
103 // _WX_RADIOBOX_H_BASE_