]> git.saurik.com Git - wxWidgets.git/blame - src/os2/control.cpp
placeholder
[wxWidgets.git] / src / os2 / control.cpp
CommitLineData
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$
6aa89a22 8// Copyright: (c) Julian Smart
45fcbf3b 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"
6eb280e9 24#include "wx/log.h"
45fcbf3b 25#endif
86de7616 26#include "wx/os2/private.h"
0e320a79
DW
27#include "wx/control.h"
28
0e320a79
DW
29IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
30
31BEGIN_EVENT_TABLE(wxControl, wxWindow)
45fcbf3b 32 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground)
0e320a79 33END_EVENT_TABLE()
0e320a79
DW
34
35// Item members
36wxControl::wxControl()
37{
c9cb56f7
DW
38} // end of wxControl::wxControl
39
40bool wxControl::Create(
41 wxWindow* pParent
42, wxWindowID vId
43, const wxPoint& rPos
44, const wxSize& rSize
45, long lStyle
c9cb56f7 46, const wxValidator& rValidator
c9cb56f7
DW
47, const wxString& rsName
48)
3d62dcb6 49{
c9cb56f7
DW
50 bool bRval = wxWindow::Create( pParent
51 ,vId
52 ,rPos
53 ,rSize
54 ,lStyle
55 ,rsName
56 );
57 if (bRval)
58 {
3d62dcb6 59#if wxUSE_VALIDATORS
c9cb56f7 60 SetValidator(rValidator);
3d62dcb6
DW
61#endif
62 }
c9cb56f7
DW
63 return bRval;
64} // end of wxControl::Create
3d62dcb6 65
0e320a79
DW
66wxControl::~wxControl()
67{
45fcbf3b 68 m_isBeingDeleted = TRUE;
0e320a79
DW
69}
70
0cf6acbf 71bool wxControl::OS2CreateControl(
b9b1d6c8
DW
72 const wxChar* zClassname
73, const wxString& rsLabel
0cf6acbf
DW
74, const wxPoint& rPos
75, const wxSize& rSize
76, long lStyle
0cf6acbf
DW
77)
78{
b9b1d6c8
DW
79 WXDWORD dwExstyle;
80 WXDWORD dwStyle = OS2GetStyle( lStyle
81 ,&dwExstyle
82 );
83
84 return OS2CreateControl( zClassname
85 ,dwStyle
86 ,rPos
87 ,rSize
88 ,rsLabel
89 ,dwExstyle
90 );
0cf6acbf
DW
91} // end of wxControl::OS2CreateControl
92
c9cb56f7
DW
93bool wxControl::OS2CreateControl(
94 const wxChar* zClassname
95, WXDWORD dwStyle
96, const wxPoint& rPos
97, const wxSize& rSize
98, const wxString& rsLabel
99, WXDWORD dwExstyle
100)
0e320a79 101{
c9cb56f7
DW
102 //
103 // Doesn't do anything at all under OS/2
104 //
105 if (dwExstyle == (WXDWORD)-1)
3d62dcb6 106 {
0093fe11
SN
107 dwExstyle = 0;
108 (void) OS2GetStyle(GetWindowStyle(), &dwExstyle);
3d62dcb6 109 }
b9b1d6c8
DW
110 //
111 // All controls should have these styles (wxWindows creates all controls
112 // visible by default)
113 //
cfcebdb1
DW
114 if (m_isShown )
115 dwStyle |= WS_VISIBLE;
3d62dcb6 116
5d44b24e
DW
117 wxWindow* pParent = GetParent();
118 PSZ zClass;
45fcbf3b 119
5d44b24e 120 if (!pParent)
45fcbf3b 121 return FALSE;
0cf6acbf
DW
122
123 if ((strcmp(zClassname, "COMBOBOX")) == 0)
124 zClass = WC_COMBOBOX;
3c299c3a
DW
125 else if ((strcmp(zClassname, "STATIC")) == 0)
126 zClass = WC_STATIC;
1b086de1
DW
127 else if ((strcmp(zClassname, "BUTTON")) == 0)
128 zClass = WC_BUTTON;
f289196b
DW
129 else if ((strcmp(zClassname, "NOTEBOOK")) == 0)
130 zClass = WC_NOTEBOOK;
4fd899b6
DW
131 else if ((strcmp(zClassname, "CONTAINER")) == 0)
132 zClass = WC_CONTAINER;
c9cb56f7 133 dwStyle |= WS_VISIBLE;
5d44b24e 134
5d44b24e
DW
135 m_hWnd = (WXHWND)::WinCreateWindow( (HWND)GetHwndOf(pParent) // Parent window handle
136 ,(PSZ)zClass // Window class
137 ,(PSZ)rsLabel.c_str() // Initial Text
138 ,(ULONG)dwStyle // Style flags
139 ,(LONG)0 // X pos of origin
140 ,(LONG)0 // Y pos of origin
141 ,(LONG)0 // control width
142 ,(LONG)0 // control height
143 ,(HWND)GetHwndOf(pParent) // owner window handle (same as parent
144 ,HWND_TOP // initial z position
145 ,(ULONG)GetId() // Window identifier
146 ,NULL // no control data
147 ,NULL // no Presentation parameters
c9cb56f7
DW
148 );
149
5d44b24e
DW
150 if ( !m_hWnd )
151 {
152#ifdef __WXDEBUG__
153 wxLogError(wxT("Failed to create a control of class '%s'"), zClassname);
154#endif // DEBUG
155
156 return FALSE;
157 }
c9cb56f7
DW
158 //
159 // Subclass again for purposes of dialog editing mode
160 //
45fcbf3b
DW
161 SubclassWin(m_hWnd);
162
c9cb56f7
DW
163 //
164 // Controls use the same font and colours as their parent dialog by default
165 //
45fcbf3b 166 InheritAttributes();
70a2c656
DW
167 SetXComp(0);
168 SetYComp(0);
f289196b
DW
169 SetSize( rPos.x
170 ,rPos.y
171 ,rSize.x
172 ,rSize.y
173 );
45fcbf3b 174 return TRUE;
c9cb56f7 175} // end of wxControl::OS2CreateControl
0e320a79 176
e78c4d50 177wxSize wxControl::DoGetBestSize() const
0e320a79 178{
45fcbf3b 179 return wxSize(DEFAULT_ITEM_WIDTH, DEFAULT_ITEM_HEIGHT);
c9cb56f7 180} // end of wxControl::DoGetBestSize
0e320a79 181
45fcbf3b 182bool wxControl::ProcessCommand(wxCommandEvent& event)
0e320a79 183{
45fcbf3b
DW
184 return GetEventHandler()->ProcessEvent(event);
185}
186
c9cb56f7
DW
187WXHBRUSH wxControl::OnCtlColor(
188 WXHDC hWxDC
189, WXHWND hWnd
190, WXUINT uCtlColor
191, WXUINT uMessage
192, WXWPARAM wParam
193, WXLPARAM lParam
194)
45fcbf3b 195{
c9cb56f7
DW
196 HPS hPS = (HPS)hWxDC; // pass in a PS handle in OS/2
197 wxColour vColFore = GetForegroundColour();
198 wxColour vColBack = GetBackgroundColour();
45fcbf3b 199
c9cb56f7
DW
200 if (GetParent()->GetTransparentBackground())
201 ::GpiSetBackMix(hPS, BM_LEAVEALONE);
202 else
203 ::GpiSetBackMix(hPS, BM_OVERPAINT);
45fcbf3b 204
c9cb56f7
DW
205 ::GpiSetBackColor(hPS, vColBack.GetPixel());
206 ::GpiSetColor(hPS, vColFore.GetPixel());
45fcbf3b 207
c9cb56f7
DW
208 wxBrush* pBrush = wxTheBrushList->FindOrCreateBrush( vColBack
209 ,wxSOLID
210 );
211 return (WXHBRUSH)pBrush->GetResourceHandle();
212} // end of wxControl::OnCtlColor
0e320a79 213
c9cb56f7
DW
214void wxControl::OnEraseBackground(
215 wxEraseEvent& rEvent
216)
45fcbf3b 217{
c9cb56f7
DW
218 RECTL vRect;
219 HPS hPS = rEvent.GetDC()->GetHPS();
220 SIZEL vSize = {0,0};
221
222 ::GpiSetPS(hPS, &vSize, PU_PELS | GPIF_DEFAULT);
223 ::WinQueryWindowRect((HWND)GetHwnd(), &vRect);
224 ::WinFillRect(hPS, &vRect, GetBackgroundColour().GetPixel());
225} // end of wxControl::OnEraseBackground
226
b9b1d6c8
DW
227WXDWORD wxControl::OS2GetStyle(
228 long lStyle
229, WXDWORD* pdwExstyle
c9cb56f7 230) const
45fcbf3b 231{
b9b1d6c8
DW
232 long dwStyle = wxWindow::OS2GetStyle( lStyle
233 ,pdwExstyle
234 );
45fcbf3b 235
b9b1d6c8
DW
236 if (AcceptsFocus())
237 {
238 dwStyle |= WS_TABSTOP;
239 }
240 return dwStyle;
241} // end of wxControl::OS2GetStyle
45fcbf3b 242
d37bb826
SN
243void wxControl::SetLabel(
244 const wxString& rsLabel
245)
246{
247 wxString sLabel = ::wxPMTextToLabel(rsLabel);
248
249 ::WinSetWindowText(GetHwnd(), sLabel.c_str());
250} // end of wxControl::SetLabel
251
45fcbf3b
DW
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
261void 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