1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: radiobox.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Created: 01/02/97
|
|
|
|
// Id:
|
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKRADIOBOXH__
|
|
|
|
#define __GTKRADIOBOXH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioBox;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern const char *wxRadioBoxNameStr;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxRadioBox
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioBox: public wxControl
|
|
|
|
{
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxRadioBox)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxRadioBox(void);
|
1998-07-04 15:17:59 +00:00
|
|
|
wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title,
|
|
|
|
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxString &name = wxRadioBoxNameStr );
|
1998-07-04 15:17:59 +00:00
|
|
|
bool Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|
|
|
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
int majorDim = 0, long style = wxRA_HORIZONTAL,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxString &name = wxRadioBoxNameStr );
|
|
|
|
int FindString( const wxString& s) const;
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetSelection( int n );
|
1998-05-20 14:01:55 +00:00
|
|
|
int GetSelection(void) const;
|
1998-07-04 15:17:59 +00:00
|
|
|
wxString GetString( int n ) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
wxString GetLabel(void) const;
|
|
|
|
void SetLabel( const wxString& label );
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetLabel( int item, const wxString& label );
|
|
|
|
void SetLabel( int item, wxBitmap *bitmap );
|
|
|
|
wxString GetLabel( int item ) const;
|
|
|
|
bool Show( bool show );
|
|
|
|
void Enable( bool enable );
|
|
|
|
void Enable( int item, bool enable );
|
|
|
|
void Show( int item, bool show );
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual wxString GetStringSelection(void) const;
|
|
|
|
virtual bool SetStringSelection( const wxString& s );
|
|
|
|
virtual int Number(void) const;
|
|
|
|
int GetNumberOfRowsOrCols(void) const;
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetNumberOfRowsOrCols( int n );
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
GtkRadioButton *m_radio;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKRADIOBOXH__
|