]>
Commit | Line | Data |
---|---|---|
489468fe | 1 | ///////////////////////////////////////////////////////////////////////////// |
233f5738 | 2 | // Name: src/osx/carbon/statline.cpp |
489468fe SC |
3 | // Purpose: wxStaticLine class |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 28.06.99 | |
6 | // Version: $Id$ | |
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 | ||
489468fe SC |
23 | bool wxStaticLine::Create( wxWindow *parent, |
24 | wxWindowID id, | |
25 | const wxPoint &pos, | |
26 | const wxSize &size, | |
27 | long style, | |
28 | const wxString &name ) | |
29 | { | |
30 | if ( !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ) ) | |
31 | return false; | |
32 | ||
33 | // this is ugly but it's better than nothing: | |
34 | // use a thin static box to emulate static line | |
35 | ||
36 | wxSize sizeReal = AdjustSize( size ); | |
37 | ||
38 | // m_statbox = new wxStaticBox( parent, id, wxT(""), pos, sizeReal, style, name ); | |
39 | ||
40 | return true; | |
41 | } |