]>
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 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "stattext.h"
17 #include "wx/stattext.h"
22 #include <Xm/LabelG.h>
23 #include <Xm/PushBG.h>
25 #if !USE_SHARED_LIBRARY
26 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
29 bool wxStaticText::Create(wxWindow
*parent
, wxWindowID id
,
30 const wxString
& label
,
37 if (parent
) parent
->AddChild(this);
39 m_backgroundColour
= parent
->GetBackgroundColour();
40 m_foregroundColour
= parent
->GetForegroundColour();
43 m_windowId
= (int)NewControlId();
47 m_windowStyle
= style
;
48 m_windowFont
= parent
->GetFont();
50 char* label1
= (label
.IsNull() ? "" : (char*) (const char*) label
);
52 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
54 // Use XmStringCreateLtoR(), since XmStringCreateSimple
55 // doesn't obey separators.
56 // XmString text = XmStringCreateSimple (label1);
57 XmString text
= XmStringCreateLtoR (label1
, XmSTRING_DEFAULT_CHARSET
);
59 XmFontList fontList
= (XmFontList
) m_windowFont
.GetFontList(1.0, XtDisplay(parentWidget
));
61 m_mainWidget
= (WXWidget
) XtVaCreateManagedWidget ((char*) (const char*) name
,
64 XmNfontList
, fontList
,
67 ((style
& wxALIGN_RIGHT
) ? XmALIGNMENT_END
:
68 ((style
& wxALIGN_CENTRE
) ? XmALIGNMENT_CENTER
:
69 XmALIGNMENT_BEGINNING
)),
74 SetCanAddEventHandler(TRUE
);
75 AttachWidget (parent
, m_mainWidget
, (WXWidget
) NULL
, pos
.x
, pos
.y
, size
.x
, size
.y
);
77 ChangeBackgroundColour ();
82 void wxStaticText::ChangeFont(bool keepOriginalSize
)
84 wxWindow::ChangeFont(keepOriginalSize
);
87 void wxStaticText::ChangeBackgroundColour()
89 wxWindow::ChangeBackgroundColour();
92 void wxStaticText::ChangeForegroundColour()
94 wxWindow::ChangeForegroundColour();