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$
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: (c) wxWidgets team
|
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
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-06-26 20:59:19 +00:00
|
|
|
#pragma interface "radioboxbase.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_RADIOBOX
|
|
|
|
|
2005-02-13 19:01:17 +00:00
|
|
|
#include "wx/ctrlsub.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2005-01-21 18:48:22 +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:
|
|
|
|
// change the individual radio button state
|
2005-02-21 21:02:41 +00:00
|
|
|
virtual bool Enable(int n, bool enable = true) = 0;
|
2004-09-21 18:15:59 +00:00
|
|
|
virtual void Show(int n, bool show = true) = 0;
|
2001-06-26 20:59:19 +00: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-13 01:00:35 +00:00
|
|
|
|
2005-02-13 19:01:17 +00:00
|
|
|
// implement some of wxItemContainerImmutable functions
|
|
|
|
virtual int FindString(const wxString& s) const;
|
|
|
|
|
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
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// for compatibility only, don't use these methods in new code!
|
2001-07-07 11:23:24 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_2
|
2005-01-06 12:41:27 +00:00
|
|
|
wxDEPRECATED( int Number() const );
|
|
|
|
wxDEPRECATED( wxString GetLabel(int n) const );
|
|
|
|
wxDEPRECATED( void SetLabel(int n, const wxString& label) );
|
2001-07-02 09:38:35 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_2
|
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"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/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_
|