8907154c1a
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: univ/statline.cpp
|
|
// Purpose: wxStaticLine implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 25.08.00
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_STATLINE
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/dc.h"
|
|
#include "wx/validate.h"
|
|
#endif
|
|
|
|
#include "wx/statline.h"
|
|
|
|
#include "wx/univ/renderer.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxStaticLine
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxStaticLine::Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint &pos,
|
|
const wxSize &size,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
|
|
return false;
|
|
|
|
wxSize sizeReal = AdjustSize(size);
|
|
if ( sizeReal != size )
|
|
SetSize(sizeReal);
|
|
|
|
return true;
|
|
}
|
|
|
|
void wxStaticLine::DoDraw(wxControlRenderer *renderer)
|
|
{
|
|
// we never have a border, so don't call the base class version whcih draws
|
|
// it
|
|
wxSize sz = GetSize();
|
|
wxCoord x2, y2;
|
|
if ( IsVertical() )
|
|
{
|
|
x2 = 0;
|
|
y2 = sz.y;
|
|
}
|
|
else // horizontal
|
|
{
|
|
x2 = sz.x;
|
|
y2 = 0;
|
|
}
|
|
|
|
renderer->DrawLine(0, 0, x2, y2);
|
|
}
|
|
|
|
#endif // wxUSE_STATLINE
|
|
|