]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/tglbtn.h
update the samples to use new (non-deprecated) wxGLCanvas API; added more comments...
[wxWidgets.git] / include / wx / palmos / tglbtn.h
CommitLineData
ffecfa5a
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/tglbtn.h
3// Purpose: Declaration of the wxToggleButton class, which implements a
4// toggle button under Palm OS.
e1d63b79 5// Author: William Osborne - minimal working wxPalmOS port
bdb54365 6// Modified by: Wlodzimierz ABX Skiba - native implementation
ffecfa5a 7// Created: 10/13/04
e1d63b79 8// RCS-ID: $Id$
bdb54365 9// Copyright: (c) William Osborne, Wlodzimierz Skiba
ffecfa5a
JS
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_TOGGLEBUTTON_H_
14#define _WX_TOGGLEBUTTON_H_
15
e2fc40b4
VZ
16#include "wx/checkbox.h" // wxCheckBoxNameStr, in Datacmn.cpp
17//WXDLLEXPORT_DATA(extern const wxChar) wxCheckBoxNameStr[];
ffecfa5a
JS
18
19// Checkbox item (single checkbox)
803cab4d 20class WXDLLEXPORT wxToggleButton : public wxToggleButtonBase
ffecfa5a
JS
21{
22public:
23 wxToggleButton() {}
24 wxToggleButton(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
a152561c
WS
50 // send a notification event, return true if processed
51 bool SendClickEvent();
52
ffecfa5a
JS
53protected:
54 virtual wxSize DoGetBestSize() const;
55 virtual wxBorder GetDefaultBorder() const;
ffecfa5a
JS
56
57private:
58 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
59};
60
61#endif // _WX_TOGGLEBUTTON_H_
62