]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobut.cpp
More Motif stuff incl. beginnings of wxToolBar
[wxWidgets.git] / src / motif / radiobut.cpp
index 29223c6d9a4abdf4e747db0be2d822c1749ae711..4fe1489f09038663c9c4482a6409fcfdede6e283 100644 (file)
@@ -47,6 +47,8 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 {
     SetName(name);
     SetValidator(validator);
+    m_backgroundColour = parent->GetBackgroundColour();
+    m_foregroundColour = parent->GetForegroundColour();
 
     if (parent) parent->AddChild(this);
 
@@ -130,7 +132,7 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
     AttachWidget (parent, m_mainWidget, m_formWidget, pos.x, pos.y, size.x, size.y);
 
     SetFont(* parent->GetFont());
-    ChangeColour(m_mainWidget);
+    ChangeBackgroundColour();
 
     return TRUE;
 }
@@ -154,6 +156,21 @@ void wxRadioButton::Command (wxCommandEvent & event)
   ProcessCommand (event);
 }
 
+void wxRadioButton::ChangeFont()
+{
+    // TODO
+}
+
+void wxRadioButton::ChangeBackgroundColour()
+{
+    // TODO
+}
+
+void wxRadioButton::ChangeForegroundColour()
+{
+    // TODO
+}
+
 void wxRadioButtonCallback (Widget w, XtPointer clientData,
                    XmToggleButtonCallbackStruct * cbs)
 {