SetName(name);
SetValidator(validator);
m_windowStyle = style;
+ m_backgroundColour = parent->GetBackgroundColour();
+ m_foregroundColour = parent->GetForegroundColour();
if (parent) parent->AddChild(this);
XmToggleButtonSetState ((Widget) m_mainWidget, FALSE, TRUE);
+ m_windowFont = parent->GetFont();
+ ChangeFont(FALSE);
+
SetCanAddEventHandler(TRUE);
AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
- ChangeColour(m_mainWidget);
- SetFont(* parent->GetFont());
-
+ ChangeBackgroundColour();
return TRUE;
}
event.SetEventObject(item);
item->ProcessCommand (event);
}
+
+void wxCheckBox::ChangeFont(bool keepOriginalSize)
+{
+ wxWindow::ChangeFont(keepOriginalSize);
+}
+
+void wxCheckBox::ChangeBackgroundColour()
+{
+ wxComputeColours (XtDisplay((Widget) m_mainWidget), & m_backgroundColour,
+ (wxColour*) NULL);
+
+ XtVaSetValues ((Widget) m_mainWidget,
+ XmNbackground, g_itemColors[wxBACK_INDEX].pixel,
+ XmNtopShadowColor, g_itemColors[wxTOPS_INDEX].pixel,
+ XmNbottomShadowColor, g_itemColors[wxBOTS_INDEX].pixel,
+ XmNforeground, g_itemColors[wxFORE_INDEX].pixel,
+ NULL);
+
+ XtVaSetValues ((Widget) m_mainWidget,
+ XmNselectColor, g_itemColors[wxSELE_INDEX].pixel,
+ NULL);
+}
+
+void wxCheckBox::ChangeForegroundColour()
+{
+ wxWindow::ChangeForegroundColour();
+}