git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
327 lines
9.0 KiB
C++
327 lines
9.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/univ/statusbr.cpp
|
|
// Purpose: wxStatusBar implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 14.10.01
|
|
// 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_STATUSBAR
|
|
|
|
#include "wx/statusbr.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/settings.h"
|
|
#include "wx/dcclient.h"
|
|
#include "wx/toplevel.h"
|
|
#endif
|
|
|
|
#include "wx/univ/renderer.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
BEGIN_EVENT_TABLE(wxStatusBarUniv, wxStatusBarBase)
|
|
EVT_SIZE(wxStatusBarUniv::OnSize)
|
|
|
|
WX_EVENT_TABLE_INPUT_CONSUMER(wxStatusBarUniv)
|
|
END_EVENT_TABLE()
|
|
|
|
WX_FORWARD_TO_INPUT_CONSUMER(wxStatusBarUniv)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// creation
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxStatusBarUniv::Init()
|
|
{
|
|
}
|
|
|
|
bool wxStatusBarUniv::Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
long style,
|
|
const wxString& name)
|
|
{
|
|
if ( !wxWindow::Create(parent, id,
|
|
wxDefaultPosition, wxDefaultSize,
|
|
style, name) )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
SetFieldsCount(1);
|
|
|
|
CreateInputHandler(wxINP_HANDLER_STATUSBAR);
|
|
|
|
SetSize(DoGetBestSize());
|
|
|
|
return true;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// drawing
|
|
// ----------------------------------------------------------------------------
|
|
|
|
wxRect wxStatusBarUniv::GetTotalFieldRect(wxCoord *borderBetweenFields)
|
|
{
|
|
wxRect rect = GetClientRect();
|
|
|
|
// no, don't do this - the borders are meant to be inside this rect
|
|
// wxSize sizeBorders =
|
|
if ( borderBetweenFields )
|
|
*borderBetweenFields = m_renderer->GetStatusBarBorderBetweenFields();
|
|
//rect.Deflate(sizeBorders.x, sizeBorders.y);
|
|
|
|
// recalc the field widths if needed
|
|
if ( m_widthsAbs.IsEmpty() )
|
|
{
|
|
// the total width for the fields doesn't include the borders between
|
|
// them
|
|
m_widthsAbs = CalculateAbsWidths(rect.width -
|
|
*borderBetweenFields*(m_nFields - 1));
|
|
}
|
|
|
|
return rect;
|
|
}
|
|
|
|
void wxStatusBarUniv::DoDraw(wxControlRenderer *renderer)
|
|
{
|
|
// get the fields rect
|
|
wxCoord borderBetweenFields;
|
|
wxRect rect = GetTotalFieldRect(&borderBetweenFields);
|
|
|
|
// prepare the DC
|
|
wxDC& dc = renderer->GetDC();
|
|
dc.SetFont(GetFont());
|
|
dc.SetTextForeground(GetForegroundColour());
|
|
|
|
// do draw the fields
|
|
int flags = IsEnabled() ? 0 : (int)wxCONTROL_DISABLED;
|
|
for ( int n = 0; n < m_nFields; n++ )
|
|
{
|
|
rect.width = m_widthsAbs[n];
|
|
|
|
if ( IsExposed(rect) )
|
|
{
|
|
wxTopLevelWindow *parentTLW = wxDynamicCast(GetParent(), wxTopLevelWindow);
|
|
|
|
// the size grip may be drawn only on the last field and only if we
|
|
// have the corresponding style and even then only if we really can
|
|
// resize this frame
|
|
if ( n == m_nFields - 1 &&
|
|
HasFlag(wxST_SIZEGRIP) &&
|
|
GetParent()->HasFlag(wxRESIZE_BORDER) &&
|
|
parentTLW && !parentTLW->IsMaximized() )
|
|
{
|
|
flags |= wxCONTROL_SIZEGRIP;
|
|
}
|
|
|
|
int style;
|
|
if (m_statusStyles)
|
|
style = m_statusStyles[n];
|
|
else
|
|
style = wxSB_NORMAL;
|
|
m_renderer->DrawStatusField(dc, rect, m_statusText[n], flags, style);
|
|
}
|
|
|
|
rect.x += rect.width + borderBetweenFields;
|
|
}
|
|
}
|
|
|
|
void wxStatusBarUniv::RefreshField(int i)
|
|
{
|
|
wxRect rect;
|
|
if ( GetFieldRect(i, rect) )
|
|
{
|
|
RefreshRect(rect);
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// fields text
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxStatusBarUniv::SetStatusText(const wxString& text, int number)
|
|
{
|
|
wxCHECK_RET( number >= 0 && number < m_nFields,
|
|
_T("invalid status bar field index in SetStatusText()") );
|
|
|
|
if ( text == m_statusText[number] )
|
|
{
|
|
// nothing changed
|
|
return;
|
|
}
|
|
|
|
m_statusText[number] = text;
|
|
|
|
RefreshField(number);
|
|
}
|
|
|
|
wxString wxStatusBarUniv::GetStatusText(int number) const
|
|
{
|
|
wxCHECK_MSG( number >= 0 && number < m_nFields, wxEmptyString,
|
|
_T("invalid status bar field index") );
|
|
|
|
return m_statusText[number];
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// fields count/widths
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxStatusBarUniv::SetFieldsCount(int number, const int *widths)
|
|
{
|
|
m_statusText.SetCount(number);
|
|
wxStatusBarBase::SetFieldsCount(number, widths);
|
|
m_widthsAbs.Empty();
|
|
}
|
|
|
|
void wxStatusBarUniv::SetStatusWidths(int n, const int widths[])
|
|
{
|
|
wxStatusBarBase::SetStatusWidths(n, widths);
|
|
|
|
m_widthsAbs.Empty();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// geometry
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxStatusBarUniv::OnSize(wxSizeEvent& event)
|
|
{
|
|
// we don't need to refresh the fields whose width didn't change, so find
|
|
// the first field whose width did change and refresh starting from it
|
|
int field;
|
|
if ( m_statusWidths )
|
|
{
|
|
for ( field = 0; field < m_nFields; field++ )
|
|
{
|
|
if ( m_statusWidths[field] < 0 )
|
|
{
|
|
// var width field
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else // all fields have the same width
|
|
{
|
|
// hence all fields widths have changed
|
|
field = 0;
|
|
}
|
|
|
|
if ( field < m_nFields )
|
|
{
|
|
// call this before invalidating the old widths as we want to use them,
|
|
// not the new ones
|
|
wxRect rect = DoGetFieldRect(field);
|
|
|
|
// invalidate the widths, we'll have to recalc them
|
|
m_widthsAbs.Empty();
|
|
|
|
// refresh everything after the first invalid field
|
|
rect.y = 0;
|
|
rect.SetRight(event.GetSize().x);
|
|
rect.height = event.GetSize().y;
|
|
RefreshRect(rect);
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
bool wxStatusBarUniv::GetFieldRect(int n, wxRect& rect) const
|
|
{
|
|
wxCHECK_MSG( n >= 0 && n < m_nFields, false,
|
|
_T("invalid field index in GetFieldRect()") );
|
|
|
|
// this is a fix for a bug exhibited by the statbar sample: if
|
|
// GetFieldRect() is called from the derived class OnSize() handler, then
|
|
// our geometry info is wrong as our OnSize() didn't invalidate m_widthsAbs
|
|
// yet - so recalc it just in case
|
|
wxConstCast(this, wxStatusBarUniv)->m_widthsAbs.Empty();
|
|
|
|
rect = DoGetFieldRect(n);
|
|
|
|
return true;
|
|
}
|
|
|
|
wxRect wxStatusBarUniv::DoGetFieldRect(int n) const
|
|
{
|
|
wxStatusBarUniv *self = wxConstCast(this, wxStatusBarUniv);
|
|
|
|
wxCoord borderBetweenFields;
|
|
wxRect rect = self->GetTotalFieldRect(&borderBetweenFields);
|
|
|
|
// it's the caller responsability to check this, if unsure - call
|
|
// GetFieldRect() instead
|
|
wxCHECK_MSG( !m_widthsAbs.IsEmpty(), rect,
|
|
_T("can't be called if we don't have the widths") );
|
|
|
|
for ( int i = 0; i <= n; i++ )
|
|
{
|
|
rect.width = m_widthsAbs[i];
|
|
|
|
if ( i < n )
|
|
rect.x += rect.width + borderBetweenFields;
|
|
}
|
|
|
|
return rect;
|
|
}
|
|
|
|
wxCoord wxStatusBarUniv::GetHeight() const
|
|
{
|
|
return GetCharHeight() + 2*GetBorderY();
|
|
}
|
|
|
|
wxSize wxStatusBarUniv::DoGetBestSize() const
|
|
{
|
|
return wxSize(100, GetHeight());
|
|
}
|
|
|
|
void wxStatusBarUniv::DoSetSize(int x, int y,
|
|
int width, int WXUNUSED(height),
|
|
int sizeFlags)
|
|
{
|
|
wxStatusBarBase::DoSetSize(x, y, width, GetHeight(), sizeFlags);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// misc
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxStatusBarUniv::SetMinHeight(int WXUNUSED(height))
|
|
{
|
|
// nothing to do here, we don't support it - and why would we?
|
|
}
|
|
|
|
int wxStatusBarUniv::GetBorderX() const
|
|
{
|
|
return m_renderer->GetStatusBarBorders().x +
|
|
m_renderer->GetStatusBarFieldMargins().x;
|
|
}
|
|
|
|
int wxStatusBarUniv::GetBorderY() const
|
|
{
|
|
return m_renderer->GetStatusBarBorders().y +
|
|
m_renderer->GetStatusBarFieldMargins().y;
|
|
}
|
|
|
|
#endif // wxUSE_STATUSBAR
|