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