int wxColourDialog::ShowModal()
{
+ // initialize the struct used by Windows
CHOOSECOLOR chooseColorStruct;
- COLORREF custColours[16];
memset(&chooseColorStruct, 0, sizeof(CHOOSECOLOR));
- int i;
- for (i = 0; i < 16; i++)
+ size_t i;
+
+ // and transfer data from m_colourData to it
+ COLORREF custColours[16];
+ for ( i = 0; i < WXSIZEOF(custColours); i++ )
{
- if (m_colourData.m_custColours[i].Ok())
+ if ( m_colourData.m_custColours[i].IsOk() )
custColours[i] = wxColourToRGB(m_colourData.m_custColours[i]);
else
custColours[i] = RGB(255,255,255);
chooseColorStruct.lCustData = (LPARAM)this;
chooseColorStruct.lpfnHook = wxColourDialogHookProc;
- if (m_colourData.GetChooseFull())
+ if ( m_colourData.GetChooseFull() )
chooseColorStruct.Flags |= CC_FULLOPEN;
- // Do the modal dialog
- bool success = ::ChooseColor(&(chooseColorStruct)) != 0;
-
- // Try to highlight the correct window (the parent)
- if (GetParent())
+ // do show the modal dialog
+ if ( !::ChooseColor(&chooseColorStruct) )
{
- HWND hWndParent = (HWND) GetParent()->GetHWND();
- if (hWndParent)
- ::BringWindowToTop(hWndParent);
+ // 0 error means the dialog was simply cancelled, i.e. no real error
+ // occurred
+ const DWORD err = CommDlgExtendedError();
+ if ( err )
+ wxLogError(_("Colour selection dialog failed with error %0lx."), err);
+
+ return wxID_CANCEL;
}
- // Restore values
- for (i = 0; i < 16; i++)
+ // transfer the values chosen by user back into m_colourData
+ for ( i = 0; i < WXSIZEOF(custColours); i++ )
{
wxRGBToColour(m_colourData.m_custColours[i], custColours[i]);
}
wxRGBToColour(m_colourData.m_dataColour, chooseColorStruct.rgbResult);
- return success ? wxID_OK : wxID_CANCEL;
+ // this doesn't seem to work (contrary to what MSDN implies) on current
+ // Windows versions: CC_FULLOPEN is never set on return if it wasn't
+ // initially set and vice versa
+ //m_colourData.SetChooseFull((chooseColorStruct.Flags & CC_FULLOPEN) != 0);
+
+ return wxID_OK;
}
// ----------------------------------------------------------------------------