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