2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/radiobox.h
|
|
|
|
// Purpose: wxRadioBox declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10.09.00
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 14:57:50 -04:00
|
|
|
// Copyright: (c) Vadim Zeitlin
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_RADIOBOX_H_BASE_
|
|
|
|
#define _WX_RADIOBOX_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if wxUSE_RADIOBOX
|
|
|
|
|
2005-02-13 14:01:17 -05:00
|
|
|
#include "wx/ctrlsub.h"
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2005-01-21 13:48:22 -05:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar*) wxRadioBoxNameStr;
|
2001-06-26 16:59:19 -04: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-16 20:35:10 -05:00
|
|
|
// example, it is a wxStaticBox in wxUniv and wxMSW but not in other ports
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2005-02-13 14:01:17 -05:00
|
|
|
class WXDLLEXPORT wxRadioBoxBase : public wxItemContainerImmutable
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// change the individual radio button state
|
2005-02-21 16:02:41 -05:00
|
|
|
virtual bool Enable(int n, bool enable = true) = 0;
|
2005-02-23 11:39:25 -05:00
|
|
|
virtual bool Show(int n, bool show = true) = 0;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// layout parameters
|
|
|
|
virtual int GetColumnCount() const = 0;
|
|
|
|
virtual int GetRowCount() const = 0;
|
|
|
|
|
|
|
|
// return the item above/below/to the left/right of the given one
|
|
|
|
int GetNextItem(int item, wxDirection dir, long style) const;
|
|
|
|
|
2004-12-12 20:00:35 -05:00
|
|
|
// deprecated functions
|
|
|
|
// --------------------
|
|
|
|
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
|
|
|
wxDEPRECATED( int GetNumberOfRowsOrCols() const );
|
|
|
|
wxDEPRECATED( void SetNumberOfRowsOrCols(int n) );
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_4
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/radiobox.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/radiobox.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/motif/radiobox.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/gtk/radiobox.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/mac/radiobox.h"
|
2003-03-22 01:18:36 -05:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/radiobox.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/os2/radiobox.h"
|
2005-01-31 03:04:44 -05:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/radiobox.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#endif // wxUSE_RADIOBOX
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_RADIOBOX_H_BASE_
|