]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: stattext.cpp | |
3 | // Purpose: wxStaticText | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
4bb6408c JS |
13 | #pragma implementation "stattext.h" |
14 | #endif | |
15 | ||
1248b41f MB |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
bcd055ae JJ |
19 | #ifdef __VMS |
20 | #define XtDisplay XTDISPLAY | |
21 | #endif | |
22 | ||
9a595736 | 23 | #include "wx/defs.h" |
4bb6408c JS |
24 | #include "wx/stattext.h" |
25 | ||
338dd992 JJ |
26 | #ifdef __VMS__ |
27 | #pragma message disable nosimpint | |
28 | #endif | |
02e8b2f9 | 29 | #include <Xm/Label.h> |
338dd992 JJ |
30 | #ifdef __VMS__ |
31 | #pragma message enable nosimpint | |
32 | #endif | |
02e8b2f9 | 33 | |
fe5de1ea JS |
34 | #include "wx/motif/private.h" |
35 | ||
9a595736 | 36 | IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl); |
4bb6408c JS |
37 | |
38 | bool wxStaticText::Create(wxWindow *parent, wxWindowID id, | |
39 | const wxString& label, | |
40 | const wxPoint& pos, | |
41 | const wxSize& size, | |
42 | long style, | |
43 | const wxString& name) | |
44 | { | |
9a595736 MB |
45 | if( !CreateControl( parent, id, pos, size, style, |
46 | wxDefaultValidator, name ) ) | |
47 | return false; | |
4bb6408c | 48 | |
a4294b78 | 49 | Widget parentWidget = (Widget) parent->GetClientWidget(); |
02e8b2f9 | 50 | |
9a595736 MB |
51 | Widget borderWidget = |
52 | (Widget) wxCreateBorderWidget( (WXWidget)parentWidget, style ); | |
6746fe58 | 53 | wxXmString text( wxStripMenuCodes( label ) ); |
da494b40 | 54 | WXFontType fontType = m_font.GetFontType(XtDisplay(parentWidget)); |
ea57084d | 55 | |
d3a80c92 | 56 | m_labelWidget = XtVaCreateManagedWidget (wxConstCast(name.c_str(), char), |
02e8b2f9 | 57 | xmLabelWidgetClass, |
7227cefd | 58 | borderWidget ? borderWidget : parentWidget, |
da494b40 MB |
59 | wxFont::GetFontTag(), fontType, |
60 | XmNlabelString, text(), | |
02e8b2f9 JS |
61 | XmNalignment, |
62 | ((style & wxALIGN_RIGHT) ? XmALIGNMENT_END : | |
63 | ((style & wxALIGN_CENTRE) ? XmALIGNMENT_CENTER : | |
64 | XmALIGNMENT_BEGINNING)), | |
65 | NULL); | |
66 | ||
6886fcfa | 67 | m_mainWidget = borderWidget ? borderWidget : m_labelWidget; |
7227cefd | 68 | |
9a595736 MB |
69 | AttachWidget (parent, m_mainWidget, (WXWidget) NULL, |
70 | pos.x, pos.y, size.x, size.y); | |
02e8b2f9 | 71 | |
0d57be45 | 72 | ChangeBackgroundColour (); |
4bb6408c | 73 | |
a4294b78 | 74 | return TRUE; |
4bb6408c JS |
75 | } |
76 | ||
fe5de1ea JS |
77 | void wxStaticText::SetLabel(const wxString& label) |
78 | { | |
9a595736 | 79 | wxXmString label_str(wxStripMenuCodes(label)); |
fe5de1ea JS |
80 | |
81 | // This variable means we don't need so many casts later. | |
82 | Widget widget = (Widget) m_labelWidget; | |
83 | ||
84 | if (GetWindowStyle() & wxST_NO_AUTORESIZE) | |
85 | { | |
86 | XtUnmanageChild(widget); | |
87 | Dimension width, height; | |
88 | XtVaGetValues(widget, XmNwidth, &width, XmNheight, &height, NULL); | |
89 | ||
90 | XtVaSetValues(widget, | |
91 | XmNlabelString, label_str(), | |
92 | XmNlabelType, XmSTRING, | |
93 | NULL); | |
94 | XtVaSetValues(widget, | |
95 | XmNwidth, width, | |
96 | XmNheight, height, | |
97 | NULL); | |
98 | XtManageChild(widget); | |
99 | } | |
100 | else | |
101 | { | |
102 | XtVaSetValues(widget, | |
103 | XmNlabelString, label_str(), | |
104 | XmNlabelType, XmSTRING, | |
105 | NULL); | |
106 | } | |
107 | } |