]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/osx/statbox_osx.cpp | |
3 | // Purpose: wxStaticBox | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #if wxUSE_STATBOX | |
15 | ||
16 | #include "wx/statbox.h" | |
17 | #include "wx/osx/private.h" | |
18 | ||
19 | bool wxStaticBox::Create( wxWindow *parent, | |
20 | wxWindowID id, | |
21 | const wxString& label, | |
22 | const wxPoint& pos, | |
23 | const wxSize& size, | |
24 | long style, | |
25 | const wxString& name ) | |
26 | { | |
27 | DontCreatePeer(); | |
28 | ||
29 | if ( !wxControl::Create( parent, id, pos, size, style, wxDefaultValidator, name ) ) | |
30 | return false; | |
31 | ||
32 | m_labelOrig = m_label = label; | |
33 | ||
34 | SetPeer(wxWidgetImpl::CreateGroupBox( this, parent, id, label, pos, size, style, GetExtraStyle() )); | |
35 | ||
36 | MacPostControlCreate( pos, size ); | |
37 | ||
38 | return true; | |
39 | } | |
40 | ||
41 | void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const | |
42 | { | |
43 | static int extraTop = -1; // Uninitted | |
44 | static int other = 5; | |
45 | ||
46 | if ( extraTop == -1 ) | |
47 | { | |
48 | // The minimal border used for the top. | |
49 | // Later on, the staticbox's font height is added to this. | |
50 | extraTop = 0; | |
51 | ||
52 | // As indicated by the HIG, Panther needs an extra border of 11 | |
53 | // pixels (otherwise overlapping occurs at the top). The "other" | |
54 | // border has to be 11. | |
55 | extraTop = 11; | |
56 | #if wxOSX_USE_COCOA | |
57 | other = 17; | |
58 | #else | |
59 | other = 11; | |
60 | #endif | |
61 | } | |
62 | ||
63 | *borderTop = extraTop; | |
64 | if ( !m_label.empty() ) | |
65 | *borderTop += GetCharHeight(); | |
66 | ||
67 | *borderOther = other; | |
68 | } | |
69 | ||
70 | bool wxStaticBox::SetFont(const wxFont& font) | |
71 | { | |
72 | bool retval = wxWindowBase::SetFont( font ); | |
73 | ||
74 | // dont' update the native control, it has its own small font | |
75 | ||
76 | return retval; | |
77 | } | |
78 | ||
79 | #endif // wxUSE_STATBOX | |
80 |