]> git.saurik.com Git - wxWidgets.git/blame - src/os2/statbox.cpp
wxImage::Rotate corrections added; docview improvements (menus updated properly)
[wxWidgets.git] / src / os2 / statbox.cpp
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.cpp
3// Purpose: wxStaticBox
409c9842 4// Author: David Webster
0e320a79
DW
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
409c9842
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
409c9842
DW
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"
0e320a79
DW
21#endif
22
23#include "wx/statbox.h"
24
0e320a79
DW
25IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
26
27BEGIN_EVENT_TABLE(wxStaticBox, wxControl)
409c9842 28 EVT_ERASE_BACKGROUND(wxStaticBox::OnEraseBackground)
0e320a79
DW
29END_EVENT_TABLE()
30
0e320a79
DW
31
32/*
409c9842 33 * Group box
0e320a79 34 */
04701dd9 35
0e320a79
DW
36bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
37 const wxString& label,
38 const wxPoint& pos,
39 const wxSize& size,
40 long style,
41 const wxString& name)
42{
409c9842 43 SetName(name);
0e320a79 44
409c9842 45 if (parent) parent->AddChild(this);
0e320a79 46
409c9842
DW
47 SetBackgroundColour(parent->GetBackgroundColour()) ;
48 SetForegroundColour(parent->GetForegroundColour()) ;
49
50 if ( id == -1 )
51 m_windowId = (int)NewControlId();
52 else
53 m_windowId = id;
54
55 int x = pos.x;
56 int y = pos.y;
57 int width = size.x;
58 int height = size.y;
59
60 m_windowStyle = style;
61
62// TODO:
63/*
64 long msStyle = BS_GROUPBOX | WS_CHILD | WS_VISIBLE ; // GROUP_FLAGS;
65
66 bool want3D;
67 WXDWORD exStyle = Determine3DEffects(0, &want3D) ;
68
69 HWND wx_button =
70 CreateWindowEx(exStyle, wxT("BUTTON"), (const wxChar *)label, msStyle,
71 0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
72 wxGetInstance(), NULL);
73#if wxUSE_CTL3D
74 if (want3D)
75 {
76 Ctl3dSubclassCtl(wx_button);
77 m_useCtl3D = TRUE;
78 }
79#endif
80
81 m_hWnd = (WXHWND)wx_button;
82
83 // Subclass again for purposes of dialog editing mode
84 SubclassWin(GetHWND());
85
86 SetFont(parent->GetFont());
87
88 SetSize(x, y, width, height);
89 ShowWindow(wx_button, SW_SHOW);
90*/
91 return FALSE;
92}
93
e78c4d50 94wxSize wxStaticBox::DoGetBestSize() const
409c9842
DW
95{
96 int cx, cy;
e78c4d50 97 wxGetCharSize(GetHWND(), &cx, &cy, (wxFont*)&GetFont());
409c9842
DW
98
99 int wBox;
100 GetTextExtent(wxGetWindowText(m_hWnd), &wBox, &cy);
0e320a79 101
409c9842
DW
102 wBox += 3*cx;
103 int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy);
0e320a79 104
409c9842 105 return wxSize(wBox, hBox);
0e320a79
DW
106}
107
409c9842
DW
108WXHBRUSH wxStaticBox::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
109 WXUINT message,
110 WXWPARAM wParam,
111 WXLPARAM lParam)
0e320a79 112{
409c9842
DW
113 // TODO:
114/*
115 if (GetParent()->GetTransparentBackground())
116 SetBkMode((HDC) pDC, TRANSPARENT);
117 else
118 SetBkMode((HDC) pDC, OPAQUE);
119
120 ::SetBkColor((HDC) pDC, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
121 ::SetTextColor((HDC) pDC, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
122
123 wxBrush *backgroundBrush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour(), wxSOLID);
124
125 // Note that this will be cleaned up in wxApp::OnIdle, if backgroundBrush
126 // has a zero usage count.
127// backgroundBrush->RealizeResource();
128 return (WXHBRUSH) backgroundBrush->GetResourceHandle();
129*/
130 return (WXHBRUSH)0;
0e320a79
DW
131}
132
409c9842
DW
133// Shouldn't erase the whole window, since the static box must only paint its
134// outline.
135void wxStaticBox::OnEraseBackground(wxEraseEvent& event)
0e320a79 136{
409c9842
DW
137 // If we don't have this (call Default()), we don't paint the background properly.
138 // If we do have this, we seem to overwrite enclosed controls.
139 // Is it the WS_CLIPCHILDREN style that's causing the problems?
140 // Probably - without this style, the background of the window will show through,
141 // so the control doesn't have to paint it. The window background will always be
142 // painted before all other controls, therefore there are no problems with
143 // controls being hidden by the static box.
144 // So, if we could specify wxCLIP_CHILDREN in window, or not, we could optimise painting better.
145 // We would assume wxCLIP_CHILDREN in a frame and a scrolled window, but not in a panel.
146 // Is this too platform-specific?? What else can we do? Not a lot, since we have to pass
147 // this information from arbitrary wxWindow derivatives, and it depends on what you wish to
148 // do with the windows.
149 // Alternatively, just make sure that wxStaticBox is always at the back! There are probably
150 // few other circumstances where it matters about child clipping. But what about painting onto
151 // to panel, inside a groupbox? Doesn't appear, because the box wipes it out.
152 wxWindow *parent = GetParent();
153// TODO:
154/*
155 if ( parent && parent->GetHWND() && (::GetWindowLong((HWND) parent->GetHWND(), GWL_STYLE) & WS_CLIPCHILDREN) )
156 {
157 // TODO: May in fact need to generate a paint event for inside this
158 // control's rectangle, otherwise all controls are going to be clipped -
159 // ugh.
160 HBRUSH hBrush = ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
161 int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT);
162
163 RECT rect;
164
165 ::GetClientRect(GetHwnd(), &rect);
166 ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush);
167 ::DeleteObject(hBrush);
168 ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode);
169 }
170 else
171 {
172 event.Skip();
173 }
174*/
175}
176
177MRESULT wxStaticBox::OS2WindowProc(HWND hwnd, WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
178{
04701dd9
DW
179 // TODO:
180/*
409c9842
DW
181 if ( nMsg == WM_NCHITTEST)
182 {
183 int xPos = LOWORD(lParam); // horizontal position of cursor
184 int yPos = HIWORD(lParam); // vertical position of cursor
185
186// ScreenToClient(&xPos, &yPos);
187
188 // Make sure you can drag by the top of the groupbox, but let
189 // other (enclosed) controls get mouse events also
190 if (yPos < 10)
191 return (long)HTCLIENT;
192 }
04701dd9 193*/
409c9842
DW
194
195 return wxControl::OS2WindowProc(hwnd, nMsg, wParam, lParam);
0e320a79
DW
196}
197
409c9842 198