]>
Commit | Line | Data |
---|---|---|
c50f1fb9 | 1 | ///////////////////////////////////////////////////////////////////////////// |
876cd6f7 | 2 | // Name: src/generic/statline.cpp |
c50f1fb9 VZ |
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 |
c50f1fb9 VZ |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
dc3b0532 | 19 | #include "wx/wxprec.h" |
876cd6f7 | 20 | |
c50f1fb9 | 21 | // For compilers that support precompilation, includes "wx.h". |
c50f1fb9 VZ |
22 | |
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
876cd6f7 WS |
27 | #if wxUSE_STATLINE |
28 | ||
c50f1fb9 | 29 | #include "wx/statline.h" |
876cd6f7 WS |
30 | |
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/statbox.h" | |
33 | #endif | |
c50f1fb9 VZ |
34 | |
35 | // ============================================================================ | |
36 | // implementation | |
37 | // ============================================================================ | |
38 | ||
39 | IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl) | |
40 | ||
41 | // ---------------------------------------------------------------------------- | |
42 | // wxStaticLine | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
45 | bool wxStaticLine::Create( wxWindow *parent, | |
46 | wxWindowID id, | |
47 | const wxPoint &pos, | |
48 | const wxSize &size, | |
49 | long style, | |
50 | const wxString &name) | |
51 | { | |
d7c40406 MB |
52 | m_statbox = NULL; |
53 | ||
7a4b8f27 | 54 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
ca65c044 | 55 | return false; |
c50f1fb9 VZ |
56 | |
57 | // ok, this is ugly but it's better than nothing: use a thin static box to | |
58 | // emulate static line | |
59 | ||
60 | wxSize sizeReal = AdjustSize(size); | |
61 | ||
ca65c044 | 62 | m_statbox = new wxStaticBox(parent, id, wxEmptyString, pos, sizeReal, style, name); |
c50f1fb9 | 63 | |
ca65c044 | 64 | return true; |
c50f1fb9 | 65 | } |
7183e38b | 66 | |
d7c40406 MB |
67 | wxStaticLine::~wxStaticLine() |
68 | { | |
69 | delete m_statbox; | |
70 | } | |
7183e38b MB |
71 | |
72 | WXWidget wxStaticLine::GetMainWidget() const | |
73 | { | |
74 | return m_statbox->GetMainWidget(); | |
75 | } | |
277f2e52 | 76 | |
99bdcd55 | 77 | void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
277f2e52 MB |
78 | { |
79 | m_statbox->SetSize(x, y, width, height, sizeFlags); | |
80 | } | |
81 | ||
82 | void wxStaticLine::DoMoveWindow(int x, int y, int width, int height) | |
83 | { | |
84 | m_statbox->SetSize(x, y, width, height); | |
85 | } | |
d7260478 JS |
86 | |
87 | #endif | |
88 | // wxUSE_STATLINE |