Motif: made file selector and message box properly take on background colour.
Initialised a member variable in wxDC, so e.g. bombs sample now works and splitter displays something. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -125,16 +125,6 @@ int wxMessageDialog::ShowModal()
|
||||
dialogCreateFunction = XmCreateInformationDialog;
|
||||
}
|
||||
|
||||
// prepare the arg list
|
||||
Arg args[2];
|
||||
int ac = 0;
|
||||
|
||||
wxXmString text(m_message);
|
||||
wxXmString title(m_caption);
|
||||
XtSetArg(args[ac], XmNmessageString, text()); ac++;
|
||||
XtSetArg(args[ac], XmNdialogTitle, title()); ac++;
|
||||
|
||||
// do create message box
|
||||
Widget wParent = m_parent ? GetWidget(m_parent) : (Widget) 0;
|
||||
if ( !wParent )
|
||||
{
|
||||
@@ -149,6 +139,25 @@ int wxMessageDialog::ShowModal()
|
||||
wParent = GetWidget(window);
|
||||
}
|
||||
|
||||
// prepare the arg list
|
||||
Arg args[10];
|
||||
int ac = 0;
|
||||
|
||||
wxXmString text(m_message);
|
||||
wxXmString title(m_caption);
|
||||
XtSetArg(args[ac], XmNmessageString, text()); ac++;
|
||||
XtSetArg(args[ac], XmNdialogTitle, title()); ac++;
|
||||
|
||||
wxComputeColours (XtDisplay(wParent), & m_backgroundColour,
|
||||
(wxColour*) NULL);
|
||||
|
||||
XtSetArg(args[ac], XmNbackground, g_itemColors[wxBACK_INDEX].pixel); ac++;
|
||||
XtSetArg(args[ac], XmNtopShadowColor, g_itemColors[wxTOPS_INDEX].pixel); ac++;
|
||||
XtSetArg(args[ac], XmNbottomShadowColor, g_itemColors[wxBOTS_INDEX].pixel); ac++;
|
||||
XtSetArg(args[ac], XmNforeground, g_itemColors[wxFORE_INDEX].pixel); ac++;
|
||||
|
||||
// do create message box
|
||||
|
||||
Widget wMsgBox = (*dialogCreateFunction)(wParent, "", args, ac);
|
||||
|
||||
wxCHECK_MSG( wMsgBox, wxID_CANCEL, "msg box creation failed" );
|
||||
|
||||
Reference in New Issue
Block a user