]>
git.saurik.com Git - wxWidgets.git/blob - src/os2/control.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl class
4 // Author: David Webster
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "control.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
22 #include "wx/dcclient.h"
23 #include "wx/scrolwin.h"
25 #include "wx/os2/private.h"
26 #include "wx/control.h"
28 IMPLEMENT_ABSTRACT_CLASS(wxControl
, wxWindow
)
30 BEGIN_EVENT_TABLE(wxControl
, wxWindow
)
31 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground
)
35 wxControl::wxControl()
38 #if WXWIN_COMPATIBILITY
40 #endif // WXWIN_COMPATIBILITY
41 } // end of wxControl::wxControl
43 bool wxControl::Create(
50 , const wxValidator
& rValidator
52 , const wxString
& rsName
55 bool bRval
= wxWindow::Create( pParent
65 SetValidator(rValidator
);
69 } // end of wxControl::Create
71 wxControl::~wxControl()
73 m_isBeingDeleted
= TRUE
;
76 bool wxControl::OS2CreateControl(
83 , const wxValidator
& rValidator
85 , const wxString
& rsName
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
93 if (!CreateBase( pParent
104 pParent
->AddChild(this);
106 } // end of wxControl::OS2CreateControl
108 bool wxControl::OS2CreateControl(
109 const wxChar
* zClassname
111 , const wxPoint
& rPos
112 , const wxSize
& rSize
113 , const wxString
& rsLabel
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
;
122 // Doesn't do anything at all under OS/2
124 if (dwExstyle
== (WXDWORD
)-1)
126 dwExstyle
= GetExStyle(dwStyle
);
129 wxWindow
* pParent
= GetParent();
135 if ((strcmp(zClassname
, "COMBOBOX")) == 0)
136 zClass
= WC_COMBOBOX
;
137 else if ((strcmp(zClassname
, "STATIC")) == 0)
139 else if ((strcmp(zClassname
, "BUTTON")) == 0)
141 dwStyle
|= WS_VISIBLE
;
144 // If the parent is a scrolled window the controls must
145 // have this style or they will overlap the scrollbars
148 if (pParent
->IsKindOf(CLASSINFO(wxScrolledWindow
)) ||
149 pParent
->IsKindOf(CLASSINFO(wxGenericScrolledWindow
)))
150 dwStyle
|= WS_CLIPSIBLINGS
;
152 m_hWnd
= (WXHWND
)::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
153 ,(PSZ
)zClass
// Window class
154 ,(PSZ
)rsLabel
.c_str() // Initial Text
155 ,(ULONG
)dwStyle
// Style flags
156 ,(LONG
)0 // X pos of origin
157 ,(LONG
)0 // Y pos of origin
158 ,(LONG
)0 // control width
159 ,(LONG
)0 // control height
160 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
161 ,HWND_TOP
// initial z position
162 ,(ULONG
)GetId() // Window identifier
163 ,NULL
// no control data
164 ,NULL
// no Presentation parameters
170 wxLogError(wxT("Failed to create a control of class '%s'"), zClassname
);
176 // Subclass again for purposes of dialog editing mode
181 // Controls use the same font and colours as their parent dialog by default
184 if (nW
== 0 || nH
== 0)
187 } // end of wxControl::OS2CreateControl
189 wxSize
wxControl::DoGetBestSize() const
191 return wxSize(DEFAULT_ITEM_WIDTH
, DEFAULT_ITEM_HEIGHT
);
192 } // end of wxControl::DoGetBestSize
194 bool wxControl::ProcessCommand(wxCommandEvent
& event
)
196 #if WXWIN_COMPATIBILITY
199 (void)(*m_callback
)(this, event
);
204 #endif // WXWIN_COMPATIBILITY
206 return GetEventHandler()->ProcessEvent(event
);
209 WXHBRUSH
wxControl::OnCtlColor(
218 HPS hPS
= (HPS
)hWxDC
; // pass in a PS handle in OS/2
219 wxColour vColFore
= GetForegroundColour();
220 wxColour vColBack
= GetBackgroundColour();
222 if (GetParent()->GetTransparentBackground())
223 ::GpiSetBackMix(hPS
, BM_LEAVEALONE
);
225 ::GpiSetBackMix(hPS
, BM_OVERPAINT
);
227 ::GpiSetBackColor(hPS
, vColBack
.GetPixel());
228 ::GpiSetColor(hPS
, vColFore
.GetPixel());
230 wxBrush
* pBrush
= wxTheBrushList
->FindOrCreateBrush( vColBack
233 return (WXHBRUSH
)pBrush
->GetResourceHandle();
234 } // end of wxControl::OnCtlColor
236 void wxControl::OnEraseBackground(
241 HPS hPS
= rEvent
.GetDC()->GetHPS();
244 ::GpiSetPS(hPS
, &vSize
, PU_PELS
| GPIF_DEFAULT
);
245 ::WinQueryWindowRect((HWND
)GetHwnd(), &vRect
);
246 ::WinFillRect(hPS
, &vRect
, GetBackgroundColour().GetPixel());
247 } // end of wxControl::OnEraseBackground
249 WXDWORD
wxControl::GetExStyle(
254 // Meaningless under OS/2, just return what was sent
256 WXDWORD exStyle
= rStyle
;
259 } // end of wxControl::GetExStyle
261 // ---------------------------------------------------------------------------
263 // ---------------------------------------------------------------------------
265 // Call this repeatedly for several wnds to find the overall size
267 // Call it initially with -1 for all values in rect.
268 // Keep calling for other widgets, and rect will be modified
269 // to calculate largest bounding rectangle.
275 int nLeft
= pRect
->xLeft
;
276 int nRight
= pRect
->xRight
;
277 int nTop
= pRect
->yTop
;
278 int nBottom
= pRect
->yBottom
;
280 ::WinQueryWindowRect((HWND
)hWnd
, pRect
);
285 if (nLeft
< pRect
->xLeft
)
286 pRect
->xLeft
= nLeft
;
288 if (nRight
> pRect
->xRight
)
289 pRect
->xRight
= nRight
;
291 if (nTop
< pRect
->yTop
)
294 if (nBottom
> pRect
->yBottom
)
295 pRect
->yBottom
= nBottom
;
296 } // end of wxFindMaxSize