]> git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/control.h
wxButton, wxCheckBox, wxSlider, wxToggleButton native implementations for PalmOS.
[wxWidgets.git] / include / wx / palmos / control.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/control.h
3 // Purpose: wxControl class
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native implementation
6 // Created: 10/13/04
7 // RCS-ID: $Id$
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CONTROL_H_
13 #define _WX_CONTROL_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "control.h"
17 #endif
18
19 #include "wx/dynarray.h"
20
21 // General item class
22 class WXDLLEXPORT wxControl : public wxControlBase
23 {
24 public:
25 wxControl() { }
26
27 wxControl(wxWindow *parent, wxWindowID id,
28 const wxPoint& pos = wxDefaultPosition,
29 const wxSize& size = wxDefaultSize, long style = 0,
30 const wxValidator& validator = wxDefaultValidator,
31 const wxString& name = wxControlNameStr)
32 {
33 Create(parent, id, pos, size, style, validator, name);
34 }
35
36 bool Create(wxWindow *parent, wxWindowID id,
37 const wxPoint& pos = wxDefaultPosition,
38 const wxSize& size = wxDefaultSize, long style = 0,
39 const wxValidator& validator = wxDefaultValidator,
40 const wxString& name = wxControlNameStr);
41
42 virtual ~wxControl();
43
44 // Simulates an event
45 virtual void Command(wxCommandEvent& event) { ProcessCommand(event); }
46
47 virtual bool Enable( bool enable = true );
48 virtual bool IsEnabled() const;
49
50 virtual bool Show( bool show = true );
51 virtual bool IsShown() const;
52
53 virtual void SetLabel(const wxString& label);
54 virtual wxString GetLabel();
55
56 // implementation from now on
57 // --------------------------
58
59 virtual wxVisualAttributes GetDefaultAttributes() const
60 {
61 return GetClassDefaultAttributes(GetWindowVariant());
62 }
63
64 static wxVisualAttributes
65 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
66
67 // Calls the callback and appropriate event handlers
68 bool ProcessCommand(wxCommandEvent& event);
69
70 const wxArrayLong& GetSubcontrols() const { return m_subControls; }
71
72 void OnEraseBackground(wxEraseEvent& event);
73
74 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
75 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
76
77 protected:
78 // choose the default border for this window
79 virtual wxBorder GetDefaultBorder() const;
80
81 // return default best size (doesn't really make any sense, override this)
82 virtual wxSize DoGetBestSize() const;
83
84 // create the control of the given ControlStyleType: this is typically called
85 // from Create() method of the derived class passing its label, pos and
86 // size parameter (style parameter is not needed because m_windowStyle is
87 // supposed to had been already set and so is used instead when this
88 // function is called)
89 bool PalmCreateControl(ControlStyleType style,
90 wxWindow *parent,
91 wxWindowID id,
92 const wxString& label,
93 const wxPoint& pos,
94 const wxSize& size);
95
96 // this is a helper for the derived class GetClassDefaultAttributes()
97 // implementation: it returns the right colours for the classes which
98 // contain something else (e.g. wxListBox, wxTextCtrl, ...) instead of
99 // being simple controls (such as wxButton, wxCheckBox, ...)
100 static wxVisualAttributes
101 GetCompositeControlsDefaultAttributes(wxWindowVariant variant);
102
103
104 // for controls like radiobuttons which are really composite this array
105 // holds the ids (not HWNDs!) of the sub controls
106 wxArrayLong m_subControls;
107
108 ControlType *m_control;
109
110 private:
111 DECLARE_DYNAMIC_CLASS_NO_COPY(wxControl)
112 DECLARE_EVENT_TABLE()
113 };
114
115 #endif
116 // _WX_CONTROL_H_