]> git.saurik.com Git - wxWidgets.git/blame - src/msw/control.cpp
an assert added to check that we're not doing something stupid
[wxWidgets.git] / src / msw / control.cpp
CommitLineData
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
38IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
39
40BEGIN_EVENT_TABLE(wxControl, wxWindow)
a23fd0e1 41 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground)
2bda0e17
KB
42END_EVENT_TABLE()
43#endif
44
45// Item members
42e69d6b 46wxControl::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 56wxControl::~wxControl()
2bda0e17 57{
42e69d6b 58 m_isBeingDeleted = TRUE;
2bda0e17
KB
59}
60
42e69d6b 61bool wxControl::ProcessCommand(wxCommandEvent& event)
2bda0e17 62{
42e69d6b
VZ
63#if WXWIN_COMPATIBILITY
64 if ( m_callback )
65 {
66 (void)(*m_callback)(this, event);
2bda0e17 67
42e69d6b
VZ
68 return TRUE;
69 }
70 else
71#endif // WXWIN_COMPATIBILITY
2bda0e17 72
42e69d6b 73 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
74}
75
a23fd0e1
VZ
76#ifdef __WIN95__
77bool wxControl::MSWOnNotify(int idCtrl,
78 WXLPARAM lParam,
79 WXLPARAM* result)
2bda0e17 80{
a23fd0e1
VZ
81 wxCommandEvent event(wxEVT_NULL, m_windowId);
82 wxEventType eventType = wxEVT_NULL;
83 NMHDR *hdr1 = (NMHDR*) lParam;
84 switch ( hdr1->code )
85 {
86 case NM_CLICK:
87 eventType = wxEVT_COMMAND_LEFT_CLICK;
88 break;
2bda0e17 89
a23fd0e1
VZ
90 case NM_DBLCLK:
91 eventType = wxEVT_COMMAND_LEFT_DCLICK;
92 break;
2bda0e17 93
a23fd0e1
VZ
94 case NM_RCLICK:
95 eventType = wxEVT_COMMAND_RIGHT_CLICK;
96 break;
2bda0e17 97
a23fd0e1
VZ
98 case NM_RDBLCLK:
99 eventType = wxEVT_COMMAND_RIGHT_DCLICK;
100 break;
2bda0e17 101
a23fd0e1
VZ
102 case NM_SETFOCUS:
103 eventType = wxEVT_COMMAND_SET_FOCUS;
104 break;
debe6624 105
a23fd0e1
VZ
106 case NM_KILLFOCUS:
107 eventType = wxEVT_COMMAND_KILL_FOCUS;
108 break;
2bda0e17 109
a23fd0e1
VZ
110 case NM_RETURN:
111 eventType = wxEVT_COMMAND_ENTER;
112 break;
113
114 default:
115 return wxWindow::MSWOnNotify(idCtrl, lParam, result);
116 }
fd3f686c 117
2bda0e17 118 event.SetEventType(eventType);
a23fd0e1 119 event.SetEventObject(this);
2bda0e17 120
a23fd0e1 121 return GetEventHandler()->ProcessEvent(event);
2bda0e17 122}
a23fd0e1 123#endif // Win95
2bda0e17 124
2bda0e17
KB
125void wxControl::OnEraseBackground(wxEraseEvent& event)
126{
42e69d6b
VZ
127 // In general, you don't want to erase the background of a control,
128 // or you'll get a flicker.
129 // TODO: move this 'null' function into each control that
130 // might flicker.
131
132 RECT rect;
133 ::GetClientRect((HWND) GetHWND(), &rect);
134
135 HBRUSH hBrush = ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(),
136 GetBackgroundColour().Green(),
137 GetBackgroundColour().Blue()));
138 int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT);
139
140 ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush);
141 ::DeleteObject(hBrush);
142 ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode);
2bda0e17
KB
143}
144
42e69d6b
VZ
145// ---------------------------------------------------------------------------
146// global functions
147// ---------------------------------------------------------------------------
2bda0e17 148
42e69d6b
VZ
149// Call this repeatedly for several wnds to find the overall size
150// of the widget.
151// Call it initially with -1 for all values in rect.
152// Keep calling for other widgets, and rect will be modified
153// to calculate largest bounding rectangle.
154void wxFindMaxSize(WXHWND wnd, RECT *rect)
2bda0e17 155{
42e69d6b
VZ
156 int left = rect->left;
157 int right = rect->right;
158 int top = rect->top;
159 int bottom = rect->bottom;
2bda0e17 160
42e69d6b 161 GetWindowRect((HWND) wnd, rect);
2bda0e17 162
42e69d6b
VZ
163 if (left < 0)
164 return;
2bda0e17 165
42e69d6b
VZ
166 if (left < rect->left)
167 rect->left = left;
2bda0e17 168
42e69d6b
VZ
169 if (right > rect->right)
170 rect->right = right;
2bda0e17 171
42e69d6b
VZ
172 if (top < rect->top)
173 rect->top = top;
2bda0e17 174
42e69d6b
VZ
175 if (bottom > rect->bottom)
176 rect->bottom = bottom;
2bda0e17
KB
177}
178