]>
Commit | Line | Data |
---|---|---|
ee6b1d97 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: generic/statline.cpp | |
3 | // Purpose: a generic wxStaticLine class | |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 28.06.99 | |
6 | // Version: $Id$ | |
7 | // Copyright: (c) 1998 Vadim Zeitlin | |
65571936 | 8 | // Licence: wxWindows licence |
ee6b1d97 SC |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
ee6b1d97 SC |
19 | // For compilers that support precompilation, includes "wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
fa0c64d6 RN |
22 | #if wxUSE_STATLINE |
23 | ||
ee6b1d97 SC |
24 | #ifdef __BORLANDC__ |
25 | #pragma hdrstop | |
26 | #endif | |
27 | ||
28 | #include "wx/statline.h" | |
29 | #include "wx/statbox.h" | |
30 | ||
d497dca4 | 31 | #include "wx/mac/uma.h" |
1d261710 | 32 | |
ee6b1d97 SC |
33 | // ============================================================================ |
34 | // implementation | |
35 | // ============================================================================ | |
36 | ||
37 | IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl) | |
38 | ||
39 | // ---------------------------------------------------------------------------- | |
40 | // wxStaticLine | |
41 | // ---------------------------------------------------------------------------- | |
42 | ||
43 | bool wxStaticLine::Create( wxWindow *parent, | |
44 | wxWindowID id, | |
45 | const wxPoint &pos, | |
46 | const wxSize &size, | |
47 | long style, | |
48 | const wxString &name) | |
49 | { | |
facd6764 SC |
50 | m_macIsUserPane = FALSE ; |
51 | ||
b45ed7a2 VZ |
52 | if ( !wxStaticLineBase::Create(parent, id, pos, size, |
53 | style, wxDefaultValidator, name) ) | |
54 | return false; | |
55 | ||
facd6764 | 56 | Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; |
b905d6cc | 57 | m_peer = new wxMacControl(this) ; |
5ca0d812 | 58 | verify_noerr(CreateSeparatorControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, m_peer->GetControlRefAddr() ) ) ; |
4c37f124 | 59 | |
facd6764 | 60 | MacPostControlCreate(pos,size) ; |
ee6b1d97 SC |
61 | |
62 | return TRUE; | |
63 | } | |
fa0c64d6 RN |
64 | |
65 | #endif //wxUSE_STATLINE |