]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/control.h
removed wxUSE_PENWINDOWS (and its misspellings), it didn't work and wasn't used/defined
[wxWidgets.git] / include / wx / msw / control.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: control.h
3// Purpose: wxControl class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_CONTROL_H_
13#define _WX_CONTROL_H_
2bda0e17 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
341c92a8 16 #pragma interface "control.h"
2bda0e17
KB
17#endif
18
10a0bdb1
VZ
19#include "wx/dynarray.h"
20
2bda0e17 21// General item class
8d99be5f 22class WXDLLEXPORT wxControl : public wxControlBase
2bda0e17 23{
2bda0e17 24public:
34040e31
VZ
25 wxControl() { }
26
fc7a2a60
VZ
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)
8d772832
RD
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,
8d772832 39 const wxValidator& validator = wxDefaultValidator,
8d772832
RD
40 const wxString& name = wxControlNameStr);
41
42 virtual ~wxControl();
341c92a8 43
479cd5de
VZ
44 // Simulates an event
45 virtual void Command(wxCommandEvent& event) { ProcessCommand(event); }
8d99be5f 46
34040e31 47
479cd5de
VZ
48 // implementation from now on
49 // --------------------------
2bda0e17 50
34040e31
VZ
51 virtual wxVisualAttributes GetDefaultAttributes() const
52 {
53 return GetClassDefaultAttributes(GetWindowVariant());
54 }
55
56 static wxVisualAttributes
57 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
58
479cd5de
VZ
59 // Calls the callback and appropriate event handlers
60 bool ProcessCommand(wxCommandEvent& event);
2bda0e17 61
479cd5de 62 // MSW-specific
a23fd0e1 63#ifdef __WIN95__
479cd5de 64 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
a23fd0e1 65#endif // Win95
2bda0e17 66
479cd5de 67 // For ownerdraw items
4bf45c9e
WS
68 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *WXUNUSED(item)) { return false; };
69 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *WXUNUSED(item)) { return false; };
2bda0e17 70
bf25c88b 71 const wxArrayLong& GetSubcontrols() const { return m_subControls; }
341c92a8 72
c3732409
VZ
73 // default handling of WM_CTLCOLORxxx: this is public so that wxWindow
74 // could call it
2bae4332 75 virtual WXHBRUSH MSWControlColor(WXHDC pDC, WXHWND hWnd);
c3732409 76
42e69d6b 77protected:
65bc172c
VZ
78 // choose the default border for this window
79 virtual wxBorder GetDefaultBorder() const;
479cd5de 80
d41f7b20 81 // return default best size (doesn't really make any sense, override this)
479cd5de
VZ
82 virtual wxSize DoGetBestSize() const;
83
4bf45c9e
WS
84 // This is a helper for all wxControls made with UPDOWN native control.
85 // In wxMSW it was only wxSpinCtrl derived from wxSpinButton but in
86 // WinCE of Smartphones this happens also for native wxTextCtrl,
87 // wxChoice and others.
5aaabb37 88 virtual wxSize GetBestSpinnerSize(const bool is_vertical) const;
4bf45c9e 89
6dd16e4f
VZ
90 // create the control of the given Windows class: this is typically called
91 // from Create() method of the derived class passing its label, pos and
92 // size parameter (style parameter is not needed because m_windowStyle is
93 // supposed to had been already set and so is used instead when this
94 // function is called)
5b2f31eb
VZ
95 bool MSWCreateControl(const wxChar *classname,
96 const wxString& label,
97 const wxPoint& pos,
6dd16e4f 98 const wxSize& size);
5b2f31eb
VZ
99
100 // NB: the method below is deprecated now, with MSWGetStyle() the method
101 // above should be used instead! Once all the controls are updated to
102 // implement MSWGetStyle() this version will disappear.
103 //
b225f659 104 // create the control of the given class with the given style (combination
77ffb593 105 // of WS_XXX flags, i.e. Windows style, not wxWidgets one), returns
4bf45c9e 106 // false if creation failed
479cd5de
VZ
107 //
108 // All parameters except classname and style are optional, if the
b225f659
VZ
109 // size/position are not given, they should be set later with SetSize()
110 // and, label (the title of the window), of course, is left empty. The
111 // extended style is determined from the style and the app 3D settings
112 // automatically if it's not specified explicitly.
479cd5de 113 bool MSWCreateControl(const wxChar *classname,
b225f659
VZ
114 WXDWORD style,
115 const wxPoint& pos = wxDefaultPosition,
116 const wxSize& size = wxDefaultSize,
117 const wxString& label = wxEmptyString,
2eb4c3aa 118 WXDWORD exstyle = (WXDWORD)-1);
479cd5de 119
5b2f31eb
VZ
120 // default style for the control include WS_TABSTOP if it AcceptsFocus()
121 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
4438caf4 122
a8da30af 123 // call this from the derived class MSWControlColor() if you want to show
d1a47dfe 124 // the control greyed out (and opaque)
a8da30af
VZ
125 WXHBRUSH MSWControlColorDisabled(WXHDC pDC);
126
dd12ce22
VZ
127 // common part of the 3 functions above: pass wxNullColour to use the
128 // appropriate background colour (meaning ours or our parents) or a fixed
129 // one
2bae4332 130 virtual WXHBRUSH DoMSWControlColor(WXHDC pDC, wxColour colBg, WXHWND hWnd);
a8da30af 131
34040e31
VZ
132 // this is a helper for the derived class GetClassDefaultAttributes()
133 // implementation: it returns the right colours for the classes which
134 // contain something else (e.g. wxListBox, wxTextCtrl, ...) instead of
135 // being simple controls (such as wxButton, wxCheckBox, ...)
136 static wxVisualAttributes
137 GetCompositeControlsDefaultAttributes(wxWindowVariant variant);
138
65bc172c
VZ
139 // for controls like radiobuttons which are really composite this array
140 // holds the ids (not HWNDs!) of the sub controls
141 wxArrayLong m_subControls;
142
341c92a8 143private:
fc7a2a60 144 DECLARE_DYNAMIC_CLASS_NO_COPY(wxControl)
2bda0e17
KB
145};
146
4bf45c9e 147#endif // _WX_CONTROL_H_