X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/489468feaa08b8f504735eecca522fb8d0f825d2..aa926768a9329b4eb4804c89de8da2061549708d:/src/osx/carbon/fontdlgosx.mm?ds=sidebyside diff --git a/src/osx/carbon/fontdlgosx.mm b/src/osx/carbon/fontdlgosx.mm index 55071430b2..c9f6b041bb 100644 --- a/src/osx/carbon/fontdlgosx.mm +++ b/src/osx/carbon/fontdlgosx.mm @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/mac/carbon/fontdlgosx.cpp +// Name: src/osx/carbon/fontdlgosx.cpp // Purpose: wxFontDialog class. // Author: Ryan Norton // Modified by: @@ -37,12 +37,12 @@ #include "wx/cocoa/autorelease.h" #include "wx/cocoa/string.h" -#if wxMAC_USE_EXPERIMENTAL_FONTDIALOG +#if wxOSX_USE_EXPERIMENTAL_FONTDIALOG #import #import -#include "wx/mac/uma.h" +#include "wx/osx/private.h" @interface wxMacFontPanelAccView : NSView { @@ -68,8 +68,8 @@ wxCFStringRef cfOkString( wxT("OK"), wxLocale::GetSystemEncoding() ); wxCFStringRef cfCancelString( wxT("Cancel"), wxLocale::GetSystemEncoding() ); - NSRect rectCancel = NSMakeRect( 10.0 , 10.0 , 82 , 24 ); - NSRect rectOK = NSMakeRect( 100.0 , 10.0 , 82 , 24 ); + NSRect rectCancel = NSMakeRect( (CGFloat) 10.0 , (CGFloat)10.0 , (CGFloat)82 , (CGFloat)24 ); + NSRect rectOK = NSMakeRect( (CGFloat)100.0 , (CGFloat)10.0 , (CGFloat)82 , (CGFloat)24 ); NSButton* cancelButton = [[NSButton alloc] initWithFrame:rectCancel]; [cancelButton setTitle:(NSString*)wxCFRetain((CFStringRef)cfCancelString)]; @@ -137,24 +137,26 @@ extern "C" int RunMixedFontDialog(wxFontDialog* dialog) ; -int RunMixedFontDialog(wxFontDialog* WXUNUSED(dialog)) +int RunMixedFontDialog(wxFontDialog* dialog) { +#if wxOSX_USE_COCOA + wxFontData& fontdata= ((wxFontDialog*)dialog)->GetFontData() ; +#else + wxUnusedVar(dialog); +#endif int retval = wxID_CANCEL ; - if ( !NSApplicationLoad() ) - { - wxFAIL_MSG("Couldn't load Cocoa in Carbon Environment"); - } - wxAutoNSAutoreleasePool pool; // setting up the ok/cancel buttons NSFontPanel* fontPanel = [NSFontPanel sharedFontPanel] ; // adjust modality for carbon environment +#if wxOSX_USE_CARBON WindowRef carbonWindowRef = (WindowRef)[fontPanel windowRef] ; SetWindowModality(carbonWindowRef, kWindowModalityAppModal , 0) ; SetWindowGroup(carbonWindowRef , GetWindowGroupOfClass(kMovableModalWindowClass)); +#endif [fontPanel setFloatingPanel:NO] ; [[fontPanel standardWindowButton:NSWindowCloseButton] setEnabled:NO] ; @@ -170,23 +172,76 @@ int RunMixedFontDialog(wxFontDialog* WXUNUSED(dialog)) } [accessoryView resetFlags]; +#if wxOSX_USE_COCOA + wxFont font = *wxNORMAL_FONT ; + if ( fontdata.m_initialFont.Ok() ) + { + font = fontdata.m_initialFont ; + } + + [[NSFontPanel sharedFontPanel] setPanelFont: font.OSXGetNSFont() isMultiple:NO]; + + if(fontdata.m_fontColour.Ok()) + [[NSColorPanel sharedColorPanel] setColor: + [NSColor colorWithCalibratedRed:fontdata.m_fontColour.Red() / 255.0 + green:fontdata.m_fontColour.Green() / 255.0 + blue:fontdata.m_fontColour.Blue() / 255.0 + alpha:1.0] + ]; + else + [[NSColorPanel sharedColorPanel] setColor:[NSColor blackColor]]; +#endif NSModalSession session = [NSApp beginModalSessionForWindow:fontPanel]; - [NSApp runModalSession:session]; + for (;;) + { + if ([NSApp runModalSession:session] != NSRunContinuesResponse) + break; + } [NSApp endModalSession:session]; // if we don't reenable it, FPShowHideFontPanel does not work [[fontPanel standardWindowButton:NSWindowCloseButton] setEnabled:YES] ; +#if wxOSX_USE_CARBON if( FPIsFontPanelVisible()) FPShowHideFontPanel() ; +#else + [fontPanel close]; +#endif if ( [accessoryView closedWithOk]) { +#if wxOSX_USE_COCOA + NSFont* theFont = [fontPanel panelConvertFont:[NSFont userFontOfSize:0]]; + + //Get more information about the user's chosen font + NSFontTraitMask theTraits = [[NSFontManager sharedFontManager] traitsOfFont:theFont]; + int theFontWeight = [[NSFontManager sharedFontManager] weightOfFont:theFont]; + int theFontSize = (int) [theFont pointSize]; + + wxFontFamily fontFamily = wxFONTFAMILY_DEFAULT; + //Set the wx font to the appropriate data + if(theTraits & NSFixedPitchFontMask) + fontFamily = wxFONTFAMILY_TELETYPE; + + fontdata.m_chosenFont = wxFont( theFontSize, fontFamily, + theTraits & NSItalicFontMask ? wxFONTSTYLE_ITALIC : 0, + theFontWeight < 5 ? wxLIGHT : theFontWeight >= 9 ? wxBOLD : wxNORMAL, + false, wxStringWithNSString([theFont familyName]) ); + + //Get the shared color panel along with the chosen color and set the chosen color + NSColor* theColor = [[[NSColorPanel sharedColorPanel] color] colorUsingColorSpaceName:NSCalibratedRGBColorSpace]; + + fontdata.m_fontColour.Set((unsigned char) ([theColor redComponent] * 255.0), + (unsigned char) ([theColor greenComponent] * 255.0), + (unsigned char) ([theColor blueComponent] * 255.0)); +#endif retval = wxID_OK ; } - + [fontPanel setAccessoryView:nil]; + [accessoryView release]; return retval ; } @@ -330,18 +385,6 @@ bool wxFontDialog::Create(wxWindow *parent, const wxFontData& data) { m_fontData = data; - // - // This is the key call - this initializes - // events and window stuff for cocoa for carbon - // applications. - // - // This is also the only call here that is - // 10.2+ specific (the rest is OSX only), - // which, ironically, the carbon font - // panel requires. - // - bool bOK = NSApplicationLoad(); - //autorelease pool - req'd for carbon NSAutoreleasePool *thePool; thePool = [[NSAutoreleasePool alloc] init]; @@ -392,7 +435,7 @@ bool wxFontDialog::Create(wxWindow *parent, const wxFontData& data) //We're done - free up the pool [thePool release]; - return bOK; + return true; } int wxFontDialog::ShowModal()