]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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 | |
a23fd0e1 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
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 | |
2432b92d | 24 | #include "wx/event.h" |
2bda0e17 KB |
25 | #include "wx/app.h" |
26 | #include "wx/dcclient.h" | |
27 | #endif | |
28 | ||
2432b92d JS |
29 | #include "wx/control.h" |
30 | ||
2bda0e17 KB |
31 | #include "wx/msw/private.h" |
32 | ||
57c208c5 | 33 | #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) |
2bda0e17 KB |
34 | #include <commctrl.h> |
35 | #endif | |
36 | ||
2bda0e17 KB |
37 | #if !USE_SHARED_LIBRARY |
38 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) | |
39 | ||
40 | BEGIN_EVENT_TABLE(wxControl, wxWindow) | |
a23fd0e1 | 41 | EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground) |
2bda0e17 KB |
42 | END_EVENT_TABLE() |
43 | #endif | |
44 | ||
45 | // Item members | |
42e69d6b | 46 | wxControl::wxControl() |
2bda0e17 KB |
47 | { |
48 | m_backgroundColour = *wxWHITE; | |
49 | m_foregroundColour = *wxBLACK; | |
42e69d6b VZ |
50 | |
51 | #if WXWIN_COMPATIBILITY | |
2bda0e17 | 52 | m_callback = 0; |
42e69d6b | 53 | #endif // WXWIN_COMPATIBILITY |
2bda0e17 KB |
54 | } |
55 | ||
42e69d6b | 56 | wxControl::~wxControl() |
2bda0e17 | 57 | { |
42e69d6b | 58 | m_isBeingDeleted = TRUE; |
2bda0e17 | 59 | |
42e69d6b VZ |
60 | // If we delete an item, we should initialize the parent panel, |
61 | // because it could now be invalid. | |
62 | wxWindow *parent = (wxWindow *)GetParent(); | |
63 | if (parent) | |
9c331ded | 64 | { |
42e69d6b VZ |
65 | if (parent->GetDefaultItem() == (wxButton*) this) |
66 | parent->SetDefaultItem(NULL); | |
9c331ded | 67 | } |
2bda0e17 KB |
68 | } |
69 | ||
42e69d6b | 70 | bool wxControl::ProcessCommand(wxCommandEvent& event) |
2bda0e17 | 71 | { |
42e69d6b VZ |
72 | #if WXWIN_COMPATIBILITY |
73 | if ( m_callback ) | |
74 | { | |
75 | (void)(*m_callback)(this, event); | |
2bda0e17 | 76 | |
42e69d6b VZ |
77 | return TRUE; |
78 | } | |
79 | else | |
80 | #endif // WXWIN_COMPATIBILITY | |
2bda0e17 | 81 | |
42e69d6b | 82 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
83 | } |
84 | ||
a23fd0e1 VZ |
85 | #ifdef __WIN95__ |
86 | bool wxControl::MSWOnNotify(int idCtrl, | |
87 | WXLPARAM lParam, | |
88 | WXLPARAM* result) | |
2bda0e17 | 89 | { |
a23fd0e1 VZ |
90 | wxCommandEvent event(wxEVT_NULL, m_windowId); |
91 | wxEventType eventType = wxEVT_NULL; | |
92 | NMHDR *hdr1 = (NMHDR*) lParam; | |
93 | switch ( hdr1->code ) | |
94 | { | |
95 | case NM_CLICK: | |
96 | eventType = wxEVT_COMMAND_LEFT_CLICK; | |
97 | break; | |
2bda0e17 | 98 | |
a23fd0e1 VZ |
99 | case NM_DBLCLK: |
100 | eventType = wxEVT_COMMAND_LEFT_DCLICK; | |
101 | break; | |
2bda0e17 | 102 | |
a23fd0e1 VZ |
103 | case NM_RCLICK: |
104 | eventType = wxEVT_COMMAND_RIGHT_CLICK; | |
105 | break; | |
2bda0e17 | 106 | |
a23fd0e1 VZ |
107 | case NM_RDBLCLK: |
108 | eventType = wxEVT_COMMAND_RIGHT_DCLICK; | |
109 | break; | |
2bda0e17 | 110 | |
a23fd0e1 VZ |
111 | case NM_SETFOCUS: |
112 | eventType = wxEVT_COMMAND_SET_FOCUS; | |
113 | break; | |
debe6624 | 114 | |
a23fd0e1 VZ |
115 | case NM_KILLFOCUS: |
116 | eventType = wxEVT_COMMAND_KILL_FOCUS; | |
117 | break; | |
2bda0e17 | 118 | |
a23fd0e1 VZ |
119 | case NM_RETURN: |
120 | eventType = wxEVT_COMMAND_ENTER; | |
121 | break; | |
122 | ||
123 | default: | |
124 | return wxWindow::MSWOnNotify(idCtrl, lParam, result); | |
125 | } | |
fd3f686c | 126 | |
2bda0e17 | 127 | event.SetEventType(eventType); |
a23fd0e1 | 128 | event.SetEventObject(this); |
2bda0e17 | 129 | |
a23fd0e1 | 130 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 | 131 | } |
a23fd0e1 | 132 | #endif // Win95 |
2bda0e17 | 133 | |
2bda0e17 KB |
134 | void wxControl::OnEraseBackground(wxEraseEvent& event) |
135 | { | |
42e69d6b VZ |
136 | // In general, you don't want to erase the background of a control, |
137 | // or you'll get a flicker. | |
138 | // TODO: move this 'null' function into each control that | |
139 | // might flicker. | |
140 | ||
141 | RECT rect; | |
142 | ::GetClientRect((HWND) GetHWND(), &rect); | |
143 | ||
144 | HBRUSH hBrush = ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), | |
145 | GetBackgroundColour().Green(), | |
146 | GetBackgroundColour().Blue())); | |
147 | int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT); | |
148 | ||
149 | ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush); | |
150 | ::DeleteObject(hBrush); | |
151 | ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode); | |
2bda0e17 KB |
152 | } |
153 | ||
42e69d6b VZ |
154 | // --------------------------------------------------------------------------- |
155 | // global functions | |
156 | // --------------------------------------------------------------------------- | |
2bda0e17 | 157 | |
42e69d6b VZ |
158 | // Call this repeatedly for several wnds to find the overall size |
159 | // of the widget. | |
160 | // Call it initially with -1 for all values in rect. | |
161 | // Keep calling for other widgets, and rect will be modified | |
162 | // to calculate largest bounding rectangle. | |
163 | void wxFindMaxSize(WXHWND wnd, RECT *rect) | |
2bda0e17 | 164 | { |
42e69d6b VZ |
165 | int left = rect->left; |
166 | int right = rect->right; | |
167 | int top = rect->top; | |
168 | int bottom = rect->bottom; | |
2bda0e17 | 169 | |
42e69d6b | 170 | GetWindowRect((HWND) wnd, rect); |
2bda0e17 | 171 | |
42e69d6b VZ |
172 | if (left < 0) |
173 | return; | |
2bda0e17 | 174 | |
42e69d6b VZ |
175 | if (left < rect->left) |
176 | rect->left = left; | |
2bda0e17 | 177 | |
42e69d6b VZ |
178 | if (right > rect->right) |
179 | rect->right = right; | |
2bda0e17 | 180 | |
42e69d6b VZ |
181 | if (top < rect->top) |
182 | rect->top = top; | |
2bda0e17 | 183 | |
42e69d6b VZ |
184 | if (bottom > rect->bottom) |
185 | rect->bottom = bottom; | |
2bda0e17 KB |
186 | } |
187 |