1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-06-04 18:09:20 +00:00
|
|
|
// Name: wx/gtk/checkbox.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCHECKBOXH__
|
|
|
|
#define __GTKCHECKBOXH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 14:01:55 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// wxCheckBox
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
class wxCheckBox : public wxCheckBoxBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-02-01 14:40:53 +00:00
|
|
|
public:
|
1999-03-22 18:55:24 +00:00
|
|
|
wxCheckBox();
|
1999-02-01 14:40:53 +00:00
|
|
|
wxCheckBox( wxWindow *parent, wxWindowID id, const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxCheckBoxNameStr)
|
1998-08-14 10:07:38 +00:00
|
|
|
{
|
1999-02-01 14:40:53 +00:00
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
1998-08-14 10:07:38 +00:00
|
|
|
}
|
1999-03-22 18:55:24 +00:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxCheckBoxNameStr );
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetValue( bool state );
|
1998-09-07 14:44:38 +00:00
|
|
|
bool GetValue() const;
|
1999-02-01 14:40:53 +00:00
|
|
|
|
2002-06-04 18:09:20 +00:00
|
|
|
virtual void SetLabel( const wxString& label );
|
|
|
|
virtual bool Enable( bool enable = TRUE );
|
1999-02-01 14:40:53 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
|
|
|
|
1999-02-01 14:40:53 +00:00
|
|
|
// implementation
|
1999-11-22 19:44:25 +00:00
|
|
|
// --------------
|
|
|
|
|
2004-06-14 17:34:00 +00:00
|
|
|
void DoApplyWidgetStyle(GtkRcStyle *style);
|
1999-10-20 20:38:47 +00:00
|
|
|
bool IsOwnGtkWindow( GdkWindow *window );
|
|
|
|
void OnInternalIdle();
|
1998-10-29 18:03:18 +00:00
|
|
|
|
1999-03-22 18:55:24 +00:00
|
|
|
GtkWidget *m_widgetCheckbox;
|
|
|
|
GtkWidget *m_widgetLabel;
|
2002-06-04 18:09:20 +00:00
|
|
|
|
2001-11-17 23:50:58 +00:00
|
|
|
bool m_blockEvent;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
protected:
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
2004-06-26 15:53:22 +00:00
|
|
|
#ifdef __WXGTK20__
|
|
|
|
void DoSet3StateValue(wxCheckBoxState state);
|
|
|
|
wxCheckBoxState DoGet3StateValue() const;
|
|
|
|
#endif
|
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCheckBox)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCHECKBOXH__
|