2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/radiobox.h
|
|
|
|
// Purpose: wxRadioBox declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10.09.00
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_RADIOBOX_H_BASE_
|
|
|
|
#define _WX_RADIOBOX_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_RADIOBOX
|
|
|
|
|
2005-02-13 19:01:17 +00:00
|
|
|
#include "wx/ctrlsub.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2006-01-16 14:59:55 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar) wxRadioBoxNameStr[];
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxRadioBoxBase is not a normal base class, but rather a mix-in because the
|
|
|
|
// real wxRadioBox derives from different classes on different platforms: for
|
2004-12-17 01:35:10 +00:00
|
|
|
// example, it is a wxStaticBox in wxUniv and wxMSW but not in other ports
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2005-02-13 19:01:17 +00:00
|
|
|
class WXDLLEXPORT wxRadioBoxBase : public wxItemContainerImmutable
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2005-11-29 19:26:38 +00:00
|
|
|
// change/query the individual radio button state
|
2005-02-21 21:02:41 +00:00
|
|
|
virtual bool Enable(int n, bool enable = true) = 0;
|
2005-02-23 16:39:25 +00:00
|
|
|
virtual bool Show(int n, bool show = true) = 0;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2005-11-29 19:26:38 +00:00
|
|
|
// NB: these functions are stubbed here for now but should become pure
|
|
|
|
// virtual once all ports implement them
|
|
|
|
virtual bool IsItemEnabled(int WXUNUSED(n)) const { return true; }
|
|
|
|
virtual bool IsItemShown(int WXUNUSED(n)) const { return true; }
|
|
|
|
|
2005-11-30 16:28:15 +00:00
|
|
|
// return number of columns/rows in this radiobox
|
|
|
|
int GetColumnCount() const { return m_numCols; }
|
|
|
|
int GetRowCount() const { return m_numRows; }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// return the item above/below/to the left/right of the given one
|
|
|
|
int GetNextItem(int item, wxDirection dir, long style) const;
|
|
|
|
|
2005-11-29 19:26:38 +00:00
|
|
|
|
2004-12-13 01:00:35 +00:00
|
|
|
// deprecated functions
|
|
|
|
// --------------------
|
|
|
|
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
|
|
|
wxDEPRECATED( int GetNumberOfRowsOrCols() const );
|
|
|
|
wxDEPRECATED( void SetNumberOfRowsOrCols(int n) );
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_4
|
2005-11-30 16:28:15 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxRadioBoxBase()
|
|
|
|
{
|
|
|
|
m_majorDim = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the number of items in major direction (which depends on whether
|
|
|
|
// we have wxRA_SPECIFY_COLS or wxRA_SPECIFY_ROWS style)
|
|
|
|
int GetMajorDim() const { return m_majorDim; }
|
|
|
|
|
|
|
|
// sets m_majorDim and also updates m_numCols/Rows
|
|
|
|
//
|
|
|
|
// the style parameter should be the style of the radiobox itself
|
|
|
|
void SetMajorDim(int majorDim, long style);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
// the number of elements in major dimension (i.e. number of columns if
|
|
|
|
// wxRA_SPECIFY_COLS or the number of rows if wxRA_SPECIFY_ROWS) and also
|
|
|
|
// the number of rows/columns calculated from it
|
|
|
|
int m_majorDim,
|
|
|
|
m_numCols,
|
|
|
|
m_numRows;
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/radiobox.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/radiobox.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/motif/radiobox.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/radiobox.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/radiobox.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/mac/radiobox.h"
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/radiobox.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/radiobox.h"
|
2005-01-31 08:04:44 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/radiobox.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_RADIOBOX
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_RADIOBOX_H_BASE_
|