wxwidgets/src/motif/statbox.cpp
Mattia Barbon 96be256b3e Replaced TRUE and FALSE with true and false
(or True and False when calling Motif APIs).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-02-06 17:38:33 +00:00

149 lines
3.7 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: statbox.cpp
// Purpose: wxStaticBox
// Author: Julian Smart
// Modified by:
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "statbox.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __VMS
#define XtDisplay XTDISPLAY
#endif
#include "wx/defs.h"
#include "wx/statbox.h"
#include "wx/utils.h"
#ifdef __VMS__
#pragma message disable nosimpint
#endif
#include <Xm/Frame.h>
#include <Xm/Label.h>
#ifdef __VMS__
#pragma message enable nosimpint
#endif
#include "wx/motif/private.h"
IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
BEGIN_EVENT_TABLE(wxStaticBox, wxControl)
//EVT_ERASE_BACKGROUND(wxStaticBox::OnEraseBackground)
END_EVENT_TABLE()
// ----------------------------------------------------------------------------
// wxXmSizeKeeper
// ----------------------------------------------------------------------------
// helper class to reduce code duplication
class wxXmSizeKeeper
{
Dimension m_x, m_y;
Widget m_widget;
public:
wxXmSizeKeeper( Widget w )
: m_widget( w )
{
XtVaGetValues( m_widget,
XmNwidth, &m_x,
XmNheight, &m_y,
NULL );
}
void Restore()
{
int x, y;
XtVaGetValues( m_widget,
XmNwidth, &x,
XmNheight, &y,
NULL );
if( x != m_x || y != m_y )
XtVaSetValues( m_widget,
XmNwidth, m_x,
XmNheight, m_y,
NULL );
}
};
/*
* Static box
*/
wxStaticBox::wxStaticBox()
{
m_labelWidget = (WXWidget) 0;
}
bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
const wxString& label,
const wxPoint& pos,
const wxSize& size,
long style,
const wxString& name)
{
if( !CreateControl( parent, id, pos, size, style,
wxDefaultValidator, name ) )
return false;
Widget parentWidget = (Widget) parent->GetClientWidget();
m_mainWidget = XtVaCreateManagedWidget ("staticboxframe",
xmFrameWidgetClass, parentWidget,
// MBN: why override default?
// XmNshadowType, XmSHADOW_IN,
NULL);
bool hasLabel = (!label.IsNull() && !label.IsEmpty()) ;
if (hasLabel)
{
WXFontType fontType = m_font.GetFontType( XtDisplay( parentWidget ) );
wxString label1(wxStripMenuCodes(label));
wxXmString text(label1);
m_labelWidget = (WXWidget) XtVaCreateManagedWidget ("staticboxlabel",
xmLabelWidgetClass, (Widget)m_mainWidget,
wxFont::GetFontTag(), fontType,
XmNlabelString, text(),
#if wxCHECK_MOTIF_VERSION( 2, 0 )
XmNframeChildType, XmFRAME_TITLE_CHILD,
#else
XmNchildType, XmFRAME_TITLE_CHILD,
#endif
NULL);
}
AttachWidget (parent, m_mainWidget, NULL, pos.x, pos.y, size.x, size.y);
ChangeBackgroundColour();
return true;
}
wxStaticBox::~wxStaticBox()
{
DetachWidget(m_mainWidget);
XtDestroyWidget((Widget) m_mainWidget);
m_mainWidget = (WXWidget) 0;
m_labelWidget = (WXWidget) 0;
}
void wxStaticBox::SetLabel( const wxString& label )
{
wxXmSizeKeeper sk( (Widget)GetMainWidget() );
wxStaticBoxBase::SetLabel( label );
sk.Restore();
}