]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/control.h
#undef Yield
[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
42e69d6b 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_CONTROL_H_
13#define _WX_CONTROL_H_
2bda0e17
KB
14
15#ifdef __GNUG__
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{
341c92a8
VZ
24 DECLARE_ABSTRACT_CLASS(wxControl)
25
2bda0e17 26public:
341c92a8 27 wxControl();
8d772832
RD
28 wxControl(wxWindow *parent, wxWindowID id,
29 const wxPoint& pos = wxDefaultPosition,
30 const wxSize& size = wxDefaultSize, long style = 0,
8d772832 31 const wxValidator& validator = wxDefaultValidator,
8d772832
RD
32 const wxString& name = wxControlNameStr)
33 {
34 Create(parent, id, pos, size, style, validator, name);
35 }
36
37 bool Create(wxWindow *parent, wxWindowID id,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize, long style = 0,
8d772832 40 const wxValidator& validator = wxDefaultValidator,
8d772832
RD
41 const wxString& name = wxControlNameStr);
42
43 virtual ~wxControl();
341c92a8 44
479cd5de
VZ
45 // Simulates an event
46 virtual void Command(wxCommandEvent& event) { ProcessCommand(event); }
8d99be5f 47
479cd5de
VZ
48 // implementation from now on
49 // --------------------------
2bda0e17 50
479cd5de
VZ
51 // Calls the callback and appropriate event handlers
52 bool ProcessCommand(wxCommandEvent& event);
2bda0e17 53
479cd5de 54 // MSW-specific
a23fd0e1 55#ifdef __WIN95__
479cd5de 56 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
a23fd0e1 57#endif // Win95
2bda0e17 58
479cd5de
VZ
59 // For ownerdraw items
60 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
61 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
2bda0e17 62
479cd5de 63 wxArrayLong GetSubcontrols() { return m_subControls; }
341c92a8 64
479cd5de 65 void OnEraseBackground(wxEraseEvent& event);
a23fd0e1 66
479cd5de
VZ
67 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
68 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
f048e32f 69
42e69d6b 70#if WXWIN_COMPATIBILITY
479cd5de
VZ
71 virtual void SetButtonColour(const wxColour& WXUNUSED(col)) { }
72 wxColour* GetButtonColour() const { return NULL; }
42e69d6b 73
479cd5de
VZ
74 inline virtual void SetLabelFont(const wxFont& font);
75 inline virtual void SetButtonFont(const wxFont& font);
76 inline wxFont& GetLabelFont() const;
77 inline wxFont& GetButtonFont() const;
42e69d6b 78
479cd5de
VZ
79 // Adds callback
80 inline void Callback(const wxFunction function);
42e69d6b 81
479cd5de 82 wxFunction GetCallback() { return m_callback; }
42e69d6b 83
2bda0e17 84protected:
479cd5de 85 wxFunction m_callback; // Callback associated with the window
42e69d6b
VZ
86#endif // WXWIN_COMPATIBILITY
87
88protected:
479cd5de
VZ
89 // for controls like radiobuttons which are really composite this array
90 // holds the ids (not HWNDs!) of the sub controls
91 wxArrayLong m_subControls;
92
93 virtual wxSize DoGetBestSize() const;
94
b225f659
VZ
95 // create the control of the given class with the given style (combination
96 // of WS_XXX flags, i.e. Windows style, not wxWindows one), returns
97 // FALSE if creation failed
479cd5de
VZ
98 //
99 // All parameters except classname and style are optional, if the
b225f659
VZ
100 // size/position are not given, they should be set later with SetSize()
101 // and, label (the title of the window), of course, is left empty. The
102 // extended style is determined from the style and the app 3D settings
103 // automatically if it's not specified explicitly.
479cd5de 104 bool MSWCreateControl(const wxChar *classname,
b225f659
VZ
105 WXDWORD style,
106 const wxPoint& pos = wxDefaultPosition,
107 const wxSize& size = wxDefaultSize,
108 const wxString& label = wxEmptyString,
109 WXDWORD exstyle = (WXDWORD)-1);
479cd5de
VZ
110
111 // determine the extended styles combination for this window (may slightly
112 // modify style parameter, this is why it's non const)
113 WXDWORD GetExStyle(WXDWORD& style, bool *want3D) const;
4438caf4 114
341c92a8 115private:
479cd5de 116 DECLARE_EVENT_TABLE()
2bda0e17
KB
117};
118
2bda0e17
KB
119
120#if WXWIN_COMPATIBILITY
42e69d6b 121 inline void wxControl::Callback(const wxFunction f) { m_callback = f; };
09b61d99
VZ
122 inline wxFont& wxControl::GetLabelFont() const { return (wxFont &)GetFont(); }
123 inline wxFont& wxControl::GetButtonFont() const { return (wxFont &)GetFont(); }
341c92a8
VZ
124 inline void wxControl::SetLabelFont(const wxFont& font) { SetFont(font); }
125 inline void wxControl::SetButtonFont(const wxFont& font) { SetFont(font); }
42e69d6b 126#endif // WXWIN_COMPATIBILITY
2bda0e17
KB
127
128#endif
bbcdf8bc 129 // _WX_CONTROL_H_