Lots of fixes for OS/2
[wxWidgets.git] / src / os2 / statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbox.cpp
3 // Purpose: wxStaticBox
4 // Author: David Webster
5 // Modified by:
6 // Created: ??/??/98
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #include "wx/window.h"
16 #include "wx/os2/private.h"
17
18 #ifndef WX_PRECOMP
19 #include "wx/app.h"
20 #include "wx/dcclient.h"
21 #endif
22
23 #include "wx/statbox.h"
24
25 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
26
27 bool wxStaticBox::Create(
28 wxWindow* pParent
29 , wxWindowID vId
30 , const wxString& rsLabel
31 , const wxPoint& rPos
32 , const wxSize& rSize
33 , long lStyle
34 , const wxString& rsName
35 )
36 {
37 if(!OS2CreateControl( pParent
38 ,vId
39 ,rPos
40 ,rSize
41 ,lStyle
42 #if wxUSE_VALIDATORS
43 ,wxDefaultValidator
44 #endif
45 ,rsName
46 ))
47 {
48 return FALSE;
49 }
50
51 wxPoint vPos(0,0);
52 wxSize vSize(0,0);
53
54 if (!OS2CreateControl( "STATIC"
55 ,SS_GROUPBOX
56 ,vPos
57 ,vSize
58 ,rsLabel
59 ))
60 {
61 return FALSE;
62 }
63
64 wxColour vColour;
65
66 vColour.Set(wxString("BLACK"));
67
68 LONG lColor = (LONG)vColour.GetPixel();
69
70 ::WinSetPresParam( m_hWnd
71 ,PP_FOREGROUNDCOLOR
72 ,sizeof(LONG)
73 ,(PVOID)&lColor
74 );
75 lColor = (LONG)m_backgroundColour.GetPixel();
76
77 ::WinSetPresParam( m_hWnd
78 ,PP_BACKGROUNDCOLOR
79 ,sizeof(LONG)
80 ,(PVOID)&lColor
81 );
82 SetFont(*wxSMALL_FONT);
83 SetSize( rPos.x
84 ,rPos.y
85 ,rSize.x
86 ,rSize.y
87 );
88 return TRUE;
89 } // end of wxStaticBox::Create
90
91 wxSize wxStaticBox::DoGetBestSize() const
92 {
93 int nCx;
94 int nCy;
95 int wBox;
96
97 wxGetCharSize( GetHWND()
98 ,&nCx
99 ,&nCy
100 ,(wxFont*)&GetFont()
101 );
102 GetTextExtent( wxGetWindowText(m_hWnd)
103 ,&wBox
104 ,&nCy
105 );
106 wBox += 3 * nCx;
107
108 int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(nCy);
109
110 return wxSize( wBox
111 ,hBox
112 );
113 } // end of wxStaticBox::DoGetBestSize
114
115 MRESULT wxStaticBox::OS2WindowProc(
116 WXUINT nMsg
117 , WXWPARAM wParam
118 , WXLPARAM lParam
119 )
120 {
121 return wxControl::OS2WindowProc(nMsg, wParam, lParam);
122 } // end of wxStaticBox::OS2WindowProc
123
124