]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/uma.h
added support for gcc precompiled headers
[wxWidgets.git] / include / wx / mac / uma.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: uma.h
3 // Purpose: Universal MacOS API
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 03/02/99
7 // RCS-ID: $Id:
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef H_UMA
13 #define H_UMA
14
15 #include "wx/mac/private.h"
16
17 void UMAInitToolbox( UInt16 inMoreMastersCalls) ;
18 void UMACleanupToolbox() ;
19 long UMAGetSystemVersion() ;
20 bool UMAHasAppearance() ;
21 long UMAGetAppearanceVersion() ;
22 bool UMAHasWindowManager() ;
23 long UMAGetWindowManagerAttr() ;
24 bool UMAHasAquaLayout() ;
25 bool UMASystemIsInitialized() ;
26
27 // process manager
28
29 long UMAGetProcessMode() ;
30 bool UMAGetProcessModeDoesActivateOnFGSwitch() ;
31
32 // menu manager
33
34 MenuRef UMANewMenu( SInt16 id , const wxString& title ) ;
35 void UMASetMenuTitle( MenuRef menu , const wxString& title ) ;
36 UInt32 UMAMenuEvent( EventRecord *inEvent ) ;
37 void UMAEnableMenuItem( MenuRef inMenu , MenuItemIndex item , bool enable ) ;
38
39 void UMAAppendSubMenuItem( MenuRef menu , const wxString& title , SInt16 submenuid ) ;
40 void UMAInsertSubMenuItem( MenuRef menu , const wxString& title , MenuItemIndex item , SInt16 submenuid ) ;
41 void UMAAppendMenuItem( MenuRef menu , const wxString& title , wxAcceleratorEntry *entry = NULL ) ;
42 void UMAInsertMenuItem( MenuRef menu , const wxString& title , MenuItemIndex item , wxAcceleratorEntry *entry = NULL ) ;
43 void UMASetMenuItemShortcut( MenuRef menu , MenuItemIndex item , wxAcceleratorEntry *entry ) ;
44
45 void UMASetMenuItemText( MenuRef menu, MenuItemIndex item, const wxString& title ) ;
46
47 // quickdraw
48
49 void UMAShowWatchCursor() ;
50 void UMAShowArrowCursor() ;
51
52 #if !TARGET_CARBON
53 OSStatus UMAPrOpen() ;
54 OSStatus UMAPrClose() ;
55 #endif
56
57 // window manager
58
59 GrafPtr UMAGetWindowPort( WindowRef inWindowRef ) ;
60 void UMADisposeWindow( WindowRef inWindowRef ) ;
61 void UMASetWTitle( WindowRef inWindowRef , const wxString& title ) ;
62 void UMAGetWTitleC( WindowRef inWindowRef , char *title ) ;
63
64 void UMADrawGrowIcon( WindowRef inWindowRef ) ;
65 void UMAShowHide( WindowRef inWindowRef , Boolean show) ;
66
67 // appearance manager
68
69 void UMADrawControl( ControlHandle inControl ) ;
70
71 void UMAEnableControl( ControlHandle inControl ) ;
72 void UMADisableControl( ControlHandle inControl ) ;
73 void UMAActivateControl( ControlHandle inControl ) ;
74 void UMADeactivateControl( ControlHandle inControl ) ;
75 // ControlPartCode hiliteState) ;
76 void UMAShowControl (ControlHandle theControl) ;
77 void UMAHideControl (ControlHandle theControl);
78 void UMAActivateControl (ControlHandle inControl);
79 void UMADeactivateControl (ControlHandle inControl);
80 void UMASetControlTitle( ControlHandle inControl , const wxString& title ) ;
81
82 void UMAMoveControl( ControlHandle inControl , short x , short y ) ;
83 void UMASizeControl( ControlHandle inControl , short x , short y ) ;
84 // control hierarchy
85
86 // keyboard focus
87 OSErr UMASetKeyboardFocus (WindowPtr inWindow,
88 ControlHandle inControl,
89 ControlFocusPart inPart) ;
90
91 // events
92
93 void UMAUpdateControls( WindowPtr inWindow , RgnHandle inRgn ) ;
94 OSErr UMAGetRootControl( WindowPtr inWindow , ControlHandle *outControl ) ;
95
96 // handling control data
97 bool UMAIsWindowFloating( WindowRef inWindow ) ;
98 bool UMAIsWindowModal( WindowRef inWindow ) ;
99
100 void UMAHighlightAndActivateWindow( WindowRef inWindowRef , bool inActivate ) ;
101
102 OSStatus UMAGetHelpMenu(
103 MenuRef * outHelpMenu,
104 MenuItemIndex * outFirstCustomItemIndex); /* can be NULL */
105
106 // Appearance Drawing
107
108 OSStatus UMADrawThemePlacard( const Rect *inRect , ThemeDrawState inState ) ;
109
110 // Clipboard support
111
112 OSStatus UMAPutScrap( Size size , OSType type , void *data ) ;
113
114 // accessor helpers
115
116 #if !TARGET_CARBON
117 #define ClearCurrentScrap() ZeroScrap() ;
118 #define GetApplicationScript() smSystemScript
119 #else
120
121 // calls not in carbon
122
123 #endif
124 #define GetWindowUpdateRgn( inWindow , updateRgn ) GetWindowRegion( inWindow , kWindowUpdateRgn, updateRgn )
125
126 #endif