git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29495
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+//color isn't working in carbon impl
+#define ISCOLORWORKING 0
+
// ============================================================================
// implementation
// ============================================================================
// ============================================================================
// implementation
// ============================================================================
FMFontFamily fontfamily;
FMFontStyle fontstyle;
FMFontSize fontsize;
FMFontFamily fontfamily;
FMFontStyle fontstyle;
FMFontSize fontsize;
status = GetEventParameter (event, kEventParamFMFontFamily,
typeFMFontFamily, NULL,
status = GetEventParameter (event, kEventParamFMFontFamily,
typeFMFontFamily, NULL,
status = GetEventParameter (event, kEventParamFontColor,
typeRGBColor, NULL,
sizeof( RGBColor ), NULL, &fontcolor);
check_noerr (status);
status = GetEventParameter (event, kEventParamFontColor,
typeRGBColor, NULL,
sizeof( RGBColor ), NULL, &fontcolor);
check_noerr (status);
//now do the conversion to the wx font data
wxFontData theFontData;
wxFont theFont;
//now do the conversion to the wx font data
wxFontData theFontData;
wxFont theFont;
//set color
wxColour theColor;
theColor.Set(&(WXCOLORREF&)fontcolor);
theFontData.SetColour(theColor);
//set color
wxColour theColor;
theColor.Set(&(WXCOLORREF&)fontcolor);
theFontData.SetColour(theColor);
//set size
theFont.SetPointSize(fontsize);
//set size
theFont.SetPointSize(fontsize);
while(FPIsFontPanelVisible())
{
//yeild so we can get events
while(FPIsFontPanelVisible())
{
//yeild so we can get events
- ::wxSafeYield(m_dialogParent, false);
+ wxTheApp->Yield(false);