]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/statline.cpp
Fix crash in wxDC::GetMultiLineTextExtent() after last commit.
[wxWidgets.git] / src / gtk / statline.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk/statline.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#include "wx/statline.h"
14
15#if wxUSE_STATLINE
16
17#include "gdk/gdk.h"
18#include "gtk/gtk.h"
19
20//-----------------------------------------------------------------------------
21// wxStaticLine
22//-----------------------------------------------------------------------------
23
24wxStaticLine::wxStaticLine()
25{
26}
27
28wxStaticLine::wxStaticLine( wxWindow *parent, wxWindowID id,
29 const wxPoint &pos, const wxSize &size,
30 long style, const wxString &name )
31{
32 Create( parent, id, pos, size, style, name );
33}
34
35bool wxStaticLine::Create( wxWindow *parent, wxWindowID id,
36 const wxPoint &pos, const wxSize &size,
37 long style, const wxString &name )
38{
39 if (!PreCreation( parent, pos, size ) ||
40 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
41 {
42 wxFAIL_MSG( wxT("wxStaticLine creation failed") );
43 return FALSE;
44 }
45
46 if ( IsVertical() )
47 {
48 m_widget = gtk_vseparator_new();
49 if (size.x == -1)
50 {
51 wxSize new_size( size );
52 new_size.x = 4;
53 SetSize( new_size );
54 }
55 }
56 else
57 {
58 m_widget = gtk_hseparator_new();
59 if (size.y == -1)
60 {
61 wxSize new_size( size );
62 new_size.y = 4;
63 SetSize( new_size );
64 }
65 }
66 g_object_ref(m_widget);
67
68 m_parent->DoAddChild( this );
69
70 PostCreation(size);
71
72 return TRUE;
73}
74
75// static
76wxVisualAttributes
77wxStaticLine::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
78{
79 return GetDefaultAttributesFromGTKWidget(gtk_vseparator_new);
80}
81
82#endif