]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/checkbox.h
fixed bug in Set() on DST days (patch 1097811)
[wxWidgets.git] / include / wx / palmos / checkbox.h
CommitLineData
ffecfa5a
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/checkbox.h
3// Purpose: wxCheckBox class
e1d63b79 4// Author: William Osborne - minimal working wxPalmOS port
bdb54365 5// Modified by: Wlodzimierz ABX Skiba - native implementation
ffecfa5a 6// Created: 10/13/04
e1d63b79 7// RCS-ID: $Id$
bdb54365 8// Copyright: (c) William Osborne, Wlodzimierz Skiba
ffecfa5a
JS
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CHECKBOX_H_
13#define _WX_CHECKBOX_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "checkbox.h"
17#endif
18
19// Checkbox item (single checkbox)
20class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase
21{
22public:
23 wxCheckBox() { }
24 wxCheckBox(wxWindow *parent,
25 wxWindowID id,
26 const wxString& label,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = 0,
30 const wxValidator& validator = wxDefaultValidator,
31 const wxString& name = wxCheckBoxNameStr)
32 {
33 Create(parent, id, label, pos, size, style, validator, name);
34 }
35
36 bool Create(wxWindow *parent,
37 wxWindowID id,
38 const wxString& label,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 long style = 0,
42 const wxValidator& validator = wxDefaultValidator,
43 const wxString& name = wxCheckBoxNameStr);
44
45 virtual void SetValue(bool value);
46 virtual bool GetValue() const;
47
ffecfa5a
JS
48 virtual void Command(wxCommandEvent& event);
49
50protected:
51 virtual wxSize DoGetBestSize() const;
52
53 virtual void DoSet3StateValue(wxCheckBoxState value);
54
55 virtual wxCheckBoxState DoGet3StateValue() const;
56
57private:
58 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckBox)
59};
60
61#endif
62 // _WX_CHECKBOX_H_