]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/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 | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #include "wx/wxprec.h" | |
20 | ||
21 | // For compilers that support precompilation, includes "wx.h". | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_STATLINE | |
28 | ||
29 | #include "wx/statline.h" | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/statbox.h" | |
33 | #endif | |
34 | ||
35 | // ============================================================================ | |
36 | // implementation | |
37 | // ============================================================================ | |
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 | { | |
50 | m_statbox = NULL; | |
51 | ||
52 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) | |
53 | return false; | |
54 | ||
55 | // ok, this is ugly but it's better than nothing: use a thin static box to | |
56 | // emulate static line | |
57 | ||
58 | wxSize sizeReal = AdjustSize(size); | |
59 | ||
60 | m_statbox = new wxStaticBox(parent, id, wxEmptyString, pos, sizeReal, style, name); | |
61 | ||
62 | return true; | |
63 | } | |
64 | ||
65 | wxStaticLine::~wxStaticLine() | |
66 | { | |
67 | delete m_statbox; | |
68 | } | |
69 | ||
70 | WXWidget wxStaticLine::GetMainWidget() const | |
71 | { | |
72 | return m_statbox->GetMainWidget(); | |
73 | } | |
74 | ||
75 | void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags) | |
76 | { | |
77 | m_statbox->SetSize(x, y, width, height, sizeFlags); | |
78 | } | |
79 | ||
80 | void wxStaticLine::DoMoveWindow(int x, int y, int width, int height) | |
81 | { | |
82 | m_statbox->SetSize(x, y, width, height); | |
83 | } | |
84 | ||
85 | #endif | |
86 | // wxUSE_STATLINE |