1/////////////////////////////////////////////////////////////////////////////
2// Name:        src/mac/carbon/statline.cpp
3// Purpose:     wxStaticLine class
4// Author:      Vadim Zeitlin
5// Created:     28.06.99
6// Version:     $Id: statline.cpp 39487 2006-05-31 18:27:51Z ABX $
7// Copyright:   (c) 1998 Vadim Zeitlin
8// Licence:     wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#include "wx/wxprec.h"
12
13#ifdef __BORLANDC__
14    #pragma hdrstop
15#endif
16
17#include "wx/statline.h"
18
19#ifndef WX_PRECOMP
20    #include "wx/statbox.h"
21#endif
22
23IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
24
25
26bool wxStaticLine::Create( wxWindow *parent,
27    wxWindowID id,
28    const wxPoint &pos,
29    const wxSize &size,
30    long style,
31    const wxString &name )
32{
33    if ( !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ) )
34        return false;
35
36    // this is ugly but it's better than nothing:
37    // use a thin static box to emulate static line
38
39    wxSize sizeReal = AdjustSize( size );
40
41//    m_statbox = new wxStaticBox( parent, id, wxT(""), pos, sizeReal, style, name );
42
43    return true;
44}
45