]>
Commit | Line | Data |
---|---|---|
03e11df5 | 1 | #include "wx/defs.h" |
5fde6fcc | 2 | #include "wx/dc.h" |
03e11df5 | 3 | #include "wx/mac/uma.h" |
b03e4fcd | 4 | #include <MacTextEditor.h> |
72e7876b | 5 | |
f5c6eb5c | 6 | #ifndef __DARWIN__ |
a3d3d3bf GD |
7 | # include <Navigation.h> |
8 | # if defined(TARGET_CARBON) | |
9 | # if PM_USE_SESSION_APIS | |
10 | # include <PMCore.h> | |
11 | # endif | |
12 | # include <PMApplication.h> | |
66a09d47 SC |
13 | # else |
14 | # include <Printing.h> | |
a3d3d3bf | 15 | # endif |
03e11df5 | 16 | #endif |
5b781a67 | 17 | |
72055702 SC |
18 | // since we have decided that we only support 8.6 upwards we are |
19 | // checking for these minimum requirements in the startup code of | |
20 | // the application so all wxWindows code can safely assume that appearance 1.1 | |
21 | // windows manager, control manager, navigation services etc. are | |
22 | // present | |
e7b596fb | 23 | |
72e7876b SC |
24 | static bool sUMAHasAppearance = false ; |
25 | static long sUMAAppearanceVersion = 0 ; | |
0888ccc7 | 26 | static bool sUMAHasAquaLayout = false ; |
0e5a4d20 SC |
27 | static bool sUMASystemInitialized = false ; |
28 | ||
72e7876b SC |
29 | extern int gAGABackgroundColor ; |
30 | bool UMAHasAppearance() { return sUMAHasAppearance ; } | |
31 | long UMAGetAppearanceVersion() { return sUMAAppearanceVersion ; } | |
32 | ||
33 | static bool sUMAHasWindowManager = false ; | |
34 | static long sUMAWindowManagerAttr = 0 ; | |
35 | ||
36 | bool UMAHasWindowManager() { return sUMAHasWindowManager ; } | |
37 | long UMAGetWindowManagerAttr() { return sUMAWindowManagerAttr ; } | |
0888ccc7 | 38 | bool UMAHasAquaLayout() { return sUMAHasAquaLayout ; } |
0e5a4d20 | 39 | bool UMASystemIsInitialized() { return sUMASystemInitialized ; } |
72055702 | 40 | |
5b781a67 SC |
41 | void UMACleanupToolbox() |
42 | { | |
5b781a67 SC |
43 | if ( sUMAHasAppearance ) |
44 | { | |
45 | UnregisterAppearanceClient() ; | |
46 | } | |
5b781a67 SC |
47 | if ( NavServicesAvailable() ) |
48 | { | |
49 | NavUnload() ; | |
50 | } | |
f8eebb95 SC |
51 | if ( TXNTerminateTextension != (void*) kUnresolvedCFragSymbolAddress ) |
52 | TXNTerminateTextension( ) ; | |
5b781a67 | 53 | } |
72e7876b SC |
54 | void UMAInitToolbox( UInt16 inMoreMastersCalls ) |
55 | { | |
56 | #if !TARGET_CARBON | |
57 | ::MaxApplZone(); | |
58 | for (long i = 1; i <= inMoreMastersCalls; i++) | |
59 | ::MoreMasters(); | |
60 | ||
61 | ::InitGraf(&qd.thePort); | |
62 | ::InitFonts(); | |
72e7876b SC |
63 | ::InitMenus(); |
64 | ::TEInit(); | |
65 | ::InitDialogs(0L); | |
66 | ::FlushEvents(everyEvent, 0); | |
67 | ::InitCursor(); | |
68 | long total,contig; | |
69 | PurgeSpace(&total, &contig); | |
70 | #else | |
2f1ae414 | 71 | InitCursor(); |
72e7876b SC |
72 | #endif |
73 | ||
72e7876b SC |
74 | long theAppearance ; |
75 | if ( Gestalt( gestaltAppearanceAttr, &theAppearance ) == noErr ) | |
76 | { | |
77 | sUMAHasAppearance = true ; | |
78 | RegisterAppearanceClient(); | |
79 | if ( Gestalt( gestaltAppearanceVersion, &theAppearance ) == noErr ) | |
80 | { | |
81 | sUMAAppearanceVersion = theAppearance ; | |
82 | } | |
83 | else | |
84 | { | |
85 | sUMAAppearanceVersion = 0x0100 ; | |
86 | } | |
87 | } | |
72e7876b SC |
88 | if ( Gestalt( gestaltWindowMgrAttr, &sUMAWindowManagerAttr ) == noErr ) |
89 | { | |
90 | sUMAHasWindowManager = sUMAWindowManagerAttr & gestaltWindowMgrPresent ; | |
91 | } | |
5b781a67 | 92 | |
8e8d3ba8 SC |
93 | #if TARGET_CARBON |
94 | // Call currently implicitely done : InitFloatingWindows() ; | |
95 | #else | |
5b781a67 SC |
96 | if ( sUMAHasWindowManager ) |
97 | InitFloatingWindows() ; | |
98 | else | |
99 | InitWindows(); | |
03e11df5 | 100 | #endif |
5b781a67 SC |
101 | |
102 | if ( NavServicesAvailable() ) | |
103 | { | |
104 | NavLoad() ; | |
105 | } | |
b03e4fcd | 106 | |
f8eebb95 SC |
107 | if ( TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress ) |
108 | { | |
564bf1ea SC |
109 | FontFamilyID fontId ; |
110 | Str255 fontName ; | |
111 | SInt16 fontSize ; | |
112 | Style fontStyle ; | |
113 | GetThemeFont(kThemeSmallSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ; | |
114 | GetFNum( fontName, &fontId ); | |
115 | ||
116 | TXNMacOSPreferredFontDescription fontDescriptions[] = | |
117 | { | |
118 | { fontId , (fontSize << 16) ,kTXNDefaultFontStyle, kTXNSystemDefaultEncoding } , | |
119 | } ; | |
120 | int noOfFontDescriptions = sizeof( fontDescriptions ) / sizeof(TXNMacOSPreferredFontDescription) ; | |
121 | #if TARGET_CARBON | |
122 | --noOfFontDescriptions ; | |
123 | #endif | |
124 | // kTXNAlwaysUseQuickDrawTextMask might be desirable because of speed increases but it crashes the app under OS X upon key stroke | |
125 | TXNInitTextension(fontDescriptions, noOfFontDescriptions, ( kTXNWantMoviesMask | kTXNWantSoundMask | kTXNWantGraphicsMask)); | |
f8eebb95 SC |
126 | } |
127 | ||
0888ccc7 SC |
128 | long menuMgrAttr ; |
129 | Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ; | |
130 | if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask ) | |
131 | sUMAHasAquaLayout = true ; | |
0e5a4d20 | 132 | sUMASystemInitialized = true ; |
66a09d47 | 133 | |
72e7876b SC |
134 | } |
135 | ||
66a09d47 SC |
136 | /* |
137 | Boolean CanUseATSUI() | |
138 | { | |
139 | long result; | |
140 | OSErr err = Gestalt(gestaltATSUVersion, &result); | |
141 | return (err == noErr); | |
142 | } | |
143 | */ | |
72e7876b SC |
144 | // process manager |
145 | long UMAGetProcessMode() | |
146 | { | |
147 | OSErr err ; | |
148 | ProcessInfoRec processinfo; | |
149 | ProcessSerialNumber procno ; | |
150 | ||
151 | procno.highLongOfPSN = NULL ; | |
152 | procno.lowLongOfPSN = kCurrentProcess ; | |
153 | processinfo.processInfoLength = sizeof(ProcessInfoRec); | |
154 | processinfo.processName = NULL; | |
155 | processinfo.processAppSpec = NULL; | |
156 | ||
157 | err = ::GetProcessInformation( &procno , &processinfo ) ; | |
158 | wxASSERT( err == noErr ) ; | |
159 | return processinfo.processMode ; | |
160 | } | |
161 | ||
162 | bool UMAGetProcessModeDoesActivateOnFGSwitch() | |
163 | { | |
164 | return UMAGetProcessMode() & modeDoesActivateOnFGSwitch ; | |
165 | } | |
166 | ||
167 | // menu manager | |
168 | ||
2f1ae414 | 169 | void UMASetMenuTitle( MenuRef menu , StringPtr title ) |
72e7876b | 170 | { |
76a5e5d2 | 171 | /* |
72e7876b SC |
172 | #if !TARGET_CARBON |
173 | long size = GetHandleSize( (Handle) menu ) ; | |
174 | const long headersize = 14 ; | |
175 | int oldlen = (**menu).menuData[0] + 1; | |
176 | int newlen = title[0] + 1 ; | |
177 | ||
178 | if ( oldlen < newlen ) | |
179 | { | |
180 | // enlarge before adjusting | |
181 | SetHandleSize( (Handle) menu , size + (newlen - oldlen ) ); | |
182 | } | |
183 | ||
184 | if ( oldlen != newlen ) | |
185 | memmove( (char*) (**menu).menuData + newlen , (char*) (**menu).menuData + oldlen , size - headersize - oldlen ) ; | |
186 | ||
187 | memcpy( (char*) (**menu).menuData , title , newlen ) ; | |
188 | if ( oldlen > newlen ) | |
189 | { | |
190 | // shrink after | |
191 | SetHandleSize( (Handle) menu , size + (newlen - oldlen ) ) ; | |
192 | } | |
193 | #else | |
76a5e5d2 | 194 | */ |
72e7876b | 195 | SetMenuTitle( menu , title ) ; |
76a5e5d2 | 196 | //#endif |
72e7876b SC |
197 | } |
198 | ||
199 | UInt32 UMAMenuEvent( EventRecord *inEvent ) | |
200 | { | |
72e7876b | 201 | return MenuEvent( inEvent ) ; |
72e7876b SC |
202 | } |
203 | ||
204 | void UMAEnableMenuItem( MenuRef inMenu , MenuItemIndex inItem ) | |
205 | { | |
72e7876b | 206 | EnableMenuItem( inMenu , inItem ) ; |
72e7876b SC |
207 | } |
208 | ||
209 | void UMADisableMenuItem( MenuRef inMenu , MenuItemIndex inItem ) | |
210 | { | |
72e7876b | 211 | DisableMenuItem( inMenu , inItem ) ; |
72e7876b | 212 | } |
2f1ae414 SC |
213 | |
214 | void UMAAppendSubMenuItem( MenuRef menu , StringPtr l , SInt16 id ) | |
215 | { | |
216 | Str255 label ; | |
217 | memcpy( label , l , l[0]+1 ) ; | |
218 | // hardcoded adding of the submenu combination for mac | |
219 | ||
220 | int theEnd = label[0] + 1; | |
221 | if (theEnd > 251) | |
222 | theEnd = 251; // mac allows only 255 characters | |
223 | label[theEnd++] = '/'; | |
224 | label[theEnd++] = hMenuCmd; | |
225 | label[theEnd++] = '!'; | |
226 | label[theEnd++] = id ; | |
227 | label[theEnd] = 0x00; | |
228 | label[0] = theEnd; | |
229 | MacAppendMenu(menu, label); | |
230 | } | |
231 | ||
232 | void UMAInsertSubMenuItem( MenuRef menu , StringPtr l , MenuItemIndex item , SInt16 id ) | |
233 | { | |
234 | Str255 label ; | |
235 | memcpy( label , l , l[0]+1 ) ; | |
236 | // hardcoded adding of the submenu combination for mac | |
237 | ||
238 | int theEnd = label[0] + 1; | |
239 | if (theEnd > 251) | |
240 | theEnd = 251; // mac allows only 255 characters | |
241 | label[theEnd++] = '/'; | |
242 | label[theEnd++] = hMenuCmd; | |
243 | label[theEnd++] = '!'; | |
244 | label[theEnd++] = id; | |
245 | label[theEnd] = 0x00; | |
246 | label[0] = theEnd; | |
247 | MacInsertMenuItem(menu, label , item); | |
248 | } | |
249 | ||
250 | void UMAAppendMenuItem( MenuRef menu , StringPtr l , SInt16 key, UInt8 modifiers ) | |
251 | { | |
252 | Str255 label ; | |
253 | memcpy( label , l , l[0]+1 ) ; | |
254 | if ( key ) | |
255 | { | |
256 | int pos = label[0] ; | |
257 | label[++pos] = '/'; | |
258 | label[++pos] = toupper( key ); | |
259 | label[0] = pos ; | |
260 | } | |
261 | MacAppendMenu( menu , label ) ; | |
262 | } | |
263 | ||
264 | void UMAInsertMenuItem( MenuRef menu , StringPtr l , MenuItemIndex item , SInt16 key, UInt8 modifiers ) | |
265 | { | |
266 | Str255 label ; | |
267 | memcpy( label , l , l[0]+1 ) ; | |
268 | if ( key ) | |
269 | { | |
270 | int pos = label[0] ; | |
271 | label[++pos] = '/'; | |
272 | label[++pos] = toupper( key ); | |
273 | label[0] = pos ; | |
274 | } | |
275 | MacInsertMenuItem( menu , label , item) ; | |
276 | } | |
277 | ||
72e7876b SC |
278 | // quickdraw |
279 | ||
2f1ae414 SC |
280 | int gPrOpenCounter = 0 ; |
281 | ||
a3d3d3bf | 282 | OSStatus UMAPrOpen(void *macPrintSession) |
2f1ae414 SC |
283 | { |
284 | #if !TARGET_CARBON | |
285 | OSErr err = noErr ; | |
286 | ++gPrOpenCounter ; | |
287 | if ( gPrOpenCounter == 1 ) | |
288 | { | |
289 | PrOpen() ; | |
290 | err = PrError() ; | |
291 | wxASSERT( err == noErr ) ; | |
292 | } | |
5b781a67 | 293 | return err ; |
2f1ae414 | 294 | #else |
5b781a67 SC |
295 | OSStatus err = noErr ; |
296 | ++gPrOpenCounter ; | |
297 | if ( gPrOpenCounter == 1 ) | |
298 | { | |
a689a4d0 | 299 | #if PM_USE_SESSION_APIS |
a3d3d3bf | 300 | err = PMCreateSession((PMPrintSession *)macPrintSession) ; |
a689a4d0 GD |
301 | #else |
302 | err = PMBegin() ; | |
303 | #endif | |
5b781a67 SC |
304 | wxASSERT( err == noErr ) ; |
305 | } | |
306 | return err ; | |
2f1ae414 SC |
307 | #endif |
308 | } | |
309 | ||
a3d3d3bf | 310 | OSStatus UMAPrClose(void *macPrintSession) |
2f1ae414 SC |
311 | { |
312 | #if !TARGET_CARBON | |
313 | OSErr err = noErr ; | |
314 | wxASSERT( gPrOpenCounter >= 1 ) ; | |
315 | if ( gPrOpenCounter == 1 ) | |
316 | { | |
317 | PrClose() ; | |
318 | err = PrError() ; | |
319 | wxASSERT( err == noErr ) ; | |
320 | } | |
321 | --gPrOpenCounter ; | |
5b781a67 | 322 | return err ; |
2f1ae414 | 323 | #else |
5b781a67 SC |
324 | OSStatus err = noErr ; |
325 | wxASSERT( gPrOpenCounter >= 1 ) ; | |
326 | if ( gPrOpenCounter == 1 ) | |
327 | { | |
a689a4d0 | 328 | #if PM_USE_SESSION_APIS |
a3d3d3bf GD |
329 | err = PMRelease(*(PMPrintSession *)macPrintSession) ; |
330 | *(PMPrintSession *)macPrintSession = kPMNoReference; | |
a689a4d0 GD |
331 | #else |
332 | err = PMEnd() ; | |
333 | #endif | |
5b781a67 SC |
334 | } |
335 | --gPrOpenCounter ; | |
336 | return err ; | |
2f1ae414 SC |
337 | #endif |
338 | } | |
339 | ||
72e7876b SC |
340 | #if !TARGET_CARBON |
341 | ||
72055702 | 342 | pascal QDGlobalsPtr GetQDGlobalsPtr (void) ; |
72e7876b SC |
343 | pascal QDGlobalsPtr GetQDGlobalsPtr (void) |
344 | { | |
345 | return QDGlobalsPtr (* (Ptr*) LMGetCurrentA5 ( ) - 0xCA); | |
346 | } | |
347 | ||
348 | #endif | |
349 | ||
350 | void UMAShowWatchCursor() | |
351 | { | |
352 | OSErr err = noErr; | |
353 | ||
354 | CursHandle watchFob = GetCursor (watchCursor); | |
355 | ||
356 | if (!watchFob) | |
357 | err = nilHandleErr; | |
358 | else | |
359 | { | |
360 | #if TARGET_CARBON | |
72055702 SC |
361 | // Cursor preservedArrow; |
362 | // GetQDGlobalsArrow (&preservedArrow); | |
363 | // SetQDGlobalsArrow (*watchFob); | |
364 | // InitCursor ( ); | |
365 | // SetQDGlobalsArrow (&preservedArrow); | |
366 | SetCursor (*watchFob); | |
72e7876b SC |
367 | #else |
368 | SetCursor (*watchFob); | |
369 | #endif | |
370 | } | |
371 | } | |
372 | ||
373 | void UMAShowArrowCursor() | |
374 | { | |
375 | #if TARGET_CARBON | |
376 | Cursor arrow; | |
377 | SetCursor (GetQDGlobalsArrow (&arrow)); | |
378 | #else | |
379 | SetCursor (&(qd.arrow)); | |
380 | #endif | |
381 | } | |
382 | ||
383 | // window manager | |
384 | ||
385 | GrafPtr UMAGetWindowPort( WindowRef inWindowRef ) | |
386 | { | |
387 | wxASSERT( inWindowRef != NULL ) ; | |
388 | #if TARGET_CARBON | |
cf6674a4 | 389 | return (GrafPtr) GetWindowPort( inWindowRef ) ; |
72e7876b SC |
390 | #else |
391 | return (GrafPtr) inWindowRef ; | |
392 | #endif | |
393 | } | |
394 | ||
395 | void UMADisposeWindow( WindowRef inWindowRef ) | |
396 | { | |
397 | wxASSERT( inWindowRef != NULL ) ; | |
398 | DisposeWindow( inWindowRef ) ; | |
399 | } | |
400 | ||
401 | void UMASetWTitleC( WindowRef inWindowRef , const char *title ) | |
402 | { | |
403 | Str255 ptitle ; | |
404 | strncpy( (char*)ptitle , title , 96 ) ; | |
405 | ptitle[96] = 0 ; | |
03e11df5 GD |
406 | #if TARGET_CARBON |
407 | c2pstrcpy( ptitle, (char *)ptitle ) ; | |
408 | #else | |
72e7876b | 409 | c2pstr( (char*)ptitle ) ; |
03e11df5 | 410 | #endif |
72e7876b SC |
411 | SetWTitle( inWindowRef , ptitle ) ; |
412 | } | |
03e11df5 | 413 | |
72e7876b SC |
414 | void UMAGetWTitleC( WindowRef inWindowRef , char *title ) |
415 | { | |
416 | GetWTitle( inWindowRef , (unsigned char*)title ) ; | |
03e11df5 GD |
417 | #if TARGET_CARBON |
418 | p2cstrcpy( title, (unsigned char *)title ) ; | |
419 | #else | |
72e7876b | 420 | p2cstr( (unsigned char*)title ) ; |
03e11df5 | 421 | #endif |
72e7876b SC |
422 | } |
423 | ||
72e7876b SC |
424 | // appearance additions |
425 | ||
426 | void UMAActivateControl( ControlHandle inControl ) | |
427 | { | |
22e751a5 SC |
428 | // we have to add the control after again to the update rgn |
429 | // otherwise updates get lost | |
430 | if ( !IsControlActive( inControl ) ) | |
431 | { | |
fdaf613a SC |
432 | bool visible = IsControlVisible( inControl ) ; |
433 | if ( visible ) | |
434 | SetControlVisibility( inControl , false , false ) ; | |
3f4902f5 | 435 | ::ActivateControl( inControl ) ; |
fdaf613a SC |
436 | if ( visible ) { |
437 | SetControlVisibility( inControl , true , false ) ; | |
c36f0244 SC |
438 | Rect ctrlBounds ; |
439 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
fdaf613a | 440 | } |
22e751a5 | 441 | } |
72e7876b SC |
442 | } |
443 | ||
444 | void UMADrawControl( ControlHandle inControl ) | |
445 | { | |
3f4902f5 GD |
446 | WindowRef theWindow = GetControlOwner(inControl) ; |
447 | RgnHandle updateRgn = NewRgn() ; | |
3f4902f5 | 448 | GetWindowUpdateRgn( theWindow , updateRgn ) ; |
22e751a5 SC |
449 | Point zero = { 0 , 0 } ; |
450 | LocalToGlobal( &zero ) ; | |
451 | OffsetRgn( updateRgn , -zero.h , -zero.v ) ; | |
452 | ::DrawControlInCurrentPort( inControl ) ; | |
453 | InvalWindowRgn( theWindow, updateRgn) ; | |
454 | DisposeRgn( updateRgn ) ; | |
72e7876b SC |
455 | } |
456 | ||
457 | void UMAMoveControl( ControlHandle inControl , short x , short y ) | |
458 | { | |
72055702 SC |
459 | bool visible = IsControlVisible( inControl ) ; |
460 | if ( visible ) { | |
461 | SetControlVisibility( inControl , false , false ) ; | |
462 | Rect ctrlBounds ; | |
463 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
464 | } | |
465 | ::MoveControl( inControl , x , y ) ; | |
466 | if ( visible ) { | |
467 | SetControlVisibility( inControl , true , false ) ; | |
468 | Rect ctrlBounds ; | |
469 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
470 | } | |
72e7876b SC |
471 | } |
472 | ||
473 | void UMASizeControl( ControlHandle inControl , short x , short y ) | |
474 | { | |
72055702 SC |
475 | bool visible = IsControlVisible( inControl ) ; |
476 | if ( visible ) { | |
477 | SetControlVisibility( inControl , false , false ) ; | |
478 | Rect ctrlBounds ; | |
479 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
b03e4fcd | 480 | } |
72055702 SC |
481 | ::SizeControl( inControl , x , y ) ; |
482 | if ( visible ) { | |
483 | SetControlVisibility( inControl , true , false ) ; | |
484 | Rect ctrlBounds ; | |
485 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
486 | } | |
72e7876b SC |
487 | } |
488 | ||
489 | void UMADeactivateControl( ControlHandle inControl ) | |
490 | { | |
22e751a5 SC |
491 | // we have to add the control after again to the update rgn |
492 | // otherwise updates get lost | |
72055702 SC |
493 | bool visible = IsControlVisible( inControl ) ; |
494 | if ( visible ) | |
495 | SetControlVisibility( inControl , false , false ) ; | |
496 | ::DeactivateControl( inControl ) ; | |
497 | if ( visible ) { | |
498 | SetControlVisibility( inControl , true , false ) ; | |
499 | Rect ctrlBounds ; | |
500 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
501 | } | |
72e7876b | 502 | } |
fdaf613a | 503 | // shows the control and adds the region to the update region |
3f4902f5 | 504 | void UMAShowControl (ControlHandle inControl) |
72e7876b | 505 | { |
fdaf613a | 506 | SetControlVisibility( inControl , true , false ) ; |
c36f0244 SC |
507 | Rect ctrlBounds ; |
508 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
72e7876b SC |
509 | } |
510 | ||
22e751a5 SC |
511 | // shows the control and adds the region to the update region |
512 | void UMAHideControl (ControlHandle inControl) | |
513 | { | |
514 | SetControlVisibility( inControl , false , false ) ; | |
515 | Rect ctrlBounds ; | |
516 | InvalWindowRect(GetControlOwner(inControl),GetControlBounds(inControl,&ctrlBounds) ) ; | |
517 | } | |
72e7876b SC |
518 | // keyboard focus |
519 | OSErr UMASetKeyboardFocus (WindowPtr inWindow, | |
520 | ControlHandle inControl, | |
521 | ControlFocusPart inPart) | |
522 | { | |
2f1ae414 SC |
523 | OSErr err = noErr; |
524 | GrafPtr port ; | |
525 | GetPort( &port ) ; | |
72055702 SC |
526 | |
527 | SetPortWindowPort( inWindow ) ; | |
528 | ||
72055702 | 529 | err = SetKeyboardFocus( inWindow , inControl , inPart ) ; |
2f1ae414 SC |
530 | SetPort( port ) ; |
531 | return err ; | |
72e7876b SC |
532 | } |
533 | ||
534 | ||
535 | ||
536 | ||
537 | // events | |
72e7876b SC |
538 | void UMAUpdateControls( WindowPtr inWindow , RgnHandle inRgn ) |
539 | { | |
72055702 SC |
540 | RgnHandle updateRgn = NewRgn() ; |
541 | GetWindowUpdateRgn( inWindow , updateRgn ) ; | |
542 | ||
be57fda6 SC |
543 | Point zero = { 0 , 0 } ; |
544 | LocalToGlobal( &zero ) ; | |
545 | OffsetRgn( updateRgn , -zero.h , -zero.v ) ; | |
72e7876b | 546 | |
72055702 SC |
547 | UpdateControls( inWindow , inRgn ) ; |
548 | InvalWindowRgn( inWindow, updateRgn) ; | |
549 | DisposeRgn( updateRgn ) ; | |
72e7876b | 550 | |
72e7876b SC |
551 | } |
552 | ||
553 | bool UMAIsWindowFloating( WindowRef inWindow ) | |
554 | { | |
555 | WindowClass cl ; | |
556 | ||
72055702 | 557 | GetWindowClass( inWindow , &cl ) ; |
72e7876b SC |
558 | return cl == kFloatingWindowClass ; |
559 | } | |
560 | ||
561 | bool UMAIsWindowModal( WindowRef inWindow ) | |
562 | { | |
563 | WindowClass cl ; | |
564 | ||
72055702 | 565 | GetWindowClass( inWindow , &cl ) ; |
72e7876b SC |
566 | return cl < kFloatingWindowClass ; |
567 | } | |
568 | ||
569 | // others | |
570 | ||
571 | void UMAHighlightAndActivateWindow( WindowRef inWindowRef , bool inActivate ) | |
572 | { | |
573 | if ( inWindowRef ) | |
574 | { | |
575 | // bool isHighlighted = IsWindowHighlited( inWindowRef ) ; | |
576 | // if ( inActivate != isHightlited ) | |
c809f3be SC |
577 | GrafPtr port ; |
578 | GetPort( &port ) ; | |
72055702 | 579 | SetPortWindowPort( inWindowRef ) ; |
c809f3be SC |
580 | HiliteWindow( inWindowRef , inActivate ) ; |
581 | ControlHandle control = NULL ; | |
72055702 | 582 | ::GetRootControl( inWindowRef , & control ) ; |
c809f3be SC |
583 | if ( control ) |
584 | { | |
585 | if ( inActivate ) | |
586 | UMAActivateControl( control ) ; | |
587 | else | |
588 | UMADeactivateControl( control ) ; | |
589 | } | |
590 | SetPort( port ) ; | |
72e7876b SC |
591 | } |
592 | } | |
2f1ae414 SC |
593 | OSStatus UMADrawThemePlacard( const Rect *inRect , ThemeDrawState inState ) |
594 | { | |
72055702 | 595 | return ::DrawThemePlacard( inRect , inState ) ; |
2f1ae414 | 596 | } |
72e7876b | 597 | |
2f056c85 | 598 | #if !TARGET_CARBON |
b03e4fcd | 599 | static OSStatus helpMenuStatus = noErr ; |
b03e4fcd | 600 | static MenuItemIndex firstCustomItemIndex = 0 ; |
2f056c85 | 601 | #endif |
b03e4fcd SC |
602 | |
603 | OSStatus UMAGetHelpMenu( | |
604 | MenuRef * outHelpMenu, | |
605 | MenuItemIndex * outFirstCustomItemIndex) | |
606 | { | |
607 | #if TARGET_CARBON | |
608 | return HMGetHelpMenu( outHelpMenu , outFirstCustomItemIndex ) ; | |
609 | #else | |
ca5e5bad SC |
610 | MenuRef helpMenuHandle ; |
611 | helpMenuStatus = HMGetHelpMenuHandle( &helpMenuHandle ) ; | |
612 | if ( firstCustomItemIndex == 0 && helpMenuStatus == noErr ) | |
b03e4fcd | 613 | { |
ca5e5bad | 614 | firstCustomItemIndex = CountMenuItems( helpMenuHandle ) + 1 ; |
b03e4fcd SC |
615 | } |
616 | if ( outFirstCustomItemIndex ) | |
617 | { | |
618 | *outFirstCustomItemIndex = firstCustomItemIndex ; | |
619 | } | |
620 | *outHelpMenu = helpMenuHandle ; | |
621 | return helpMenuStatus ; | |
622 | #endif | |
623 | } | |
76a5e5d2 SC |
624 | |
625 | wxMacPortStateHelper::wxMacPortStateHelper( GrafPtr newport) | |
626 | { | |
627 | m_clip = NULL ; | |
628 | Setup( newport ) ; | |
629 | } | |
630 | ||
631 | wxMacPortStateHelper::wxMacPortStateHelper() | |
632 | { | |
633 | m_clip = NULL ; | |
634 | } | |
635 | ||
636 | void wxMacPortStateHelper::Setup( GrafPtr newport ) | |
637 | { | |
638 | GetPort( &m_oldPort ) ; | |
639 | SetPort( newport ) ; | |
640 | wxASSERT_MSG( m_clip == NULL , "Cannot call setup twice" ) ; | |
641 | m_clip = NewRgn() ; | |
642 | GetClip( m_clip ); | |
643 | m_textFont = GetPortTextFont( (CGrafPtr) newport); | |
644 | m_textSize = GetPortTextSize( (CGrafPtr) newport); | |
645 | m_textStyle = GetPortTextFace( (CGrafPtr) newport); | |
646 | m_textMode = GetPortTextMode( (CGrafPtr) newport); | |
647 | GetThemeDrawingState( &m_drawingState ) ; | |
648 | m_currentPort = newport ; | |
649 | } | |
650 | void wxMacPortStateHelper::Clear() | |
651 | { | |
652 | if ( m_clip ) | |
653 | { | |
654 | DisposeRgn( m_clip ) ; | |
655 | DisposeThemeDrawingState( m_drawingState ) ; | |
656 | m_clip = NULL ; | |
657 | } | |
658 | } | |
659 | ||
660 | wxMacPortStateHelper::~wxMacPortStateHelper() | |
661 | { | |
662 | if ( m_clip ) | |
663 | { | |
664 | SetPort( m_currentPort ) ; | |
665 | SetClip( m_clip ) ; | |
666 | DisposeRgn( m_clip ) ; | |
667 | TextFont( m_textFont ); | |
668 | TextSize( m_textSize ); | |
669 | TextFace( m_textStyle ); | |
670 | TextMode( m_textMode ); | |
671 | SetThemeDrawingState( m_drawingState , true ) ; | |
672 | SetPort( m_oldPort ) ; | |
673 | } | |
674 | } | |
675 |