2011-03-20 18:05:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: src/osx/statbox_osx.cpp
|
|
|
|
// Purpose: wxStaticBox
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#if wxUSE_STATBOX
|
|
|
|
|
|
|
|
#include "wx/statbox.h"
|
|
|
|
#include "wx/osx/private.h"
|
|
|
|
|
|
|
|
bool wxStaticBox::Create( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style,
|
|
|
|
const wxString& name )
|
|
|
|
{
|
|
|
|
DontCreatePeer();
|
|
|
|
|
|
|
|
if ( !wxControl::Create( parent, id, pos, size, style, wxDefaultValidator, name ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
m_labelOrig = m_label = label;
|
|
|
|
|
|
|
|
SetPeer(wxWidgetImpl::CreateGroupBox( this, parent, id, label, pos, size, style, GetExtraStyle() ));
|
|
|
|
|
|
|
|
MacPostControlCreate( pos, size );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wxStaticBox::GetBordersForSizer(int *borderTop, int *borderOther) const
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
static int extraTop = 11;
|
|
|
|
static int other = 11;
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
*borderTop = extraTop;
|
|
|
|
if ( !m_label.empty() )
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
#if wxOSX_USE_COCOA
|
2013-09-22 18:44:55 -04:00
|
|
|
*borderTop += 11;
|
2011-03-20 18:05:19 +00:00
|
|
|
#else
|
2013-09-22 18:44:55 -04:00
|
|
|
*borderTop += GetCharHeight();
|
2011-03-20 18:05:19 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
*borderOther = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wxStaticBox::SetFont(const wxFont& font)
|
|
|
|
{
|
|
|
|
bool retval = wxWindowBase::SetFont( font );
|
|
|
|
|
|
|
|
// dont' update the native control, it has its own small font
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // wxUSE_STATBOX
|
|
|
|
|