1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/fontdlgosx.cpp
3 // Purpose: wxFontDialog class.
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 // ===========================================================================
16 // ===========================================================================
18 // ---------------------------------------------------------------------------
20 // ---------------------------------------------------------------------------
22 #include "wx/fontdlg.h"
27 #include "wx/cmndata.h"
30 #include "wx/fontutil.h"
32 // ============================================================================
34 // ============================================================================
37 #include "wx/cocoa/autorelease.h"
38 #include "wx/cocoa/string.h"
40 #if wxOSX_USE_EXPERIMENTAL_FONTDIALOG
42 #import <Foundation/Foundation.h>
43 #import <AppKit/AppKit.h>
45 #include "wx/osx/private.h"
47 @interface wxMacFontPanelAccView : NSView
51 NSButton* m_cancelButton ;
52 NSButton* m_okButton ;
55 - (IBAction)cancelPressed:(id)sender;
56 - (IBAction)okPressed:(id)sender;
59 - (BOOL)shouldCloseCarbon;
60 - (NSButton*)okButton;
63 @implementation wxMacFontPanelAccView : NSView
64 - (id)initWithFrame:(NSRect)rectBox
66 [super initWithFrame:rectBox];
68 wxCFStringRef cfOkString( wxT("OK"), wxLocale::GetSystemEncoding() );
69 wxCFStringRef cfCancelString( wxT("Cancel"), wxLocale::GetSystemEncoding() );
71 NSRect rectCancel = NSMakeRect( (CGFloat) 10.0 , (CGFloat)10.0 , (CGFloat)82 , (CGFloat)24 );
72 NSRect rectOK = NSMakeRect( (CGFloat)100.0 , (CGFloat)10.0 , (CGFloat)82 , (CGFloat)24 );
74 NSButton* cancelButton = [[NSButton alloc] initWithFrame:rectCancel];
75 [cancelButton setTitle:(NSString*)wxCFRetain((CFStringRef)cfCancelString)];
76 [cancelButton setBezelStyle:NSRoundedBezelStyle];
77 [cancelButton setButtonType:NSMomentaryPushInButton];
78 [cancelButton setAction:@selector(cancelPressed:)];
79 [cancelButton setTarget:self];
80 m_cancelButton = cancelButton ;
82 NSButton* okButton = [[NSButton alloc] initWithFrame:rectOK];
83 [okButton setTitle:(NSString*)wxCFRetain((CFStringRef)cfOkString)];
84 [okButton setBezelStyle:NSRoundedBezelStyle];
85 [okButton setButtonType:NSMomentaryPushInButton];
86 [okButton setAction:@selector(okPressed:)];
87 [okButton setTarget:self];
88 // doesn't help either, the button is not highlighted after a color dialog has been used
89 // [okButton setKeyEquivalent:@"\r"];
90 m_okButton = okButton ;
93 [self addSubview:cancelButton];
94 [self addSubview:okButton];
106 - (IBAction)cancelPressed:(id)sender
109 m_shouldClose = YES ;
113 - (IBAction)okPressed:(id)sender
117 m_shouldClose = YES ;
126 -(BOOL)shouldCloseCarbon
128 return m_shouldClose ;
138 extern "C" int RunMixedFontDialog(wxFontDialog* dialog) ;
140 int RunMixedFontDialog(wxFontDialog* dialog)
143 wxFontData& fontdata= ((wxFontDialog*)dialog)->GetFontData() ;
147 int retval = wxID_CANCEL ;
149 wxAutoNSAutoreleasePool pool;
151 // setting up the ok/cancel buttons
152 NSFontPanel* fontPanel = [NSFontPanel sharedFontPanel] ;
154 // adjust modality for carbon environment
156 WindowRef carbonWindowRef = (WindowRef)[fontPanel windowRef] ;
157 SetWindowModality(carbonWindowRef, kWindowModalityAppModal , 0) ;
158 SetWindowGroup(carbonWindowRef , GetWindowGroupOfClass(kMovableModalWindowClass));
161 [fontPanel setFloatingPanel:NO] ;
162 [[fontPanel standardWindowButton:NSWindowCloseButton] setEnabled:NO] ;
164 wxMacFontPanelAccView* accessoryView = (wxMacFontPanelAccView*) [fontPanel accessoryView] ;
165 if ( accessoryView == nil)
167 NSRect rectBox = NSMakeRect( 0 , 0 , 192 , 40 );
168 accessoryView = [[wxMacFontPanelAccView alloc] initWithFrame:rectBox];
169 [fontPanel setAccessoryView:accessoryView];
171 [fontPanel setDefaultButtonCell:[[accessoryView okButton] cell]] ;
174 [accessoryView resetFlags];
176 wxFont font = *wxNORMAL_FONT ;
177 if ( fontdata.m_initialFont.Ok() )
179 font = fontdata.m_initialFont ;
182 [[NSFontPanel sharedFontPanel] setPanelFont: font.OSXGetNSFont() isMultiple:NO];
184 if(fontdata.m_fontColour.Ok())
185 [[NSColorPanel sharedColorPanel] setColor:
186 [NSColor colorWithCalibratedRed:fontdata.m_fontColour.Red() / 255.0
187 green:fontdata.m_fontColour.Green() / 255.0
188 blue:fontdata.m_fontColour.Blue() / 255.0
192 [[NSColorPanel sharedColorPanel] setColor:[NSColor blackColor]];
195 [NSApp runModalForWindow:fontPanel];
197 // if we don't reenable it, FPShowHideFontPanel does not work
198 [[fontPanel standardWindowButton:NSWindowCloseButton] setEnabled:YES] ;
200 if( FPIsFontPanelVisible())
201 FPShowHideFontPanel() ;
206 if ( [accessoryView closedWithOk])
209 NSFont* theFont = [fontPanel panelConvertFont:[NSFont userFontOfSize:0]];
211 //Get more information about the user's chosen font
212 NSFontTraitMask theTraits = [[NSFontManager sharedFontManager] traitsOfFont:theFont];
213 int theFontWeight = [[NSFontManager sharedFontManager] weightOfFont:theFont];
214 int theFontSize = (int) [theFont pointSize];
216 wxFontFamily fontFamily = wxFONTFAMILY_DEFAULT;
217 //Set the wx font to the appropriate data
218 if(theTraits & NSFixedPitchFontMask)
219 fontFamily = wxFONTFAMILY_TELETYPE;
221 fontdata.m_chosenFont = wxFont( theFontSize, fontFamily,
222 theTraits & NSItalicFontMask ? wxFONTSTYLE_ITALIC : 0,
223 theFontWeight < 5 ? wxLIGHT : theFontWeight >= 9 ? wxBOLD : wxNORMAL,
224 false, wxStringWithNSString([theFont familyName]) );
226 //Get the shared color panel along with the chosen color and set the chosen color
227 NSColor* theColor = [[[NSColorPanel sharedColorPanel] color] colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
229 fontdata.m_fontColour.Set((unsigned char) ([theColor redComponent] * 255.0),
230 (unsigned char) ([theColor greenComponent] * 255.0),
231 (unsigned char) ([theColor blueComponent] * 255.0));
235 [fontPanel setAccessoryView:nil];
236 [accessoryView release];
243 #if USE_NATIVE_FONT_DIALOG_FOR_MACOSX
245 IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
249 #import <AppKit/NSFont.h>
250 #import <AppKit/NSFontManager.h>
251 #import <AppKit/NSFontPanel.h>
252 #import <AppKit/NSColor.h>
253 #import <AppKit/NSColorPanel.h>
255 // ---------------------------------------------------------------------------
256 // wxWCDelegate - Window Closed delegate
257 // ---------------------------------------------------------------------------
259 @interface wxWCDelegate : NSObject
266 - (BOOL)windowShouldClose:(id)sender;
268 @end // interface wxNSFontPanelDelegate : NSObject
270 @implementation wxWCDelegate : NSObject
280 - (BOOL)windowShouldClose:(id)sender
294 @end // wxNSFontPanelDelegate
296 // ---------------------------------------------------------------------------
297 // wxWCODelegate - Window Closed or Open delegate
298 // ---------------------------------------------------------------------------
300 @interface wxWCODelegate : NSObject
308 - (BOOL)windowShouldClose:(id)sender;
309 - (void)windowDidUpdate:(NSNotification *)aNotification;
312 @end // interface wxNSFontPanelDelegate : NSObject
314 @implementation wxWCODelegate : NSObject
325 - (BOOL)windowShouldClose:(id)sender
335 - (void)windowDidUpdate:(NSNotification *)aNotification
357 @end // wxNSFontPanelDelegate
359 // ---------------------------------------------------------------------------
361 // ---------------------------------------------------------------------------
363 wxFontDialog::wxFontDialog()
367 wxFontDialog::wxFontDialog(wxWindow *parent, const wxFontData& data)
369 Create(parent, data);
372 wxFontDialog::~wxFontDialog()
376 bool wxFontDialog::Create(wxWindow *parent, const wxFontData& data)
380 //autorelease pool - req'd for carbon
381 NSAutoreleasePool *thePool;
382 thePool = [[NSAutoreleasePool alloc] init];
384 //Get the initial wx font
385 wxFont& thewxfont = m_fontData.m_initialFont;
387 //if the font is valid set the default (selected) font of the
388 //NSFontDialog to that font
391 NSFontTraitMask theMask = 0;
393 if(thewxfont.GetStyle() == wxFONTSTYLE_ITALIC)
394 theMask |= NSItalicFontMask;
396 if(thewxfont.IsFixedWidth())
397 theMask |= NSFixedPitchFontMask;
399 NSFont* theDefaultFont =
400 [[NSFontManager sharedFontManager] fontWithFamily:
401 wxNSStringWithWxString(thewxfont.GetFaceName())
403 weight:thewxfont.GetWeight() == wxBOLD ? 9 :
404 thewxfont.GetWeight() == wxLIGHT ? 0 : 5
405 size: (float)(thewxfont.GetPointSize())
408 wxASSERT_MSG(theDefaultFont, wxT("Invalid default font for wxCocoaFontDialog!"));
410 //Apple docs say to call NSFontManager::setSelectedFont
411 //However, 10.3 doesn't seem to create the font panel
412 //is this is done, so create it ourselves
413 [[NSFontPanel sharedFontPanel] setPanelFont:theDefaultFont isMultiple:NO];
417 if(m_fontData.m_fontColour.Ok())
418 [[NSColorPanel sharedColorPanel] setColor:
419 [NSColor colorWithCalibratedRed:m_fontData.m_fontColour.Red() / 255.0
420 green:m_fontData.m_fontColour.Green() / 255.0
421 blue:m_fontData.m_fontColour.Blue() / 255.0
425 [[NSColorPanel sharedColorPanel] setColor:[NSColor blackColor]];
427 //We're done - free up the pool
433 int wxFontDialog::ShowModal()
435 //Start the pool. Required for carbon interaction
436 //(For those curious, the only thing that happens
437 //if you don't do this is a bunch of error
438 //messages about leaks on the console,
439 //with no windows shown or anything).
440 NSAutoreleasePool *thePool;
441 thePool = [[NSAutoreleasePool alloc] init];
443 //Get the shared color and font panel
444 NSFontPanel* theFontPanel = [NSFontPanel sharedFontPanel];
445 NSColorPanel* theColorPanel = [NSColorPanel sharedColorPanel];
447 //Create and assign the delegates (cocoa event handlers) so
448 //we can tell if a window has closed/open or not
449 wxWCDelegate* theFPDelegate = [[wxWCDelegate alloc] init];
450 [theFontPanel setDelegate:theFPDelegate];
452 wxWCODelegate* theCPDelegate = [[wxWCODelegate alloc] init];
453 [theColorPanel setDelegate:theCPDelegate];
456 // Begin the modal loop for the font and color panels
458 // The idea is that we first make the font panel modal,
459 // but if the color panel is opened, unless we stop the
460 // modal loop the color panel opens behind the font panel
461 // with no input acceptable to it - which makes it useless.
463 // So we set up delegates for both the color and font panels,
464 // and the if the font panel opens the color panel, we
465 // stop the modal loop, and start a separate modal loop for
466 // the color panel until the color panel closes, switching
467 // back to the font panel modal loop once it does close.
472 // Start the font panel modal loop
474 NSModalSession session = [NSApp beginModalSessionForWindow:theFontPanel];
477 [NSApp runModalSession:session];
479 //If the font panel is closed or the font panel
480 //opened the color panel, break
481 if ([theFPDelegate isClosed] || [theCPDelegate isOpen])
484 [NSApp endModalSession:session];
486 //is the color panel open?
487 if ([theCPDelegate isOpen])
490 // Start the color panel modal loop
492 NSModalSession session = [NSApp beginModalSessionForWindow:theColorPanel];
495 [NSApp runModalSession:session];
497 //If the color panel is closed, return the font panel modal loop
498 if ([theCPDelegate isClosed])
501 [NSApp endModalSession:session];
503 //If the font panel is still alive (I.E. we broke
504 //out of its modal loop because the color panel was
505 //opened) return the font panel modal loop
506 }while([theFPDelegate isClosed] == NO);
508 //free up the memory for the delegates - we don't need them anymore
509 [theFPDelegate release];
510 [theCPDelegate release];
512 //Get the font the user selected
513 NSFont* theFont = [theFontPanel panelConvertFont:[NSFont userFontOfSize:0]];
515 //Get more information about the user's chosen font
516 NSFontTraitMask theTraits = [[NSFontManager sharedFontManager] traitsOfFont:theFont];
517 int theFontWeight = [[NSFontManager sharedFontManager] weightOfFont:theFont];
518 int theFontSize = (int) [theFont pointSize];
520 //Set the wx font to the appropriate data
521 if(theTraits & NSFixedPitchFontMask)
522 m_fontData.m_chosenFont.SetFamily(wxTELETYPE);
524 m_fontData.m_chosenFont.SetFaceName(wxStringWithNSString([theFont familyName]));
525 m_fontData.m_chosenFont.SetPointSize(theFontSize);
526 m_fontData.m_chosenFont.SetStyle(theTraits & NSItalicFontMask ? wxFONTSTYLE_ITALIC : 0);
527 m_fontData.m_chosenFont.SetWeight(theFontWeight < 5 ? wxLIGHT :
528 theFontWeight >= 9 ? wxBOLD : wxNORMAL);
530 //Get the shared color panel along with the chosen color and set the chosen color
531 NSColor* theColor = [[theColorPanel color] colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
533 m_fontData.m_fontColour.Set((unsigned char) ([theColor redComponent] * 255.0),
534 (unsigned char) ([theColor greenComponent] * 255.0),
535 (unsigned char) ([theColor blueComponent] * 255.0));
537 //Friendly debug stuff
539 wxPrintf(wxT("---Font Panel---\n--NS--\nSize:%f\nWeight:%i\nTraits:%i\n--WX--\nFaceName:%s\nPointSize:%i\nStyle:%i\nWeight:%i\nColor:%i,%i,%i\n---END Font Panel---\n"),
545 m_fontData.m_chosenFont.GetFaceName().c_str(),
546 m_fontData.m_chosenFont.GetPointSize(),
547 m_fontData.m_chosenFont.GetStyle(),
548 m_fontData.m_chosenFont.GetWeight(),
549 m_fontData.m_fontColour.Red(),
550 m_fontData.m_fontColour.Green(),
551 m_fontData.m_fontColour.Blue() );
554 //Release the pool, we're done :)
557 //Return ID_OK - there are no "apply" buttons or the like
558 //on either the font or color panel
562 //old api stuff (REMOVE ME)
563 bool wxFontDialog::IsShown() const