]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: checkbox.h | |
3 | // Purpose: wxCheckBox class | |
a31a5f85 | 4 | // Author: Stefan Csomor |
0dbd6262 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
0dbd6262 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
6e8e9b66 | 9 | // Licence: wxWindows licence |
0dbd6262 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_CHECKBOX_H_ | |
13 | #define _WX_CHECKBOX_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
0dbd6262 SC |
16 | #pragma interface "checkbox.h" |
17 | #endif | |
18 | ||
0dbd6262 | 19 | // Checkbox item (single checkbox) |
6e8e9b66 | 20 | class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase |
0dbd6262 | 21 | { |
6e8e9b66 VZ |
22 | public: |
23 | wxCheckBox() { } | |
24 | wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label, | |
25 | const wxPoint& pos = wxDefaultPosition, | |
26 | const wxSize& size = wxDefaultSize, long style = 0, | |
27 | const wxValidator& validator = wxDefaultValidator, | |
28 | const wxString& name = wxCheckBoxNameStr) | |
29 | { | |
30 | Create(parent, id, label, pos, size, style, validator, name); | |
31 | } | |
0dbd6262 | 32 | |
6e8e9b66 VZ |
33 | bool Create(wxWindow *parent, wxWindowID id, const wxString& label, |
34 | const wxPoint& pos = wxDefaultPosition, | |
35 | const wxSize& size = wxDefaultSize, long style = 0, | |
36 | const wxValidator& validator = wxDefaultValidator, | |
37 | const wxString& name = wxCheckBoxNameStr); | |
38 | virtual void SetValue(bool); | |
39 | virtual bool GetValue() const; | |
8941fa88 VZ |
40 | |
41 | void DoSet3StateValue(wxCheckBoxState val); | |
42 | virtual wxCheckBoxState DoGet3StateValue() const; | |
43 | ||
69b85ca4 | 44 | virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool mouseStillDown ); |
6e8e9b66 | 45 | virtual void Command(wxCommandEvent& event); |
0dbd6262 | 46 | |
6e8e9b66 | 47 | DECLARE_DYNAMIC_CLASS(wxCheckBox) |
0dbd6262 SC |
48 | }; |
49 | ||
6e8e9b66 | 50 | class WXDLLEXPORT wxBitmap; |
0dbd6262 SC |
51 | class WXDLLEXPORT wxBitmapCheckBox: public wxCheckBox |
52 | { | |
7ee31b00 | 53 | public: |
6e8e9b66 VZ |
54 | int checkWidth; |
55 | int checkHeight; | |
0dbd6262 | 56 | |
7ee31b00 GD |
57 | wxBitmapCheckBox() |
58 | : checkWidth(-1), checkHeight(-1) | |
59 | { } | |
0dbd6262 | 60 | |
6e8e9b66 VZ |
61 | wxBitmapCheckBox(wxWindow *parent, wxWindowID id, const wxBitmap *label, |
62 | const wxPoint& pos = wxDefaultPosition, | |
63 | const wxSize& size = wxDefaultSize, long style = 0, | |
64 | const wxValidator& validator = wxDefaultValidator, | |
65 | const wxString& name = wxCheckBoxNameStr) | |
66 | { | |
67 | Create(parent, id, label, pos, size, style, validator, name); | |
68 | } | |
69 | ||
70 | bool Create(wxWindow *parent, wxWindowID id, const wxBitmap *bitmap, | |
71 | const wxPoint& pos = wxDefaultPosition, | |
72 | const wxSize& size = wxDefaultSize, long style = 0, | |
73 | const wxValidator& validator = wxDefaultValidator, | |
74 | const wxString& name = wxCheckBoxNameStr); | |
75 | virtual void SetValue(bool); | |
76 | virtual bool GetValue() const; | |
77 | virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
78 | virtual void SetLabel(const wxBitmap *bitmap); | |
79 | virtual void SetLabel( const wxString & WXUNUSED(name) ) {} | |
80 | ||
81 | DECLARE_DYNAMIC_CLASS(wxBitmapCheckBox) | |
0dbd6262 SC |
82 | }; |
83 | #endif | |
84 | // _WX_CHECKBOX_H_ |