]>
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
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"
26 #include "wx/os2/private.h"
27 #include "wx/control.h"
29 IMPLEMENT_ABSTRACT_CLASS(wxControl
, wxWindow
)
31 BEGIN_EVENT_TABLE(wxControl
, wxWindow
)
32 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground
)
36 wxControl::wxControl()
38 } // end of wxControl::wxControl
40 bool wxControl::Create(
46 , const wxValidator
& rValidator
47 , const wxString
& rsName
50 bool bRval
= wxWindow::Create( pParent
60 SetValidator(rValidator
);
64 } // end of wxControl::Create
66 wxControl::~wxControl()
68 m_isBeingDeleted
= TRUE
;
71 bool wxControl::OS2CreateControl(
72 const wxChar
* zClassname
73 , const wxString
& rsLabel
80 WXDWORD dwStyle
= OS2GetStyle( lStyle
84 return OS2CreateControl( zClassname
91 } // end of wxControl::OS2CreateControl
93 bool wxControl::OS2CreateControl(
94 const wxChar
* zClassname
98 , const wxString
& rsLabel
102 bool bWant3D
= FALSE
;
105 // Doesn't do anything at all under OS/2
107 if (dwExstyle
== (WXDWORD
)-1)
109 dwExstyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &bWant3D
);
112 // All controls should have these styles (wxWindows creates all controls
113 // visible by default)
116 dwStyle
|= WS_VISIBLE
;
118 wxWindow
* pParent
= GetParent();
124 if ((strcmp(zClassname
, "COMBOBOX")) == 0)
125 zClass
= WC_COMBOBOX
;
126 else if ((strcmp(zClassname
, "STATIC")) == 0)
128 else if ((strcmp(zClassname
, "BUTTON")) == 0)
130 else if ((strcmp(zClassname
, "NOTEBOOK")) == 0)
131 zClass
= WC_NOTEBOOK
;
132 else if ((strcmp(zClassname
, "CONTAINER")) == 0)
133 zClass
= WC_CONTAINER
;
134 dwStyle
|= WS_VISIBLE
;
136 m_hWnd
= (WXHWND
)::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
137 ,(PSZ
)zClass
// Window class
138 ,(PSZ
)rsLabel
.c_str() // Initial Text
139 ,(ULONG
)dwStyle
// Style flags
140 ,(LONG
)0 // X pos of origin
141 ,(LONG
)0 // Y pos of origin
142 ,(LONG
)0 // control width
143 ,(LONG
)0 // control height
144 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
145 ,HWND_TOP
// initial z position
146 ,(ULONG
)GetId() // Window identifier
147 ,NULL
// no control data
148 ,NULL
// no Presentation parameters
154 wxLogError(wxT("Failed to create a control of class '%s'"), zClassname
);
160 // Subclass again for purposes of dialog editing mode
165 // Controls use the same font and colours as their parent dialog by default
176 } // end of wxControl::OS2CreateControl
178 wxSize
wxControl::DoGetBestSize() const
180 return wxSize(DEFAULT_ITEM_WIDTH
, DEFAULT_ITEM_HEIGHT
);
181 } // end of wxControl::DoGetBestSize
183 bool wxControl::ProcessCommand(wxCommandEvent
& event
)
185 return GetEventHandler()->ProcessEvent(event
);
188 WXHBRUSH
wxControl::OnCtlColor(
197 HPS hPS
= (HPS
)hWxDC
; // pass in a PS handle in OS/2
198 wxColour vColFore
= GetForegroundColour();
199 wxColour vColBack
= GetBackgroundColour();
201 if (GetParent()->GetTransparentBackground())
202 ::GpiSetBackMix(hPS
, BM_LEAVEALONE
);
204 ::GpiSetBackMix(hPS
, BM_OVERPAINT
);
206 ::GpiSetBackColor(hPS
, vColBack
.GetPixel());
207 ::GpiSetColor(hPS
, vColFore
.GetPixel());
209 wxBrush
* pBrush
= wxTheBrushList
->FindOrCreateBrush( vColBack
212 return (WXHBRUSH
)pBrush
->GetResourceHandle();
213 } // end of wxControl::OnCtlColor
215 void wxControl::OnEraseBackground(
220 HPS hPS
= rEvent
.GetDC()->GetHPS();
223 ::GpiSetPS(hPS
, &vSize
, PU_PELS
| GPIF_DEFAULT
);
224 ::WinQueryWindowRect((HWND
)GetHwnd(), &vRect
);
225 ::WinFillRect(hPS
, &vRect
, GetBackgroundColour().GetPixel());
226 } // end of wxControl::OnEraseBackground
228 WXDWORD
wxControl::OS2GetStyle(
230 , WXDWORD
* pdwExstyle
233 long dwStyle
= wxWindow::OS2GetStyle( lStyle
239 dwStyle
|= WS_TABSTOP
;
242 } // end of wxControl::OS2GetStyle
244 // ---------------------------------------------------------------------------
246 // ---------------------------------------------------------------------------
248 // Call this repeatedly for several wnds to find the overall size
250 // Call it initially with -1 for all values in rect.
251 // Keep calling for other widgets, and rect will be modified
252 // to calculate largest bounding rectangle.
258 int nLeft
= pRect
->xLeft
;
259 int nRight
= pRect
->xRight
;
260 int nTop
= pRect
->yTop
;
261 int nBottom
= pRect
->yBottom
;
263 ::WinQueryWindowRect((HWND
)hWnd
, pRect
);
268 if (nLeft
< pRect
->xLeft
)
269 pRect
->xLeft
= nLeft
;
271 if (nRight
> pRect
->xRight
)
272 pRect
->xRight
= nRight
;
274 if (nTop
< pRect
->yTop
)
277 if (nBottom
> pRect
->yBottom
)
278 pRect
->yBottom
= nBottom
;
279 } // end of wxFindMaxSize