]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: control.cpp | |
3 | // Purpose: wxControl class | |
45fcbf3b | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
45fcbf3b | 6 | // Created: 09/17/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
45fcbf3b DW |
8 | // Copyright: (c) Julian Smart and Markus Holzem |
9 | // Licence: wxWindows licence | |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "control.h" | |
14 | #endif | |
15 | ||
45fcbf3b DW |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifndef WX_PRECOMP | |
20 | #include "wx/event.h" | |
21 | #include "wx/app.h" | |
22 | #include "wx/dcclient.h" | |
a4a16252 | 23 | #include "wx/scrolwin.h" |
45fcbf3b | 24 | #endif |
86de7616 | 25 | #include "wx/os2/private.h" |
0e320a79 DW |
26 | #include "wx/control.h" |
27 | ||
0e320a79 DW |
28 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) |
29 | ||
30 | BEGIN_EVENT_TABLE(wxControl, wxWindow) | |
45fcbf3b | 31 | EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground) |
0e320a79 | 32 | END_EVENT_TABLE() |
0e320a79 DW |
33 | |
34 | // Item members | |
35 | wxControl::wxControl() | |
36 | { | |
45fcbf3b DW |
37 | |
38 | #if WXWIN_COMPATIBILITY | |
39 | m_callback = 0; | |
40 | #endif // WXWIN_COMPATIBILITY | |
c9cb56f7 DW |
41 | } // end of wxControl::wxControl |
42 | ||
43 | bool wxControl::Create( | |
44 | wxWindow* pParent | |
45 | , wxWindowID vId | |
46 | , const wxPoint& rPos | |
47 | , const wxSize& rSize | |
48 | , long lStyle | |
3d62dcb6 | 49 | #if wxUSE_VALIDATORS |
c9cb56f7 | 50 | , const wxValidator& rValidator |
3d62dcb6 | 51 | #endif |
c9cb56f7 DW |
52 | , const wxString& rsName |
53 | ) | |
3d62dcb6 | 54 | { |
c9cb56f7 DW |
55 | bool bRval = wxWindow::Create( pParent |
56 | ,vId | |
57 | ,rPos | |
58 | ,rSize | |
59 | ,lStyle | |
60 | ,rsName | |
61 | ); | |
62 | if (bRval) | |
63 | { | |
3d62dcb6 | 64 | #if wxUSE_VALIDATORS |
c9cb56f7 | 65 | SetValidator(rValidator); |
3d62dcb6 DW |
66 | #endif |
67 | } | |
c9cb56f7 DW |
68 | return bRval; |
69 | } // end of wxControl::Create | |
3d62dcb6 | 70 | |
0e320a79 DW |
71 | wxControl::~wxControl() |
72 | { | |
45fcbf3b | 73 | m_isBeingDeleted = TRUE; |
0e320a79 DW |
74 | } |
75 | ||
0cf6acbf DW |
76 | bool wxControl::OS2CreateControl( |
77 | wxWindow* pParent | |
78 | , wxWindowID vId | |
79 | , const wxPoint& rPos | |
80 | , const wxSize& rSize | |
81 | , long lStyle | |
82 | #if wxUSE_VALIDATORS | |
83 | , const wxValidator& rValidator | |
84 | #endif | |
85 | , const wxString& rsName | |
86 | ) | |
87 | { | |
88 | // | |
89 | // Even if it's possible to create controls without parents in some port, | |
90 | // it should surely be discouraged because it doesn't work at all under | |
91 | // Windows | |
92 | // | |
93 | if (!CreateBase( pParent | |
94 | ,vId | |
95 | ,rPos | |
96 | ,rSize | |
97 | ,lStyle | |
98 | #if wxUSE_VALIDATORS | |
99 | ,rValidator | |
100 | #endif | |
101 | ,rsName | |
102 | )) | |
103 | return FALSE; | |
104 | pParent->AddChild(this); | |
105 | return TRUE; | |
106 | } // end of wxControl::OS2CreateControl | |
107 | ||
c9cb56f7 DW |
108 | bool wxControl::OS2CreateControl( |
109 | const wxChar* zClassname | |
110 | , WXDWORD dwStyle | |
111 | , const wxPoint& rPos | |
112 | , const wxSize& rSize | |
113 | , const wxString& rsLabel | |
114 | , WXDWORD dwExstyle | |
115 | ) | |
0e320a79 | 116 | { |
5d44b24e DW |
117 | int nX = rPos.x == -1 ? 0 : rPos.x; |
118 | int nY = rPos.y == -1 ? 0 : rPos.y; | |
119 | int nW = rSize.x == -1 ? 0 : rSize.x; | |
120 | int nH = rSize.y == -1 ? 0 : rSize.y; | |
c9cb56f7 DW |
121 | // |
122 | // Doesn't do anything at all under OS/2 | |
123 | // | |
124 | if (dwExstyle == (WXDWORD)-1) | |
3d62dcb6 | 125 | { |
c9cb56f7 | 126 | dwExstyle = GetExStyle(dwStyle); |
3d62dcb6 DW |
127 | } |
128 | ||
5d44b24e DW |
129 | wxWindow* pParent = GetParent(); |
130 | PSZ zClass; | |
45fcbf3b | 131 | |
5d44b24e | 132 | if (!pParent) |
45fcbf3b | 133 | return FALSE; |
0cf6acbf DW |
134 | |
135 | if ((strcmp(zClassname, "COMBOBOX")) == 0) | |
136 | zClass = WC_COMBOBOX; | |
3c299c3a DW |
137 | else if ((strcmp(zClassname, "STATIC")) == 0) |
138 | zClass = WC_STATIC; | |
1b086de1 DW |
139 | else if ((strcmp(zClassname, "BUTTON")) == 0) |
140 | zClass = WC_BUTTON; | |
c9cb56f7 | 141 | dwStyle |= WS_VISIBLE; |
5d44b24e | 142 | |
5d44b24e DW |
143 | m_hWnd = (WXHWND)::WinCreateWindow( (HWND)GetHwndOf(pParent) // Parent window handle |
144 | ,(PSZ)zClass // Window class | |
145 | ,(PSZ)rsLabel.c_str() // Initial Text | |
146 | ,(ULONG)dwStyle // Style flags | |
147 | ,(LONG)0 // X pos of origin | |
148 | ,(LONG)0 // Y pos of origin | |
149 | ,(LONG)0 // control width | |
150 | ,(LONG)0 // control height | |
151 | ,(HWND)GetHwndOf(pParent) // owner window handle (same as parent | |
152 | ,HWND_TOP // initial z position | |
153 | ,(ULONG)GetId() // Window identifier | |
154 | ,NULL // no control data | |
155 | ,NULL // no Presentation parameters | |
c9cb56f7 DW |
156 | ); |
157 | ||
5d44b24e DW |
158 | if ( !m_hWnd ) |
159 | { | |
160 | #ifdef __WXDEBUG__ | |
161 | wxLogError(wxT("Failed to create a control of class '%s'"), zClassname); | |
162 | #endif // DEBUG | |
163 | ||
164 | return FALSE; | |
165 | } | |
c9cb56f7 DW |
166 | // |
167 | // Subclass again for purposes of dialog editing mode | |
168 | // | |
45fcbf3b DW |
169 | SubclassWin(m_hWnd); |
170 | ||
c9cb56f7 DW |
171 | // |
172 | // Controls use the same font and colours as their parent dialog by default | |
173 | // | |
45fcbf3b | 174 | InheritAttributes(); |
5d44b24e DW |
175 | if (nW == 0 || nH == 0) |
176 | SetBestSize(rSize); | |
45fcbf3b | 177 | return TRUE; |
c9cb56f7 | 178 | } // end of wxControl::OS2CreateControl |
0e320a79 | 179 | |
e78c4d50 | 180 | wxSize wxControl::DoGetBestSize() const |
0e320a79 | 181 | { |
45fcbf3b | 182 | return wxSize(DEFAULT_ITEM_WIDTH, DEFAULT_ITEM_HEIGHT); |
c9cb56f7 | 183 | } // end of wxControl::DoGetBestSize |
0e320a79 | 184 | |
45fcbf3b | 185 | bool wxControl::ProcessCommand(wxCommandEvent& event) |
0e320a79 | 186 | { |
45fcbf3b DW |
187 | #if WXWIN_COMPATIBILITY |
188 | if ( m_callback ) | |
0e320a79 | 189 | { |
45fcbf3b DW |
190 | (void)(*m_callback)(this, event); |
191 | ||
192 | return TRUE; | |
0e320a79 DW |
193 | } |
194 | else | |
45fcbf3b DW |
195 | #endif // WXWIN_COMPATIBILITY |
196 | ||
197 | return GetEventHandler()->ProcessEvent(event); | |
198 | } | |
199 | ||
c9cb56f7 DW |
200 | WXHBRUSH wxControl::OnCtlColor( |
201 | WXHDC hWxDC | |
202 | , WXHWND hWnd | |
203 | , WXUINT uCtlColor | |
204 | , WXUINT uMessage | |
205 | , WXWPARAM wParam | |
206 | , WXLPARAM lParam | |
207 | ) | |
45fcbf3b | 208 | { |
c9cb56f7 DW |
209 | HPS hPS = (HPS)hWxDC; // pass in a PS handle in OS/2 |
210 | wxColour vColFore = GetForegroundColour(); | |
211 | wxColour vColBack = GetBackgroundColour(); | |
45fcbf3b | 212 | |
c9cb56f7 DW |
213 | if (GetParent()->GetTransparentBackground()) |
214 | ::GpiSetBackMix(hPS, BM_LEAVEALONE); | |
215 | else | |
216 | ::GpiSetBackMix(hPS, BM_OVERPAINT); | |
45fcbf3b | 217 | |
c9cb56f7 DW |
218 | ::GpiSetBackColor(hPS, vColBack.GetPixel()); |
219 | ::GpiSetColor(hPS, vColFore.GetPixel()); | |
45fcbf3b | 220 | |
c9cb56f7 DW |
221 | wxBrush* pBrush = wxTheBrushList->FindOrCreateBrush( vColBack |
222 | ,wxSOLID | |
223 | ); | |
224 | return (WXHBRUSH)pBrush->GetResourceHandle(); | |
225 | } // end of wxControl::OnCtlColor | |
0e320a79 | 226 | |
c9cb56f7 DW |
227 | void wxControl::OnEraseBackground( |
228 | wxEraseEvent& rEvent | |
229 | ) | |
45fcbf3b | 230 | { |
c9cb56f7 DW |
231 | RECTL vRect; |
232 | HPS hPS = rEvent.GetDC()->GetHPS(); | |
233 | SIZEL vSize = {0,0}; | |
234 | ||
235 | ::GpiSetPS(hPS, &vSize, PU_PELS | GPIF_DEFAULT); | |
236 | ::WinQueryWindowRect((HWND)GetHwnd(), &vRect); | |
237 | ::WinFillRect(hPS, &vRect, GetBackgroundColour().GetPixel()); | |
238 | } // end of wxControl::OnEraseBackground | |
239 | ||
240 | WXDWORD wxControl::GetExStyle( | |
241 | WXDWORD& rStyle | |
242 | ) const | |
45fcbf3b | 243 | { |
c9cb56f7 DW |
244 | // |
245 | // Meaningless under OS/2, just return what was sent | |
246 | // | |
247 | WXDWORD exStyle = rStyle; | |
45fcbf3b DW |
248 | |
249 | return exStyle; | |
c9cb56f7 | 250 | } // end of wxControl::GetExStyle |
45fcbf3b DW |
251 | |
252 | // --------------------------------------------------------------------------- | |
253 | // global functions | |
254 | // --------------------------------------------------------------------------- | |
255 | ||
256 | // Call this repeatedly for several wnds to find the overall size | |
257 | // of the widget. | |
258 | // Call it initially with -1 for all values in rect. | |
259 | // Keep calling for other widgets, and rect will be modified | |
260 | // to calculate largest bounding rectangle. | |
c9cb56f7 DW |
261 | void wxFindMaxSize( |
262 | WXHWND hWnd | |
263 | , RECT* pRect | |
264 | ) | |
0e320a79 | 265 | { |
c9cb56f7 DW |
266 | int nLeft = pRect->xLeft; |
267 | int nRight = pRect->xRight; | |
268 | int nTop = pRect->yTop; | |
269 | int nBottom = pRect->yBottom; | |
0e320a79 | 270 | |
c9cb56f7 | 271 | ::WinQueryWindowRect((HWND)hWnd, pRect); |
0e320a79 | 272 | |
c9cb56f7 | 273 | if (nLeft < 0) |
45fcbf3b | 274 | return; |
0e320a79 | 275 | |
c9cb56f7 DW |
276 | if (nLeft < pRect->xLeft) |
277 | pRect->xLeft = nLeft; | |
0e320a79 | 278 | |
c9cb56f7 DW |
279 | if (nRight > pRect->xRight) |
280 | pRect->xRight = nRight; | |
0e320a79 | 281 | |
c9cb56f7 DW |
282 | if (nTop < pRect->yTop) |
283 | pRect->yTop = nTop; | |
284 | ||
285 | if (nBottom > pRect->yBottom) | |
286 | pRect->yBottom = nBottom; | |
287 | } // end of wxFindMaxSize | |
0e320a79 | 288 | |
0e320a79 | 289 |