]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/stattext.cpp
wxSplitPath() bugs corrected and it's documented
[wxWidgets.git] / src / motif / stattext.cpp
index fbe223dd149428233ebd0b7572390601cfa5ba09..996cf9315e414ce6216b0093c3b1a17f085338c1 100644 (file)
@@ -33,28 +33,35 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
            long style,
            const wxString& name)
 {
-  SetName(name);
-  if (parent) parent->AddChild(this);
+    SetName(name);
+    if (parent) parent->AddChild(this);
 
-  SetBackgroundColour(parent->GetBackgroundColour()) ;
-  SetForegroundColour(parent->GetForegroundColour()) ;
+    m_backgroundColour = parent->GetBackgroundColour();
+    m_foregroundColour = parent->GetForegroundColour();
 
-  if ( id == -1 )
-       m_windowId = (int)NewControlId();
-  else
-       m_windowId = id;
+    if ( id == -1 )
+           m_windowId = (int)NewControlId();
+    else
+           m_windowId = id;
 
-  m_windowStyle = style;
+    m_windowStyle = style;
+    m_windowFont = parent->GetFont();
 
-  char* label1 = (label.IsNull() ? "" : (char*) (const char*) label);
+    char* label1 = (label.IsNull() ? "" : (char*) (const char*) label);
 
-  Widget parentWidget = (Widget) parent->GetClientWidget();
+    Widget parentWidget = (Widget) parent->GetClientWidget();
 
-  XmString text = XmStringCreateSimple (label1);
+    // Use XmStringCreateLtoR(), since XmStringCreateSimple
+    // doesn't obey separators.
+//    XmString text = XmStringCreateSimple (label1);
+    XmString text = XmStringCreateLtoR (label1, XmSTRING_DEFAULT_CHARSET);
 
-  m_mainWidget = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) name,
+    XmFontList fontList = (XmFontList) m_windowFont.GetFontList(1.0, XtDisplay(parentWidget));
+
+    m_mainWidget = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) name,
                                          xmLabelWidgetClass,
                                          parentWidget,
+                                         XmNfontList, fontList,
                                          XmNlabelString, text,
                                          XmNalignment,
                      ((style & wxALIGN_RIGHT) ? XmALIGNMENT_END :
@@ -62,17 +69,28 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
                      XmALIGNMENT_BEGINNING)),
                                          NULL);
 
-  XmStringFree (text);
+    XmStringFree (text);
+
+    SetCanAddEventHandler(TRUE);
+    AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
 
-  SetCanAddEventHandler(TRUE);
-  AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
+    ChangeBackgroundColour ();
 
-  SetFont(* parent->GetFont());
+    return TRUE;
+}
 
-  ChangeColour (m_mainWidget);
-  //  ChangeFont (m_mainWidget);
+void wxStaticText::ChangeFont(bool keepOriginalSize)
+{
+    wxWindow::ChangeFont(keepOriginalSize);
+}
 
-  return TRUE;
+void wxStaticText::ChangeBackgroundColour()
+{
+    wxWindow::ChangeBackgroundColour();
 }
 
+void wxStaticText::ChangeForegroundColour()
+{
+    wxWindow::ChangeForegroundColour();
+}