]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/checkbox.h
Tidied copyright and date for wxMac files
[wxWidgets.git] / include / wx / motif / checkbox.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: checkbox.h
3// Purpose: wxCheckBox class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CHECKBOX_H_
13#define _WX_CHECKBOX_H_
14
15#ifdef __GNUG__
16#pragma interface "checkbox.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxCheckBoxNameStr;
22
23// Checkbox item (single checkbox)
18128cbb 24class WXDLLEXPORT wxCheckBox: public wxCheckBoxBase
9b6dbb09 25{
83df96d6
JS
26 DECLARE_DYNAMIC_CLASS(wxCheckBox)
27
28public:
08e5319b 29 inline wxCheckBox() { Init(); }
83df96d6
JS
30 inline wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize, long style = 0,
33 const wxValidator& validator = wxDefaultValidator,
34 const wxString& name = wxCheckBoxNameStr)
35 {
08e5319b
MB
36 Init();
37
83df96d6
JS
38 Create(parent, id, label, pos, size, style, validator, name);
39 }
40
41 bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize, long style = 0,
44 const wxValidator& validator = wxDefaultValidator,
45 const wxString& name = wxCheckBoxNameStr);
46 virtual void SetValue(bool);
47 virtual bool GetValue() const ;
48 virtual void Command(wxCommandEvent& event);
49
50 // Implementation
83df96d6 51 virtual void ChangeBackgroundColour();
08e5319b
MB
52private:
53 // common part of all constructors
54 void Init()
55 {
56 m_evtType = wxEVT_COMMAND_CHECKBOX_CLICKED;
57 }
58
59 // public for the callback
60public:
61 // either exEVT_COMMAND_CHECKBOX_CLICKED or ..._TOGGLEBUTTON_CLICKED
62 wxEventType m_evtType;
9b6dbb09
JS
63};
64
9b6dbb09 65#endif
83df96d6 66// _WX_CHECKBOX_H_