]> git.saurik.com Git - wxWidgets.git/blame - src/motif/stattext.cpp
fixes
[wxWidgets.git] / src / motif / stattext.cpp
CommitLineData
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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "stattext.h"
14#endif
15
16#include "wx/app.h"
17#include "wx/stattext.h"
18
19#include <stdio.h>
20
02e8b2f9
JS
21#include <Xm/Label.h>
22#include <Xm/LabelG.h>
23#include <Xm/PushBG.h>
24
4bb6408c
JS
25#if !USE_SHARED_LIBRARY
26IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl)
27#endif
28
29bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
30 const wxString& label,
31 const wxPoint& pos,
32 const wxSize& size,
33 long style,
34 const wxString& name)
35{
a4294b78
JS
36 SetName(name);
37 if (parent) parent->AddChild(this);
4bb6408c 38
0d57be45
JS
39 m_backgroundColour = parent->GetBackgroundColour();
40 m_foregroundColour = parent->GetForegroundColour();
4bb6408c 41
a4294b78
JS
42 if ( id == -1 )
43 m_windowId = (int)NewControlId();
44 else
45 m_windowId = id;
4bb6408c 46
a4294b78 47 m_windowStyle = style;
4bb6408c 48
a4294b78 49 char* label1 = (label.IsNull() ? "" : (char*) (const char*) label);
02e8b2f9 50
a4294b78 51 Widget parentWidget = (Widget) parent->GetClientWidget();
02e8b2f9 52
a4294b78 53 XmString text = XmStringCreateSimple (label1);
02e8b2f9 54
a4294b78 55 m_mainWidget = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) name,
02e8b2f9
JS
56 xmLabelWidgetClass,
57 parentWidget,
58 XmNlabelString, text,
59 XmNalignment,
60 ((style & wxALIGN_RIGHT) ? XmALIGNMENT_END :
61 ((style & wxALIGN_CENTRE) ? XmALIGNMENT_CENTER :
62 XmALIGNMENT_BEGINNING)),
63 NULL);
64
a4294b78 65 XmStringFree (text);
02e8b2f9 66
4b5f3fe6
JS
67 m_windowFont = parent->GetFont();
68 ChangeFont(FALSE);
69
a4294b78
JS
70 SetCanAddEventHandler(TRUE);
71 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
02e8b2f9 72
0d57be45 73 ChangeBackgroundColour ();
4bb6408c 74
a4294b78 75 return TRUE;
4bb6408c
JS
76}
77
4b5f3fe6 78void wxStaticText::ChangeFont(bool keepOriginalSize)
0d57be45 79{
4b5f3fe6 80 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
81}
82
83void wxStaticText::ChangeBackgroundColour()
84{
321db4b6 85 wxWindow::ChangeBackgroundColour();
0d57be45
JS
86}
87
88void wxStaticText::ChangeForegroundColour()
89{
321db4b6 90 wxWindow::ChangeForegroundColour();
0d57be45
JS
91}
92