]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/statline.cpp
don't forward Enter presses to the default button if any of the ancestor windows...
[wxWidgets.git] / src / gtk / statline.cpp
CommitLineData
b0351fc9
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: statline.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
b0351fc9
RR
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
b0351fc9
RR
13#include "wx/statline.h"
14
dcf924a3
RR
15#if wxUSE_STATLINE
16
b0351fc9
RR
17#include "gdk/gdk.h"
18#include "gtk/gtk.h"
19
20//-----------------------------------------------------------------------------
21// wxStaticLine
22//-----------------------------------------------------------------------------
23
c50f1fb9 24IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
b0351fc9 25
c50f1fb9 26wxStaticLine::wxStaticLine()
b0351fc9
RR
27{
28}
29
30wxStaticLine::wxStaticLine( wxWindow *parent, wxWindowID id,
c50f1fb9
VZ
31 const wxPoint &pos, const wxSize &size,
32 long style, const wxString &name )
b0351fc9
RR
33{
34 Create( parent, id, pos, size, style, name );
35}
36
c50f1fb9
VZ
37bool wxStaticLine::Create( wxWindow *parent, wxWindowID id,
38 const wxPoint &pos, const wxSize &size,
39 long style, const wxString &name )
b0351fc9 40{
4dcaf11a
RR
41 if (!PreCreation( parent, pos, size ) ||
42 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
43 {
223d09f6 44 wxFAIL_MSG( wxT("wxStaticLine creation failed") );
3ca6a5f0 45 return FALSE;
4dcaf11a 46 }
b0351fc9 47
c50f1fb9 48 if ( IsVertical() )
073478b3 49 {
b0351fc9 50 m_widget = gtk_vseparator_new();
3ca6a5f0
BP
51 if (size.x == -1)
52 {
53 wxSize new_size( size );
54 new_size.x = 4;
55 SetSize( new_size );
56 }
073478b3 57 }
b0351fc9 58 else
073478b3 59 {
b0351fc9 60 m_widget = gtk_hseparator_new();
3ca6a5f0
BP
61 if (size.y == -1)
62 {
63 wxSize new_size( size );
64 new_size.y = 4;
65 SetSize( new_size );
66 }
073478b3 67 }
c50f1fb9 68
f03fc89f 69 m_parent->DoAddChild( this );
c50f1fb9 70
abdeb9e7 71 PostCreation(size);
c50f1fb9 72
b0351fc9
RR
73 return TRUE;
74}
75
9d522606
RD
76// static
77wxVisualAttributes
78wxStaticLine::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
79{
80 return GetDefaultAttributesFromGTKWidget(gtk_vseparator_new);
81}
82
c50f1fb9 83#endif