]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: gtk/statbox.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | // For compilers that support precompilation, includes "wx.h". | |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #if wxUSE_STATBOX | |
14 | ||
15 | #include "wx/statbox.h" | |
16 | #include "wx/gtk/private.h" | |
17 | ||
18 | #include "gdk/gdk.h" | |
19 | #include "gtk/gtk.h" | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // wxStaticBox | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) | |
26 | ||
27 | wxStaticBox::wxStaticBox() | |
28 | { | |
29 | } | |
30 | ||
31 | wxStaticBox::wxStaticBox( wxWindow *parent, | |
32 | wxWindowID id, | |
33 | const wxString &label, | |
34 | const wxPoint& pos, | |
35 | const wxSize& size, | |
36 | long style, | |
37 | const wxString& name ) | |
38 | { | |
39 | Create( parent, id, label, pos, size, style, name ); | |
40 | } | |
41 | ||
42 | bool wxStaticBox::Create( wxWindow *parent, | |
43 | wxWindowID id, | |
44 | const wxString& label, | |
45 | const wxPoint& pos, | |
46 | const wxSize& size, | |
47 | long style, | |
48 | const wxString& name ) | |
49 | { | |
50 | m_needParent = TRUE; | |
51 | ||
52 | if (!PreCreation( parent, pos, size ) || | |
53 | !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) | |
54 | { | |
55 | wxFAIL_MSG( wxT("wxStaticBox creation failed") ); | |
56 | return FALSE; | |
57 | } | |
58 | ||
59 | wxControl::SetLabel(label); | |
60 | ||
61 | m_widget = gtk_frame_new(m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) ); | |
62 | ||
63 | m_parent->DoAddChild( this ); | |
64 | ||
65 | PostCreation(size); | |
66 | ||
67 | // need to set non default alignment? | |
68 | gfloat xalign; | |
69 | if ( style & wxALIGN_CENTER ) | |
70 | xalign = 0.5; | |
71 | else if ( style & wxALIGN_RIGHT ) | |
72 | xalign = 1.0; | |
73 | else // wxALIGN_LEFT | |
74 | xalign = 0.0; | |
75 | ||
76 | if ( style & (wxALIGN_RIGHT | wxALIGN_CENTER) ) // left alignment is default | |
77 | gtk_frame_set_label_align(GTK_FRAME( m_widget ), xalign, 0.5); | |
78 | ||
79 | return TRUE; | |
80 | } | |
81 | ||
82 | void wxStaticBox::SetLabel( const wxString &label ) | |
83 | { | |
84 | wxControl::SetLabel( label ); | |
85 | ||
86 | gtk_frame_set_label( GTK_FRAME( m_widget ), | |
87 | m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) ); | |
88 | } | |
89 | ||
90 | void wxStaticBox::DoApplyWidgetStyle(GtkRcStyle *style) | |
91 | { | |
92 | gtk_widget_modify_style(m_widget, style); | |
93 | #ifdef __WXGTK20__ | |
94 | gtk_widget_modify_style(GTK_FRAME(m_widget)->label_widget, style); | |
95 | #endif | |
96 | } | |
97 | ||
98 | // static | |
99 | wxVisualAttributes | |
100 | wxStaticBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
101 | { | |
102 | return GetDefaultAttributesFromGTKWidget(gtk_frame_new); | |
103 | } | |
104 | ||
105 | #endif // wxUSE_STATBOX |