Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/xrc/xh_sttxt.cpp
|
|
// Purpose: XRC resource for wxStaticText
|
|
// Author: Bob Mitchell
|
|
// Created: 2000/03/21
|
|
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_XRC && wxUSE_STATTEXT
|
|
|
|
#include "wx/xrc/xh_sttxt.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/stattext.h"
|
|
#endif
|
|
|
|
wxIMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler);
|
|
|
|
wxStaticTextXmlHandler::wxStaticTextXmlHandler()
|
|
: wxXmlResourceHandler()
|
|
{
|
|
XRC_ADD_STYLE(wxST_NO_AUTORESIZE);
|
|
XRC_ADD_STYLE(wxALIGN_LEFT);
|
|
XRC_ADD_STYLE(wxALIGN_RIGHT);
|
|
XRC_ADD_STYLE(wxALIGN_CENTER);
|
|
XRC_ADD_STYLE(wxALIGN_CENTRE);
|
|
XRC_ADD_STYLE(wxALIGN_CENTER_HORIZONTAL);
|
|
XRC_ADD_STYLE(wxALIGN_CENTRE_HORIZONTAL);
|
|
AddWindowStyles();
|
|
}
|
|
|
|
wxObject *wxStaticTextXmlHandler::DoCreateResource()
|
|
{
|
|
XRC_MAKE_INSTANCE(text, wxStaticText)
|
|
|
|
text->Create(m_parentAsWindow,
|
|
GetID(),
|
|
GetText(wxT("label")),
|
|
GetPosition(), GetSize(),
|
|
GetStyle(),
|
|
GetName());
|
|
|
|
SetupWindow(text);
|
|
|
|
long wrap = GetDimension(wxT("wrap"), -1);
|
|
if (wrap != -1)
|
|
text->Wrap(wrap);
|
|
|
|
return text;
|
|
}
|
|
|
|
bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node)
|
|
{
|
|
return IsOfClass(node, wxT("wxStaticText"));
|
|
}
|
|
|
|
#endif // wxUSE_XRC && wxUSE_STATTEXT
|