| 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 | 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 | { |
| 52 | m_statbox = NULL; |
| 53 | |
| 54 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
| 55 | return false; |
| 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 | |
| 62 | m_statbox = new wxStaticBox(parent, id, wxEmptyString, pos, sizeReal, style, name); |
| 63 | |
| 64 | return true; |
| 65 | } |
| 66 | |
| 67 | wxStaticLine::~wxStaticLine() |
| 68 | { |
| 69 | delete m_statbox; |
| 70 | } |
| 71 | |
| 72 | WXWidget wxStaticLine::GetMainWidget() const |
| 73 | { |
| 74 | return m_statbox->GetMainWidget(); |
| 75 | } |
| 76 | |
| 77 | void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
| 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 | } |
| 86 | |
| 87 | #endif |
| 88 | // wxUSE_STATLINE |