m_labelWidget = (WXWidget) 0;
m_radioButtons = (WXWidget*) NULL;
m_radioButtonLabels = (wxString*) NULL;
+ m_backgroundColour = parent->GetBackgroundColour();
+ m_foregroundColour = parent->GetForegroundColour();
SetName(name);
SetValidator(val);
}
SetSelection (0);
+ m_windowFont = parent->GetFont();
+ ChangeFont(FALSE);
+
XtManageChild (radioBoxWidget);
SetCanAddEventHandler(TRUE);
AttachWidget (parent, m_mainWidget, m_formWidget, pos.x, pos.y, size.x, size.y);
- SetFont(* parent->GetFont());
- ChangeColour(m_mainWidget);
+ ChangeBackgroundColour();
return TRUE;
}
ProcessCommand (event);
}
+void wxRadioBox::ChangeFont(bool keepOriginalSize)
+{
+ // TODO
+}
+
+void wxRadioBox::ChangeBackgroundColour()
+{
+ // TODO
+}
+
+void wxRadioBox::ChangeForegroundColour()
+{
+ // TODO
+}
+
void wxRadioBoxCallback (Widget w, XtPointer clientData,
XmToggleButtonCallbackStruct * cbs)
{