This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
119 lines
3.2 KiB
C++
119 lines
3.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/univ/statbox.cpp
|
|
// Purpose: wxStaticBox implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 25.08.00
|
|
// 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_STATBOX
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/dc.h"
|
|
#include "wx/statbox.h"
|
|
#include "wx/validate.h"
|
|
#endif
|
|
|
|
#include "wx/univ/renderer.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxStaticBox
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxStaticBox::Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString &label,
|
|
const wxPoint &pos,
|
|
const wxSize &size,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
// FIXME refresh just the right/bottom parts affected in OnSize
|
|
style |= wxFULL_REPAINT_ON_RESIZE;
|
|
|
|
if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
|
|
return false;
|
|
|
|
SetLabel(label);
|
|
|
|
return true;
|
|
}
|
|
|
|
void wxStaticBox::DoDraw(wxControlRenderer *renderer)
|
|
{
|
|
// we never have a border, so don't call the base class version which draws
|
|
// it
|
|
renderer->DrawFrame();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// geometry
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxRect wxStaticBox::GetBorderGeometry() const
|
|
{
|
|
// FIXME should use the renderer here
|
|
wxRect rect;
|
|
rect.width =
|
|
rect.x = GetCharWidth() / 2 + 1;
|
|
rect.y = GetCharHeight() + 1;
|
|
rect.height = rect.y / 2;
|
|
|
|
return rect;
|
|
}
|
|
|
|
wxPoint wxStaticBox::GetBoxAreaOrigin() const
|
|
{
|
|
wxPoint pt = wxControl::GetClientAreaOrigin();
|
|
wxRect rect = GetBorderGeometry();
|
|
pt.x += rect.x;
|
|
pt.y += rect.y;
|
|
|
|
return pt;
|
|
}
|
|
|
|
#if 0
|
|
void wxStaticBox::DoSetClientSize(int width, int height)
|
|
{
|
|
wxRect rect = GetBorderGeometry();
|
|
|
|
wxControl::DoSetClientSize(width + rect.x + rect.width,
|
|
height + rect.y + rect.height);
|
|
}
|
|
|
|
void wxStaticBox::DoGetClientSize(int *width, int *height) const
|
|
{
|
|
wxControl::DoGetClientSize(width, height);
|
|
|
|
wxRect rect = GetBorderGeometry();
|
|
if ( width )
|
|
*width -= rect.x + rect.width;
|
|
if ( height )
|
|
*height -= rect.y + rect.height;
|
|
}
|
|
|
|
#endif // 0
|
|
|
|
#endif // wxUSE_STATBOX
|
|
|