]>
git.saurik.com Git - wxWidgets.git/blob - src/motif/stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticText
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "stattext.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
20 #define XtDisplay XTDISPLAY
24 #include "wx/stattext.h"
27 #pragma message disable nosimpint
31 #pragma message enable nosimpint
34 #include "wx/motif/private.h"
36 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
);
38 bool wxStaticText::Create(wxWindow
*parent
, wxWindowID id
,
39 const wxString
& label
,
45 if( !CreateControl( parent
, id
, pos
, size
, style
,
46 wxDefaultValidator
, name
) )
49 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
52 (Widget
) wxCreateBorderWidget( (WXWidget
)parentWidget
, style
);
53 wxXmString
text( wxStripMenuCodes( label
) );
56 XtVaCreateManagedWidget (wxConstCast(name
.c_str(), char),
58 borderWidget
? borderWidget
: parentWidget
,
59 wxFont::GetFontTag(), m_font
.GetFontTypeC(XtDisplay(parentWidget
)),
60 XmNlabelString
, text(),
61 XmNalignment
, ((style
& wxALIGN_RIGHT
) ? XmALIGNMENT_END
:
62 ((style
& wxALIGN_CENTRE
) ? XmALIGNMENT_CENTER
:
63 XmALIGNMENT_BEGINNING
)),
66 m_mainWidget
= borderWidget
? borderWidget
: m_labelWidget
;
68 AttachWidget (parent
, m_mainWidget
, (WXWidget
) NULL
,
69 pos
.x
, pos
.y
, size
.x
, size
.y
);
71 ChangeBackgroundColour ();
76 void wxStaticText::SetLabel(const wxString
& label
)
78 wxXmString
label_str(wxStripMenuCodes(label
));
80 // This variable means we don't need so many casts later.
81 Widget widget
= (Widget
) m_labelWidget
;
83 if (GetWindowStyle() & wxST_NO_AUTORESIZE
)
85 XtUnmanageChild(widget
);
86 Dimension width
, height
;
87 XtVaGetValues(widget
, XmNwidth
, &width
, XmNheight
, &height
, NULL
);
90 XmNlabelString
, label_str(),
91 XmNlabelType
, XmSTRING
,
97 XtManageChild(widget
);
101 XtVaSetValues(widget
,
102 XmNlabelString
, label_str(),
103 XmNlabelType
, XmSTRING
,