]> git.saurik.com Git - wxWidgets.git/blob - src/msw/control.cpp
1. DoSetSize() simplified, DoGetBestSize() introduced
[wxWidgets.git] / src / msw / control.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: control.cpp
3 // Purpose: wxControl class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "control.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/event.h"
25 #include "wx/app.h"
26 #include "wx/dcclient.h"
27 #endif
28
29 #include "wx/control.h"
30
31 #include "wx/msw/private.h"
32
33 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
34 #include <commctrl.h>
35 #endif
36
37 #if !USE_SHARED_LIBRARY
38 IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
39
40 BEGIN_EVENT_TABLE(wxControl, wxWindow)
41 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground)
42 END_EVENT_TABLE()
43 #endif
44
45 // Item members
46 wxControl::wxControl()
47 {
48 m_backgroundColour = *wxWHITE;
49 m_foregroundColour = *wxBLACK;
50
51 #if WXWIN_COMPATIBILITY
52 m_callback = 0;
53 #endif // WXWIN_COMPATIBILITY
54 }
55
56 wxControl::~wxControl()
57 {
58 m_isBeingDeleted = TRUE;
59 }
60
61 wxSize wxControl::DoGetBestSize()
62 {
63 return wxSize(DEFAULT_ITEM_WIDTH, DEFAULT_ITEM_HEIGHT);
64 }
65
66 bool wxControl::ProcessCommand(wxCommandEvent& event)
67 {
68 #if WXWIN_COMPATIBILITY
69 if ( m_callback )
70 {
71 (void)(*m_callback)(this, event);
72
73 return TRUE;
74 }
75 else
76 #endif // WXWIN_COMPATIBILITY
77
78 return GetEventHandler()->ProcessEvent(event);
79 }
80
81 #ifdef __WIN95__
82 bool wxControl::MSWOnNotify(int idCtrl,
83 WXLPARAM lParam,
84 WXLPARAM* result)
85 {
86 wxCommandEvent event(wxEVT_NULL, m_windowId);
87 wxEventType eventType = wxEVT_NULL;
88 NMHDR *hdr1 = (NMHDR*) lParam;
89 switch ( hdr1->code )
90 {
91 case NM_CLICK:
92 eventType = wxEVT_COMMAND_LEFT_CLICK;
93 break;
94
95 case NM_DBLCLK:
96 eventType = wxEVT_COMMAND_LEFT_DCLICK;
97 break;
98
99 case NM_RCLICK:
100 eventType = wxEVT_COMMAND_RIGHT_CLICK;
101 break;
102
103 case NM_RDBLCLK:
104 eventType = wxEVT_COMMAND_RIGHT_DCLICK;
105 break;
106
107 case NM_SETFOCUS:
108 eventType = wxEVT_COMMAND_SET_FOCUS;
109 break;
110
111 case NM_KILLFOCUS:
112 eventType = wxEVT_COMMAND_KILL_FOCUS;
113 break;
114
115 case NM_RETURN:
116 eventType = wxEVT_COMMAND_ENTER;
117 break;
118
119 default:
120 return wxWindow::MSWOnNotify(idCtrl, lParam, result);
121 }
122
123 event.SetEventType(eventType);
124 event.SetEventObject(this);
125
126 return GetEventHandler()->ProcessEvent(event);
127 }
128 #endif // Win95
129
130 void wxControl::OnEraseBackground(wxEraseEvent& event)
131 {
132 // In general, you don't want to erase the background of a control,
133 // or you'll get a flicker.
134 // TODO: move this 'null' function into each control that
135 // might flicker.
136
137 RECT rect;
138 ::GetClientRect((HWND) GetHWND(), &rect);
139
140 HBRUSH hBrush = ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(),
141 GetBackgroundColour().Green(),
142 GetBackgroundColour().Blue()));
143 int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT);
144
145 ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush);
146 ::DeleteObject(hBrush);
147 ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode);
148 }
149
150 // ---------------------------------------------------------------------------
151 // global functions
152 // ---------------------------------------------------------------------------
153
154 // Call this repeatedly for several wnds to find the overall size
155 // of the widget.
156 // Call it initially with -1 for all values in rect.
157 // Keep calling for other widgets, and rect will be modified
158 // to calculate largest bounding rectangle.
159 void wxFindMaxSize(WXHWND wnd, RECT *rect)
160 {
161 int left = rect->left;
162 int right = rect->right;
163 int top = rect->top;
164 int bottom = rect->bottom;
165
166 GetWindowRect((HWND) wnd, rect);
167
168 if (left < 0)
169 return;
170
171 if (left < rect->left)
172 rect->left = left;
173
174 if (right > rect->right)
175 rect->right = right;
176
177 if (top < rect->top)
178 rect->top = top;
179
180 if (bottom > rect->bottom)
181 rect->bottom = bottom;
182 }
183