]> git.saurik.com Git - wxWidgets.git/blame - src/msw/statbox.cpp
Fix overflow warnings (?)
[wxWidgets.git] / src / msw / statbox.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
3f2711d5 2// Name: msw/statbox.cpp
2bda0e17
KB
3// Purpose: wxStaticBox
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
3f2711d5
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
3f2711d5 21 #pragma implementation "statbox.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
3f2711d5 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
1e6feb95
VZ
31#if wxUSE_STATBOX
32
2bda0e17 33#ifndef WX_PRECOMP
3f2711d5
VZ
34 #include "wx/app.h"
35 #include "wx/dcclient.h"
2bda0e17
KB
36#endif
37
38#include "wx/statbox.h"
2bda0e17 39
3f2711d5
VZ
40#include "wx/msw/private.h"
41
42// ----------------------------------------------------------------------------
43// wxWin macros
44// ----------------------------------------------------------------------------
45
51741307 46#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
47WX_DEFINE_FLAGS( wxStaticBoxStyle )
48
3ff066a4 49wxBEGIN_FLAGS( wxStaticBoxStyle )
bc9fb572
JS
50 // new style border flags, we put them first to
51 // use them for streaming out
3ff066a4
SC
52 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
53 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
54 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
55 wxFLAGS_MEMBER(wxBORDER_RAISED)
56 wxFLAGS_MEMBER(wxBORDER_STATIC)
57 wxFLAGS_MEMBER(wxBORDER_NONE)
57f4f925 58
bc9fb572 59 // old style border flags
3ff066a4
SC
60 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
61 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
62 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
63 wxFLAGS_MEMBER(wxRAISED_BORDER)
64 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 65 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
66
67 // standard window styles
3ff066a4
SC
68 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
69 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
70 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
71 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 72 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
73 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
74 wxFLAGS_MEMBER(wxVSCROLL)
75 wxFLAGS_MEMBER(wxHSCROLL)
bc9fb572 76
3ff066a4 77wxEND_FLAGS( wxStaticBoxStyle )
bc9fb572 78
51741307
SC
79IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox, wxControl,"wx/statbox.h")
80
3ff066a4 81wxBEGIN_PROPERTIES_TABLE(wxStaticBox)
57f4f925 82 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 83 wxPROPERTY_FLAGS( WindowStyle , wxStaticBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
066f1b7a 84/*
57f4f925
WS
85 TODO PROPERTIES :
86 label
066f1b7a 87*/
3ff066a4 88wxEND_PROPERTIES_TABLE()
51741307 89
3ff066a4
SC
90wxBEGIN_HANDLERS_TABLE(wxStaticBox)
91wxEND_HANDLERS_TABLE()
51741307 92
57f4f925 93wxCONSTRUCTOR_6( wxStaticBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
51741307
SC
94#else
95IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
96#endif
2bda0e17 97
3f2711d5
VZ
98// ============================================================================
99// implementation
100// ============================================================================
101
102// ----------------------------------------------------------------------------
103// wxStaticBox
104// ----------------------------------------------------------------------------
105
106bool wxStaticBox::Create(wxWindow *parent,
107 wxWindowID id,
108 const wxString& label,
109 const wxPoint& pos,
110 const wxSize& size,
111 long style,
112 const wxString& name)
2bda0e17 113{
11b6a93b 114 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
57f4f925 115 return false;
2bda0e17 116
48c1b6f9
VZ
117 // as wxStaticBox doesn't draw its own background, we make it transparent
118 // to force redrawing its background which could have been overwritten by
119 // the other controls inside it
120 //
121 // FIXME: I still think that it isn't the right solution because the static
122 // boxes shouldn't have to be transparent if the redrawing was done
123 // right elsewhere - who ever had to make them transparent in non
77ffb593 124 // wxWidgets programs, after all? But for now it does fix a serious
48c1b6f9
VZ
125 // problem (try resizing the sizers test screen in the layout sample
126 // after removing WS_EX_TRANSPARENT bit) and so let's use it until
127 // we fix the real underlying problem
128 if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX, pos, size, label,
4676948b
JS
129#ifdef __WXWINCE__
130 0
131#else
132 WS_EX_TRANSPARENT
133#endif
134 ) )
57f4f925 135 return false;
2bda0e17 136
57f4f925 137 return true;
2bda0e17
KB
138}
139
f68586e5 140wxSize wxStaticBox::DoGetBestSize() const
2bda0e17 141{
4438caf4 142 int cx, cy;
7a5e53ab 143 wxGetCharSize(GetHWND(), &cx, &cy, GetFont());
2bda0e17 144
4438caf4
VZ
145 int wBox;
146 GetTextExtent(wxGetWindowText(m_hWnd), &wBox, &cy);
2bda0e17 147
4438caf4
VZ
148 wBox += 3*cx;
149 int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy);
2bda0e17 150
4438caf4
VZ
151 return wxSize(wBox, hBox);
152}
2bda0e17 153
1e6feb95 154#endif // wxUSE_STATBOX