]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/uma.cpp
rely on built-in best size...
[wxWidgets.git] / src / mac / carbon / uma.cpp
CommitLineData
84969af7
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: uma.cpp
3// Purpose: UMA support
4// Author: Stefan Csomor
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: The wxWindows licence
84969af7
JS
10/////////////////////////////////////////////////////////////////////////////
11
03e11df5 12#include "wx/defs.h"
2dbc444a
RD
13
14#if wxUSE_GUI
15
5fde6fcc 16#include "wx/dc.h"
b03e4fcd 17#include <MacTextEditor.h>
72e7876b 18
f5c6eb5c 19#ifndef __DARWIN__
a3d3d3bf
GD
20# include <Navigation.h>
21# if defined(TARGET_CARBON)
22# if PM_USE_SESSION_APIS
23# include <PMCore.h>
24# endif
25# include <PMApplication.h>
66a09d47
SC
26# else
27# include <Printing.h>
a3d3d3bf 28# endif
03e11df5 29#endif
5b781a67 30
9c3c5849
SC
31#ifndef __DARWIN__
32#include <Scrap.h>
33#endif
34#include "wx/mac/uma.h"
35
2dbc444a 36
72055702
SC
37// since we have decided that we only support 8.6 upwards we are
38// checking for these minimum requirements in the startup code of
77ffb593 39// the application so all wxWidgets code can safely assume that appearance 1.1
58751a86 40// windows manager, control manager, navigation services etc. are
72055702 41// present
e7b596fb 42
e40298d5 43static bool sUMAHasAppearance = false ;
72e7876b 44static long sUMAAppearanceVersion = 0 ;
2b5f62a0 45static long sUMASystemVersion = 0 ;
0888ccc7 46static bool sUMAHasAquaLayout = false ;
0e5a4d20 47
e128397f
DS
48static bool sUMAHasInittedAppearance = false;
49
72e7876b
SC
50extern int gAGABackgroundColor ;
51bool UMAHasAppearance() { return sUMAHasAppearance ; }
52long UMAGetAppearanceVersion() { return sUMAAppearanceVersion ; }
2b5f62a0 53long UMAGetSystemVersion() { return sUMASystemVersion ; }
72e7876b 54
e40298d5 55static bool sUMAHasWindowManager = false ;
72e7876b
SC
56static long sUMAWindowManagerAttr = 0 ;
57
58bool UMAHasWindowManager() { return sUMAHasWindowManager ; }
59long UMAGetWindowManagerAttr() { return sUMAWindowManagerAttr ; }
0888ccc7 60bool UMAHasAquaLayout() { return sUMAHasAquaLayout ; }
2dbc444a 61
72055702 62
5b781a67
SC
63void UMACleanupToolbox()
64{
e128397f 65 if (sUMAHasInittedAppearance)
e40298d5
JS
66 {
67 UnregisterAppearanceClient() ;
68 }
69 if ( NavServicesAvailable() )
70 {
71 NavUnload() ;
72 }
f8eebb95 73 if ( TXNTerminateTextension != (void*) kUnresolvedCFragSymbolAddress )
e40298d5 74 TXNTerminateTextension( ) ;
5b781a67 75}
e128397f 76void UMAInitToolbox( UInt16 inMoreMastersCalls, bool isEmbedded )
72e7876b
SC
77{
78#if !TARGET_CARBON
e40298d5
JS
79 ::MaxApplZone();
80 for (long i = 1; i <= inMoreMastersCalls; i++)
81 ::MoreMasters();
82
e128397f
DS
83 if (!isEmbedded)
84 {
85 ::InitGraf(&qd.thePort);
86 ::InitFonts();
87 ::InitMenus();
88 ::TEInit();
89 ::InitDialogs(0L);
90 ::FlushEvents(everyEvent, 0);
91 }
92
e40298d5
JS
93 long total,contig;
94 PurgeSpace(&total, &contig);
72e7876b
SC
95#endif
96
e128397f
DS
97 ::InitCursor();
98
2b5f62a0 99 if ( Gestalt(gestaltSystemVersion, &sUMASystemVersion) != noErr)
e40298d5 100 sUMASystemVersion = 0x0000 ;
58751a86 101
e40298d5
JS
102 long theAppearance ;
103 if ( Gestalt( gestaltAppearanceAttr, &theAppearance ) == noErr )
104 {
105 sUMAHasAppearance = true ;
e128397f
DS
106 OSStatus status = RegisterAppearanceClient();
107 // If status equals appearanceProcessRegisteredErr it means the
108 // appearance client already was registered (For example if we run
109 // embedded, the host might have registered it). In such a case
110 // we don't unregister it later on.
111 if (status != appearanceProcessRegisteredErr)
112 {
113 // Appearance client wasn't registered yet.
114 sUMAHasInittedAppearance = true;
115 }
116
e40298d5
JS
117 if ( Gestalt( gestaltAppearanceVersion, &theAppearance ) == noErr )
118 {
119 sUMAAppearanceVersion = theAppearance ;
120 }
121 else
122 {
123 sUMAAppearanceVersion = 0x0100 ;
124 }
125 }
126 if ( Gestalt( gestaltWindowMgrAttr, &sUMAWindowManagerAttr ) == noErr )
127 {
128 sUMAHasWindowManager = sUMAWindowManagerAttr & gestaltWindowMgrPresent ;
129 }
58751a86 130
8e8d3ba8 131#if TARGET_CARBON
e40298d5 132// Call currently implicitely done : InitFloatingWindows() ;
8e8d3ba8 133#else
e128397f
DS
134 if (!isEmbedded)
135 {
136 if ( sUMAHasWindowManager )
137 InitFloatingWindows() ;
138 else
139 InitWindows();
140 }
03e11df5 141#endif
5b781a67 142
e40298d5
JS
143 if ( NavServicesAvailable() )
144 {
145 NavLoad() ;
146 }
b03e4fcd 147
ded4fa5b
SC
148 long menuMgrAttr ;
149 Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ;
150 if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask )
151 sUMAHasAquaLayout = true ;
152
f8eebb95 153 if ( TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress )
58751a86 154 {
564bf1ea 155 FontFamilyID fontId ;
e40298d5
JS
156 Str255 fontName ;
157 SInt16 fontSize ;
158 Style fontStyle ;
159 GetThemeFont(kThemeSmallSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
564bf1ea
SC
160 GetFNum( fontName, &fontId );
161
162 TXNMacOSPreferredFontDescription fontDescriptions[] =
163 {
e128397f 164 { fontId , (fontSize << 16) ,kTXNDefaultFontStyle, kTXNSystemDefaultEncoding }
564bf1ea
SC
165 } ;
166 int noOfFontDescriptions = sizeof( fontDescriptions ) / sizeof(TXNMacOSPreferredFontDescription) ;
4a6a2972 167
4a6a2972 168 OptionBits options = 0 ;
4a6a2972 169
facd6764 170 if ( UMAGetSystemVersion() < 0x1000 )
54ddeb7e
SC
171 {
172 options |= kTXNAlwaysUseQuickDrawTextMask ;
173 }
facd6764 174 TXNInitTextension(fontDescriptions, noOfFontDescriptions, options );
54ddeb7e 175 }
f8eebb95 176
ded4fa5b 177
2dbc444a 178 UMASetSystemIsInitialized(true);
66a09d47 179
72e7876b
SC
180}
181
66a09d47
SC
182/*
183Boolean CanUseATSUI()
e40298d5
JS
184 {
185 long result;
186 OSErr err = Gestalt(gestaltATSUVersion, &result);
187 return (err == noErr);
188 }
66a09d47 189*/
72e7876b 190// process manager
58751a86 191long UMAGetProcessMode()
72e7876b 192{
58751a86 193 OSErr err ;
e40298d5
JS
194 ProcessInfoRec processinfo;
195 ProcessSerialNumber procno ;
58751a86 196
e40298d5
JS
197 procno.highLongOfPSN = NULL ;
198 procno.lowLongOfPSN = kCurrentProcess ;
199 processinfo.processInfoLength = sizeof(ProcessInfoRec);
200 processinfo.processName = NULL;
201 processinfo.processAppSpec = NULL;
72e7876b 202
e40298d5
JS
203 err = ::GetProcessInformation( &procno , &processinfo ) ;
204 wxASSERT( err == noErr ) ;
205 return processinfo.processMode ;
72e7876b
SC
206}
207
58751a86 208bool UMAGetProcessModeDoesActivateOnFGSwitch()
72e7876b 209{
e40298d5 210 return UMAGetProcessMode() & modeDoesActivateOnFGSwitch ;
72e7876b
SC
211}
212
213// menu manager
214
908d407c 215MenuRef UMANewMenu( SInt16 id , const wxString& title , wxFontEncoding encoding )
72e7876b 216{
e40298d5
JS
217 wxString str = wxStripMenuCodes( title ) ;
218 MenuRef menu ;
bf918b97 219#if TARGET_CARBON
e40298d5 220 CreateNewMenu( id , 0 , &menu ) ;
908d407c 221 SetMenuTitleWithCFString( menu , wxMacCFStringHolder(str , encoding ) ) ;
bf918b97 222#else
e40298d5
JS
223 Str255 ptitle ;
224 wxMacStringToPascal( str , ptitle ) ;
225 menu = ::NewMenu( id , ptitle ) ;
bf918b97 226#endif
e40298d5 227 return menu ;
bf918b97 228}
72e7876b 229
908d407c 230void UMASetMenuTitle( MenuRef menu , const wxString& title , wxFontEncoding encoding)
bf918b97 231{
e40298d5 232 wxString str = wxStripMenuCodes( title ) ;
bf918b97 233#if TARGET_CARBON
908d407c 234 SetMenuTitleWithCFString( menu , wxMacCFStringHolder(str , encoding) ) ;
72e7876b 235#else
e40298d5
JS
236 Str255 ptitle ;
237 wxMacStringToPascal( str , ptitle ) ;
238 SetMenuTitle( menu , ptitle ) ;
bf918b97 239#endif
72e7876b
SC
240}
241
908d407c 242void UMASetMenuItemText( MenuRef menu, MenuItemIndex item, const wxString& title , wxFontEncoding encoding)
72e7876b 243{
e40298d5 244 wxString str = wxStripMenuCodes( title ) ;
bf918b97 245#if TARGET_CARBON
908d407c 246 SetMenuItemTextWithCFString( menu , item , wxMacCFStringHolder(str , encoding) ) ;
bf918b97 247#else
e40298d5
JS
248 Str255 ptitle ;
249 wxMacStringToPascal( str , ptitle ) ;
250 SetMenuItemText( menu , item , ptitle ) ;
bf918b97 251#endif
72e7876b
SC
252}
253
bf918b97
SC
254
255UInt32 UMAMenuEvent( EventRecord *inEvent )
72e7876b 256{
e40298d5 257 return MenuEvent( inEvent ) ;
72e7876b
SC
258}
259
58751a86 260void UMAEnableMenuItem( MenuRef inMenu , MenuItemIndex inItem , bool enable)
72e7876b 261{
e40298d5
JS
262 if ( enable )
263 EnableMenuItem( inMenu , inItem ) ;
264 else
265 DisableMenuItem( inMenu , inItem ) ;
72e7876b 266}
2f1ae414 267
908d407c 268void UMAAppendSubMenuItem( MenuRef menu , const wxString& title, wxFontEncoding encoding , SInt16 id )
2f1ae414 269{
e40298d5 270 MacAppendMenu(menu, "\pA");
908d407c 271 UMASetMenuItemText(menu, (SInt16) ::CountMenuItems(menu), title , encoding );
e40298d5 272 SetMenuItemHierarchicalID( menu , CountMenuItems( menu ) , id ) ;
2f1ae414
SC
273}
274
908d407c 275void UMAInsertSubMenuItem( MenuRef menu , const wxString& title, wxFontEncoding encoding , MenuItemIndex item , SInt16 id )
2f1ae414 276{
e40298d5 277 MacInsertMenuItem(menu, "\pA" , item);
4da39c96
SC
278 UMASetMenuItemText(menu, item+1, title , encoding);
279 SetMenuItemHierarchicalID( menu , item+1 , id ) ;
2f1ae414
SC
280}
281
bf918b97 282void UMASetMenuItemShortcut( MenuRef menu , MenuItemIndex item , wxAcceleratorEntry *entry )
2f1ae414 283{
e40298d5
JS
284 if ( !entry )
285 return ;
58751a86 286
e40298d5
JS
287 UInt8 modifiers = 0 ;
288 SInt16 key = entry->GetKeyCode() ;
289 if ( key )
290 {
291 bool explicitCommandKey = false ;
292
58751a86 293 if ( entry->GetFlags() & wxACCEL_CTRL )
e40298d5
JS
294 {
295 explicitCommandKey = true ;
296 }
297
58751a86 298 if (entry->GetFlags() & wxACCEL_ALT )
e40298d5
JS
299 {
300 modifiers |= kMenuOptionModifier ;
301 }
302
58751a86 303 if (entry->GetFlags() & wxACCEL_SHIFT)
e40298d5
JS
304 {
305 modifiers |= kMenuShiftModifier ;
306 }
307
308 SInt16 glyph = 0 ;
309 SInt16 macKey = key ;
310 if ( key >= WXK_F1 && key <= WXK_F15 )
311 {
a5c1f8ca
SC
312 // for some reasons this must be 0 right now
313 // everything else leads to just the first function key item
314 // to be selected. Thanks to Ryan Wilcox for finding out.
2dbc444a 315 macKey = 0 ;
e40298d5
JS
316 glyph = kMenuF1Glyph + ( key - WXK_F1 ) ;
317 if ( key >= WXK_F13 )
318 glyph += 13 ;
bf918b97 319 if ( !explicitCommandKey )
e40298d5 320 modifiers |= kMenuNoCommandModifier ;
1bec2ee4 321 }
e40298d5
JS
322 else
323 {
324 switch( key )
325 {
326 case WXK_BACK :
327 macKey = kBackspaceCharCode ;
328 glyph = kMenuDeleteLeftGlyph ;
329 break ;
330 case WXK_TAB :
331 macKey = kTabCharCode ;
332 glyph = kMenuTabRightGlyph ;
333 break ;
334 case kEnterCharCode :
335 macKey = kEnterCharCode ;
336 glyph = kMenuEnterGlyph ;
337 break ;
338 case WXK_RETURN :
339 macKey = kReturnCharCode ;
340 glyph = kMenuReturnGlyph ;
341 break ;
342 case WXK_ESCAPE :
343 macKey = kEscapeCharCode ;
344 glyph = kMenuEscapeGlyph ;
345 break ;
346 case WXK_SPACE :
347 macKey = ' ' ;
348 glyph = kMenuSpaceGlyph ;
349 break ;
350 case WXK_DELETE :
351 macKey = kDeleteCharCode ;
352 glyph = kMenuDeleteRightGlyph ;
353 break ;
354 case WXK_CLEAR :
355 macKey = kClearCharCode ;
356 glyph = kMenuClearGlyph ;
357 break ;
358 case WXK_PRIOR : // PAGE UP
359 macKey = kPageUpCharCode ;
360 glyph = kMenuPageUpGlyph ;
361 break ;
362 case WXK_NEXT :
363 macKey = kPageDownCharCode ;
364 glyph = kMenuPageDownGlyph ;
365 break ;
366 case WXK_LEFT :
367 macKey = kLeftArrowCharCode ;
368 glyph = kMenuLeftArrowGlyph ;
369 break ;
370 case WXK_UP :
371 macKey = kUpArrowCharCode ;
372 glyph = kMenuUpArrowGlyph ;
373 break ;
374 case WXK_RIGHT :
375 macKey = kRightArrowCharCode ;
376 glyph = kMenuRightArrowGlyph ;
377 break ;
378 case WXK_DOWN :
379 macKey = kDownArrowCharCode ;
380 glyph = kMenuDownArrowGlyph ;
381 break ;
1bec2ee4
SC
382 default :
383 macKey = toupper( key ) ;
384 break ;
2b5f62a0 385 }
1bec2ee4
SC
386 // we now allow non command key shortcuts
387 // remove in case this gives problems
388 if ( !explicitCommandKey )
389 modifiers |= kMenuNoCommandModifier ;
2b5f62a0 390 }
bf918b97 391
1a03b3e2
JS
392 // 1d and 1e have special meaning to SetItemCmd, so
393 // do not use for these character codes.
394 if (key != WXK_UP && key != WXK_RIGHT)
395 SetItemCmd( menu, item , macKey );
396
e40298d5 397 SetMenuItemModifiers(menu, item , modifiers ) ;
2b5f62a0
VZ
398
399 if ( glyph )
400 SetMenuItemKeyGlyph(menu, item , glyph ) ;
e40298d5 401 }
2b5f62a0
VZ
402}
403
908d407c 404void UMAAppendMenuItem( MenuRef menu , const wxString& title, wxFontEncoding encoding , wxAcceleratorEntry *entry )
2b5f62a0 405{
e40298d5 406 MacAppendMenu(menu, "\pA");
908d407c 407 UMASetMenuItemText(menu, (SInt16) ::CountMenuItems(menu), title , encoding );
e40298d5 408 UMASetMenuItemShortcut( menu , (SInt16) ::CountMenuItems(menu), entry ) ;
2f1ae414
SC
409}
410
908d407c 411void UMAInsertMenuItem( MenuRef menu , const wxString& title, wxFontEncoding encoding , MenuItemIndex item , wxAcceleratorEntry *entry )
2f1ae414 412{
58751a86 413 MacInsertMenuItem( menu , "\pA" , item) ;
908d407c 414 UMASetMenuItemText(menu, item+1 , title , encoding );
58751a86 415 UMASetMenuItemShortcut( menu , item+1 , entry ) ;
2f1ae414
SC
416}
417
72e7876b
SC
418// quickdraw
419
7052b16d
SC
420#if !TARGET_CARBON
421
2f1ae414
SC
422int gPrOpenCounter = 0 ;
423
7052b16d 424OSStatus UMAPrOpen()
2f1ae414 425{
e40298d5
JS
426 OSErr err = noErr ;
427 ++gPrOpenCounter ;
428 if ( gPrOpenCounter == 1 )
429 {
430 PrOpen() ;
431 err = PrError() ;
432 wxASSERT( err == noErr ) ;
433 }
434 return err ;
2f1ae414
SC
435}
436
7052b16d 437OSStatus UMAPrClose()
2f1ae414 438{
e40298d5
JS
439 OSErr err = noErr ;
440 wxASSERT( gPrOpenCounter >= 1 ) ;
441 if ( gPrOpenCounter == 1 )
442 {
443 PrClose() ;
444 err = PrError() ;
445 wxASSERT( err == noErr ) ;
446 }
447 --gPrOpenCounter ;
448 return err ;
2f1ae414
SC
449}
450
72055702 451pascal QDGlobalsPtr GetQDGlobalsPtr (void) ;
72e7876b
SC
452pascal QDGlobalsPtr GetQDGlobalsPtr (void)
453{
e40298d5 454 return QDGlobalsPtr (* (Ptr*) LMGetCurrentA5 ( ) - 0xCA);
72e7876b
SC
455}
456
457#endif
458
58751a86 459void UMAShowWatchCursor()
72e7876b 460{
e40298d5 461 OSErr err = noErr;
72e7876b 462
e40298d5 463 CursHandle watchFob = GetCursor (watchCursor);
72e7876b 464
e40298d5
JS
465 if (!watchFob)
466 err = nilHandleErr;
467 else
468 {
469 #if TARGET_CARBON
470// Cursor preservedArrow;
471// GetQDGlobalsArrow (&preservedArrow);
472// SetQDGlobalsArrow (*watchFob);
473// InitCursor ( );
474// SetQDGlobalsArrow (&preservedArrow);
58751a86 475 SetCursor (*watchFob);
e40298d5 476 #else
58751a86 477 SetCursor (*watchFob);
e40298d5
JS
478 #endif
479 }
72e7876b
SC
480}
481
58751a86 482void UMAShowArrowCursor()
72e7876b
SC
483{
484#if TARGET_CARBON
e40298d5
JS
485 Cursor arrow;
486 SetCursor (GetQDGlobalsArrow (&arrow));
72e7876b 487#else
e40298d5 488 SetCursor (&(qd.arrow));
72e7876b
SC
489#endif
490}
491
492// window manager
493
58751a86 494GrafPtr UMAGetWindowPort( WindowRef inWindowRef )
72e7876b 495{
e40298d5 496 wxASSERT( inWindowRef != NULL ) ;
58751a86
RD
497#if TARGET_CARBON
498 return (GrafPtr) GetWindowPort( inWindowRef ) ;
72e7876b 499#else
e40298d5 500 return (GrafPtr) inWindowRef ;
72e7876b
SC
501#endif
502}
503
58751a86 504void UMADisposeWindow( WindowRef inWindowRef )
72e7876b 505{
e40298d5
JS
506 wxASSERT( inWindowRef != NULL ) ;
507 DisposeWindow( inWindowRef ) ;
72e7876b
SC
508}
509
908d407c 510void UMASetWTitle( WindowRef inWindowRef , const wxString& title , wxFontEncoding encoding)
72e7876b 511{
03e11df5 512#if TARGET_CARBON
908d407c 513 SetWindowTitleWithCFString( inWindowRef , wxMacCFStringHolder(title , encoding) ) ;
03e11df5 514#else
427ff662
SC
515 Str255 ptitle ;
516 wxMacStringToPascal( title , ptitle ) ;
e40298d5 517 SetWTitle( inWindowRef , ptitle ) ;
427ff662 518#endif
72e7876b 519}
03e11df5 520
72e7876b
SC
521// appearance additions
522
facd6764 523void UMASetControlTitle( ControlRef inControl , const wxString& title , wxFontEncoding encoding)
427ff662
SC
524{
525#if TARGET_CARBON
908d407c 526 SetControlTitleWithCFString( inControl , wxMacCFStringHolder(title , encoding) ) ;
427ff662
SC
527#else
528 Str255 ptitle ;
529 wxMacStringToPascal( title , ptitle ) ;
530 SetControlTitle( inControl , ptitle ) ;
531#endif
532}
533
facd6764 534void UMAActivateControl( ControlRef inControl )
72e7876b 535{
facd6764 536#if !TARGET_API_MAC_OSX
22e751a5
SC
537 // we have to add the control after again to the update rgn
538 // otherwise updates get lost
e40298d5
JS
539 if ( !IsControlActive( inControl ) )
540 {
fdaf613a
SC
541 bool visible = IsControlVisible( inControl ) ;
542 if ( visible )
e40298d5 543 SetControlVisibility( inControl , false , false ) ;
facd6764 544#endif
3f4902f5 545 ::ActivateControl( inControl ) ;
facd6764 546#if !TARGET_API_MAC_OSX
fdaf613a 547 if ( visible ) {
e40298d5 548 SetControlVisibility( inControl , true , false ) ;
facd6764 549
e40298d5 550 Rect ctrlBounds ;
facd6764 551 InvalWindowRect(GetControlOwner(inControl),UMAGetControlBoundsInWindowCoords(inControl,&ctrlBounds) ) ;
fdaf613a 552 }
e40298d5 553 }
facd6764 554#endif
72e7876b
SC
555}
556
facd6764 557void UMAMoveControl( ControlRef inControl , short x , short y )
72e7876b 558{
facd6764 559#if !TARGET_API_MAC_OSX
e40298d5
JS
560 bool visible = IsControlVisible( inControl ) ;
561 if ( visible ) {
562 SetControlVisibility( inControl , false , false ) ;
563 Rect ctrlBounds ;
564 InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ;
565 }
facd6764 566#endif
e40298d5 567 ::MoveControl( inControl , x , y ) ;
facd6764 568#if !TARGET_API_MAC_OSX
e40298d5
JS
569 if ( visible ) {
570 SetControlVisibility( inControl , true , false ) ;
571 Rect ctrlBounds ;
572 InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ;
573 }
facd6764 574#endif
72e7876b
SC
575}
576
facd6764 577void UMASizeControl( ControlRef inControl , short x , short y )
72e7876b 578{
facd6764 579#if !TARGET_API_MAC_OSX
e40298d5
JS
580 bool visible = IsControlVisible( inControl ) ;
581 if ( visible ) {
582 SetControlVisibility( inControl , false , false ) ;
583 Rect ctrlBounds ;
584 InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ;
58751a86 585 }
facd6764 586#endif
e40298d5 587 ::SizeControl( inControl , x , y ) ;
facd6764 588#if !TARGET_API_MAC_OSX
e40298d5
JS
589 if ( visible ) {
590 SetControlVisibility( inControl , true , false ) ;
591 Rect ctrlBounds ;
592 InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ;
593 }
facd6764 594#endif
72e7876b
SC
595}
596
facd6764 597void UMADeactivateControl( ControlRef inControl )
72e7876b 598{
facd6764 599#if !TARGET_API_MAC_OSX
22e751a5
SC
600 // we have to add the control after again to the update rgn
601 // otherwise updates get lost
e40298d5
JS
602 bool visible = IsControlVisible( inControl ) ;
603 if ( visible )
604 SetControlVisibility( inControl , false , false ) ;
facd6764 605#endif
e40298d5 606 ::DeactivateControl( inControl ) ;
facd6764 607#if !TARGET_API_MAC_OSX
e40298d5 608 if ( visible ) {
fdaf613a 609 SetControlVisibility( inControl , true , false ) ;
c36f0244 610 Rect ctrlBounds ;
facd6764 611 InvalWindowRect(GetControlOwner(inControl),UMAGetControlBoundsInWindowCoords(inControl,&ctrlBounds) ) ;
e40298d5 612 }
facd6764 613#endif
e40298d5
JS
614}
615// shows the control and adds the region to the update region
facd6764 616void UMAShowControl (ControlRef inControl)
e40298d5
JS
617{
618 SetControlVisibility( inControl , true , false ) ;
619 Rect ctrlBounds ;
facd6764 620 InvalWindowRect(GetControlOwner(inControl),UMAGetControlBoundsInWindowCoords(inControl,&ctrlBounds) ) ;
72e7876b
SC
621}
622
facd6764
SC
623// hides the control and adds the region to the update region
624void UMAHideControl (ControlRef inControl)
22e751a5 625{
e40298d5
JS
626 SetControlVisibility( inControl , false , false ) ;
627 Rect ctrlBounds ;
facd6764 628 InvalWindowRect(GetControlOwner(inControl),UMAGetControlBoundsInWindowCoords(inControl,&ctrlBounds) ) ;
22e751a5 629}
72e7876b 630// keyboard focus
e40298d5 631OSErr UMASetKeyboardFocus (WindowPtr inWindow,
facd6764 632 ControlRef inControl,
e40298d5 633 ControlFocusPart inPart)
72e7876b 634{
e40298d5
JS
635 OSErr err = noErr;
636 GrafPtr port ;
637 GetPort( &port ) ;
72055702 638
e40298d5 639 SetPortWindowPort( inWindow ) ;
72055702 640
e40298d5
JS
641 err = SetKeyboardFocus( inWindow , inControl , inPart ) ;
642 SetPort( port ) ;
643 return err ;
72e7876b
SC
644}
645
58751a86 646bool UMAIsWindowFloating( WindowRef inWindow )
72e7876b 647{
e40298d5 648 WindowClass cl ;
58751a86 649
e40298d5
JS
650 GetWindowClass( inWindow , &cl ) ;
651 return cl == kFloatingWindowClass ;
72e7876b
SC
652}
653
58751a86 654bool UMAIsWindowModal( WindowRef inWindow )
72e7876b 655{
e40298d5 656 WindowClass cl ;
58751a86 657
e40298d5
JS
658 GetWindowClass( inWindow , &cl ) ;
659 return cl < kFloatingWindowClass ;
72e7876b
SC
660}
661
662// others
663
664void UMAHighlightAndActivateWindow( WindowRef inWindowRef , bool inActivate )
665{
e40298d5
JS
666 if ( inWindowRef )
667 {
668// bool isHighlighted = IsWindowHighlited( inWindowRef ) ;
669// if ( inActivate != isHightlited )
670 GrafPtr port ;
671 GetPort( &port ) ;
672 SetPortWindowPort( inWindowRef ) ;
673 HiliteWindow( inWindowRef , inActivate ) ;
facd6764 674 ControlRef control = NULL ;
e40298d5
JS
675 ::GetRootControl( inWindowRef , & control ) ;
676 if ( control )
677 {
678 if ( inActivate )
679 UMAActivateControl( control ) ;
680 else
681 UMADeactivateControl( control ) ;
58751a86 682 }
e40298d5
JS
683 SetPort( port ) ;
684 }
72e7876b 685}
e40298d5 686
58751a86 687OSStatus UMADrawThemePlacard( const Rect *inRect , ThemeDrawState inState )
2f1ae414 688{
e40298d5 689 return ::DrawThemePlacard( inRect , inState ) ;
2f1ae414 690}
72e7876b 691
2f056c85 692#if !TARGET_CARBON
b03e4fcd 693static OSStatus helpMenuStatus = noErr ;
b03e4fcd 694static MenuItemIndex firstCustomItemIndex = 0 ;
2f056c85 695#endif
b03e4fcd
SC
696
697OSStatus UMAGetHelpMenu(
698 MenuRef * outHelpMenu,
699 MenuItemIndex * outFirstCustomItemIndex)
700{
701#if TARGET_CARBON
e40298d5 702 return HMGetHelpMenu( outHelpMenu , outFirstCustomItemIndex ) ;
b03e4fcd 703#else
e40298d5
JS
704 MenuRef helpMenuHandle ;
705 helpMenuStatus = HMGetHelpMenuHandle( &helpMenuHandle ) ;
706 if ( firstCustomItemIndex == 0 && helpMenuStatus == noErr )
707 {
708 firstCustomItemIndex = CountMenuItems( helpMenuHandle ) + 1 ;
709 }
710 if ( outFirstCustomItemIndex )
711 {
712 *outFirstCustomItemIndex = firstCustomItemIndex ;
713 }
714 *outHelpMenu = helpMenuHandle ;
715 return helpMenuStatus ;
b03e4fcd
SC
716#endif
717}
76a5e5d2 718
58751a86 719wxMacPortStateHelper::wxMacPortStateHelper( GrafPtr newport)
76a5e5d2 720{
e40298d5
JS
721 m_clip = NULL ;
722 Setup( newport ) ;
76a5e5d2
SC
723}
724
725wxMacPortStateHelper::wxMacPortStateHelper()
726{
e40298d5 727 m_clip = NULL ;
76a5e5d2
SC
728}
729
730void wxMacPortStateHelper::Setup( GrafPtr newport )
731{
e40298d5
JS
732 GetPort( &m_oldPort ) ;
733 SetPort( newport ) ;
f17e0be4 734 SetOrigin(0,0);
427ff662 735 wxASSERT_MSG( m_clip == NULL , wxT("Cannot call setup twice") ) ;
e40298d5
JS
736 m_clip = NewRgn() ;
737 GetClip( m_clip );
738 m_textFont = GetPortTextFont( (CGrafPtr) newport);
739 m_textSize = GetPortTextSize( (CGrafPtr) newport);
740 m_textStyle = GetPortTextFace( (CGrafPtr) newport);
58751a86 741 m_textMode = GetPortTextMode( (CGrafPtr) newport);
e40298d5
JS
742 GetThemeDrawingState( &m_drawingState ) ;
743 m_currentPort = newport ;
76a5e5d2
SC
744}
745void wxMacPortStateHelper::Clear()
746{
e40298d5
JS
747 if ( m_clip )
748 {
749 DisposeRgn( m_clip ) ;
750 DisposeThemeDrawingState( m_drawingState ) ;
751 m_clip = NULL ;
752 }
76a5e5d2
SC
753}
754
755wxMacPortStateHelper::~wxMacPortStateHelper()
756{
e40298d5
JS
757 if ( m_clip )
758 {
759 SetPort( m_currentPort ) ;
760 SetClip( m_clip ) ;
761 DisposeRgn( m_clip ) ;
762 TextFont( m_textFont );
763 TextSize( m_textSize );
764 TextFace( m_textStyle );
765 TextMode( m_textMode );
766 SetThemeDrawingState( m_drawingState , true ) ;
767 SetPort( m_oldPort ) ;
768 }
76a5e5d2
SC
769}
770
9c3c5849
SC
771OSStatus UMAPutScrap( Size size , OSType type , void *data )
772{
e40298d5 773 OSStatus err = noErr ;
9c3c5849
SC
774#if !TARGET_CARBON
775 err = PutScrap( size , type , data ) ;
776#else
777 ScrapRef scrap;
58751a86 778 err = GetCurrentScrap (&scrap);
9c3c5849
SC
779 if ( !err )
780 {
781 err = PutScrapFlavor (scrap, type , 0, size, data);
782 }
783#endif
e40298d5 784 return err ;
9c3c5849
SC
785}
786
facd6764
SC
787Rect* UMAGetControlBoundsInWindowCoords(ControlRef theControl, Rect *bounds)
788{
789 wxWindow* win = wxFindControlFromMacControl( theControl ) ;
790
791 GetControlBounds( theControl , bounds ) ;
792#if TARGET_API_MAC_OSX
793 if ( win != NULL && win->MacGetTopLevelWindow() != NULL )
794 {
795 int x , y ;
796 x = 0 ;
797 y = 0 ;
798
799 win->GetParent()->MacWindowToRootWindow( &x , & y ) ;
800 bounds->left += x ;
801 bounds->right += x ;
802 bounds->top += y ;
803 bounds->bottom += y ;
804 }
805#endif
806 return bounds ;
807}
808
809
2dbc444a
RD
810#endif // wxUSE_GUI
811
812#if wxUSE_BASE
813
814static bool sUMASystemInitialized = false ;
815
816bool UMASystemIsInitialized()
817{
818 return sUMASystemInitialized ;
819}
820
821void UMASetSystemIsInitialized(bool val)
822{
823 sUMASystemInitialized = val;
824}
825
826
827#endif // wxUSE_BASE