Unicode 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(!CreateControl( pParent
38 ,vId
39 ,rPos
40 ,rSize
41 ,lStyle
42 ,wxDefaultValidator
43 ,rsName
44 ))
45 {
46 return FALSE;
47 }
48
49 wxPoint vPos(0,0);
50 wxSize vSize(0,0);
51
52 if (!OS2CreateControl( wxT("STATIC")
53 ,SS_GROUPBOX
54 ,vPos
55 ,vSize
56 ,rsLabel
57 ))
58 {
59 return FALSE;
60 }
61
62 //
63 // To be transparent we should have the same colour as the parent as well
64 //
65 SetBackgroundColour(GetParent()->GetBackgroundColour());
66
67 wxColour vColour;
68
69 vColour.Set(wxString(wxT("BLACK")));
70
71 LONG lColor = (LONG)vColour.GetPixel();
72
73 ::WinSetPresParam( m_hWnd
74 ,PP_FOREGROUNDCOLOR
75 ,sizeof(LONG)
76 ,(PVOID)&lColor
77 );
78 lColor = (LONG)m_backgroundColour.GetPixel();
79
80 ::WinSetPresParam( m_hWnd
81 ,PP_BACKGROUNDCOLOR
82 ,sizeof(LONG)
83 ,(PVOID)&lColor
84 );
85 SetFont(*wxSMALL_FONT);
86 SetSize( rPos.x
87 ,rPos.y
88 ,rSize.x
89 ,rSize.y
90 );
91 return TRUE;
92 } // end of wxStaticBox::Create
93
94 wxSize wxStaticBox::DoGetBestSize() const
95 {
96 int nCx;
97 int nCy;
98 int wBox;
99 wxFont vFont = GetFont();
100
101 wxGetCharSize( GetHWND()
102 ,&nCx
103 ,&nCy
104 ,&vFont
105 );
106 GetTextExtent( wxGetWindowText(m_hWnd)
107 ,&wBox
108 ,&nCy
109 );
110 wBox += 3 * nCx;
111
112 int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(nCy);
113
114 return wxSize( wBox
115 ,hBox
116 );
117 } // end of wxStaticBox::DoGetBestSize
118
119 MRESULT wxStaticBox::OS2WindowProc(
120 WXUINT nMsg
121 , WXWPARAM wParam
122 , WXLPARAM lParam
123 )
124 {
125 return wxControl::OS2WindowProc(nMsg, wParam, lParam);
126 } // end of wxStaticBox::OS2WindowProc
127
128