{ File: HIToolbox/MacWindows.h Contains: Window Manager Interfaces Version: HIToolbox-219.4.81~2 Copyright: © 1997-2005 by Apple Computer, Inc., all rights reserved Bugs?: For bug reports, consult the following page on the World Wide Web: http://www.freepascal.org/bugs.html } { Pascal Translation Updated: Peter N Lewis, , August 2005 } { Modified for use with Free Pascal Version 200 Please report any bugs to } {$mode macpas} {$packenum 1} {$macro on} {$inline on} {$CALLING MWPASCAL} unit MacWindows; interface {$setc UNIVERSAL_INTERFACES_VERSION := $0342} {$setc GAP_INTERFACES_VERSION := $0200} {$ifc not defined USE_CFSTR_CONSTANT_MACROS} {$setc USE_CFSTR_CONSTANT_MACROS := TRUE} {$endc} {$ifc defined CPUPOWERPC and defined CPUI386} {$error Conflicting initial definitions for CPUPOWERPC and CPUI386} {$endc} {$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN} {$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN} {$endc} {$ifc not defined __ppc__ and defined CPUPOWERPC} {$setc __ppc__ := 1} {$elsec} {$setc __ppc__ := 0} {$endc} {$ifc not defined __i386__ and defined CPUI386} {$setc __i386__ := 1} {$elsec} {$setc __i386__ := 0} {$endc} {$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__} {$error Conflicting definitions for __ppc__ and __i386__} {$endc} {$ifc defined __ppc__ and __ppc__} {$setc TARGET_CPU_PPC := TRUE} {$setc TARGET_CPU_X86 := FALSE} {$elifc defined __i386__ and __i386__} {$setc TARGET_CPU_PPC := FALSE} {$setc TARGET_CPU_X86 := TRUE} {$elsec} {$error Neither __ppc__ nor __i386__ is defined.} {$endc} {$setc TARGET_CPU_PPC_64 := FALSE} {$ifc defined FPC_BIG_ENDIAN} {$setc TARGET_RT_BIG_ENDIAN := TRUE} {$setc TARGET_RT_LITTLE_ENDIAN := FALSE} {$elifc defined FPC_LITTLE_ENDIAN} {$setc TARGET_RT_BIG_ENDIAN := FALSE} {$setc TARGET_RT_LITTLE_ENDIAN := TRUE} {$elsec} {$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.} {$endc} {$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE} {$setc CALL_NOT_IN_CARBON := FALSE} {$setc OLDROUTINENAMES := FALSE} {$setc OPAQUE_TOOLBOX_STRUCTS := TRUE} {$setc OPAQUE_UPP_TYPES := TRUE} {$setc OTCARBONAPPLICATION := TRUE} {$setc OTKERNEL := FALSE} {$setc PM_USE_SESSION_APIS := TRUE} {$setc TARGET_API_MAC_CARBON := TRUE} {$setc TARGET_API_MAC_OS8 := FALSE} {$setc TARGET_API_MAC_OSX := TRUE} {$setc TARGET_CARBON := TRUE} {$setc TARGET_CPU_68K := FALSE} {$setc TARGET_CPU_MIPS := FALSE} {$setc TARGET_CPU_SPARC := FALSE} {$setc TARGET_OS_MAC := TRUE} {$setc TARGET_OS_UNIX := FALSE} {$setc TARGET_OS_WIN32 := FALSE} {$setc TARGET_RT_MAC_68881 := FALSE} {$setc TARGET_RT_MAC_CFM := FALSE} {$setc TARGET_RT_MAC_MACHO := TRUE} {$setc TYPED_FUNCTION_POINTERS := TRUE} {$setc TYPE_BOOL := FALSE} {$setc TYPE_EXTENDED := FALSE} {$setc TYPE_LONGLONG := TRUE} uses MacTypes,CFBase,Files,Appearance,CarbonEvents,HIToolbar,Aliases,AppleEvents,Collections,Drag,Events,Menus,MixedMode,QDOffscreen,Quickdraw,TextCommon,Icons,MacErrors,CFString,CGWindowLevels,HIGeometry,CarbonEventsCore; {$ALIGN MAC68K} { Current documentation for the Mac OS Window Manager is available on the web: } { } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ HIWindowRef } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type HIWindowRef = WindowRef; HIWindowRefPtr = ^HIWindowRef; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Property Types } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type PropertyCreator = OSType; type PropertyTag = OSType; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Classes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * WindowClass * * Summary: * The types of windows provided by the Window Manager. * * Discussion: * The class of a window determines several aspects of the window: * its appearance, its initial window attributes, its initial window * group, and its initial modality. All of these except for the * window's appearance may be changed later using other Window * Manager APIs. } type WindowClass = UInt32; WindowClass_fix = WindowClass; { used as field type when a record declaration contains a WindowClass field identifier } const { * An alert window is used when the application needs the user's * attention immediately. On Mac OS 9 and earlier, a visible alert * window will prevent the user from switching to any other * application. Use kThemeBrushAlertBackgroundActive to draw the * background of alert windows. Alert windows are initially placed in * the modal window group, given a modality of * kWindowModalityAppModal, and given an activation scope of * kWindowActivationScopeAll. Available in Mac OS 8.5 and later. } kAlertWindowClass = 1; { * Similar to kAlertWindowClass, but provides a window that is * movable and that allows switching to other applications. Generally * you should use this window class rather than kAlertWindowClass. * Use kThemeBrushAlertBackgroundActive to draw the background of * movable alert windows. Movable alert windows are initially placed * in the modal window group, given a modality of * kWindowModalityAppModal, and given an activation scope of * kWindowActivationScopeAll. Available in Mac OS 8.5 and later. } kMovableAlertWindowClass = 2; { * A modal window is used to display a dialog (but not an alert; use * kAlertWindowClass for alerts). On Mac OS 9 and earlier, a visible * modal window will prevent the user from switching to any other * application. Use kThemeBrushDialogBackgroundActive to draw the * background of modal windows. Modal windows are initially placed in * the modal window group, given a modality of * kWindowModalityAppModal, and given an activation scope of * kWindowActivationScopeAll. Available in Mac OS 8.5 and later. } kModalWindowClass = 3; { * Similar to kModalWindowClass, but provides a window that is * movable and that allows switching to other applications. Generally * you should use this window class rather than kModalWindowClass. If * you are using CarbonLib 1.3 or later, or Mac OS X, use * kThemeBrushMovableModalBackground to draw the background of * movable modal windows; on earlier versions of CarbonLib, or for * non-Carbon programming, use kThemeBrushDialogBackgroundActive. * Movable modal windows are initially placed in the modal window * group, given a modality of kWindowModalityAppModal, and given an * activation scope of kWindowActivationScopeAll. Available in Mac OS * 8.5 and later. } kMovableModalWindowClass = 4; { * A floating window is layered above all application windows except * for alert and modal windows. It is commonly used for palette * windows, inspectors, and other accessory (non-document) windows. * Use kThemeBrushUtilityWindowBackgroundActive or * kThemeBrushDocumentWindowBackground to draw the background of * floating windows. Floating windows are initially placed in the * floating window group, given a modality of kWindowModalityNone, * and given an activation scope of * kWindowActivationScopeIndependent. Available in Mac OS 8.6 and * later. } kFloatingWindowClass = 5; { * A document window is used for normal application document windows. * Use kThemeBrushDocumentWindowBackground or your own custom drawing * to draw the background of a document window. Document windows are * initially placed in the document window group, given a modality of * kWindowModalityNone, and given an activation scope of * kWindowActivationScopeAll. Available in Mac OS 8.5 and later. } kDocumentWindowClass = 6; { * A utility window is similar to a floating window, but it floats * above the windows of all applications rather than just above the * windows of the application that creates it. Use * kThemeBrushUtilityWindowBackgroundActive or * kThemeBrushDocumentWindowBackground to draw the background of * utility windows. Utility windows are initially placed in the * utility window group, given a modality of kWindowModalityNone, and * given an activation scope of kWindowActivationScopeIndependent. * Available in CarbonLib 1.1 and later, and in Mac OS X. } kUtilityWindowClass = 8; { * A help window is used to display help tags. It has no window * frame. Typically you should use the Help Manager to display help * tags, rather than creating a help tag window yourself. Help * windows are initially placed in the help window group, given a * modality of kWindowModalityNone, and given an activation scope of * kWindowActivationScopeNone. Available in CarbonLib 1.1 and later, * and in Mac OS X. } kHelpWindowClass = 10; { * A sheet window is used to display a dialog that is attached * directly to its parent window, rather than being a independent * window. A sheet dialog only prevents interaction with its parent * window; the user may still interact with other windows in the same * application. Use kThemeBrushSheetBackgroundOpaque to draw an * opaque background for sheet windows, or * kThemeBrushSheetBackgroundTransparent to draw a transparent * background (the transparent brush is only available in Mac OS X * 10.1 and later). Sheet windows are initially placed in the * document window group, given a modality of kWindowModalityNone, * and given an activation scope of kWindowActivationScopeAll. * Available in CarbonLib 1.3 and later, and in Mac OS X; in * CarbonLib, a sheet window is actually a movable-modal window, * which blocks user interaction with all windows of the application. } kSheetWindowClass = 11; { * A toolbar window is used to display a palette of controls. It is * similar to a floating window, and like a floating window is * layered above all application windows except for alert and modal * windows, but is layered beneath floating windows. Use * kThemeBrushToolbarBackground to draw the background of a toolbar * window in Mac OS X or later; CarbonLib does not currently support * kThemeBrushToolbarBackground. Toolbar windows are initially placed * in the toolbar window group, given a modality of * kWindowModalityNone, and given an activation scope of * kWindowActivationScopeNone. Available in CarbonLib 1.1 and later, * and Mac OS X. } kToolbarWindowClass = 12; { * A plain window has a single-pixel window frame. * kThemeBrushDocumentWindowBackground, * kThemeBrushDialogBackgroundActive, and application-specific custom * drawing are all commonly used to draw the background of a plain * window. Plain windows are initially placed in the document window * group, given a modality of kWindowModalityNone, and given an * activation scope of kWindowActivationScopeAll. Available in * CarbonLib 1.2.5 and later, and Mac OS X. } kPlainWindowClass = 13; { * An overlay window is a completely transparent window positioned * above all other windows. Overlay windows are intended as a * replacement for the pre-Carbon practice of drawing directly into * the window manager port; by creating a full-screen overlay window * and drawing into it, you can draw over any window in any * application without disturbing the contents of the windows * underneath your drawing. Overlay windows have a default handler * for kEventWindowPaint that uses CGContextClearRect to clear the * overlay window's alpha channel to zero. This ensures the initial * transparency of the window. You can install your own * kEventWindowPaint handler to do your own drawing; typically, you * would call through to the default handler with * CallNextEventHandler first, and then use QDBeginCGContext to * create your own context for drawing. You can use either QuickDraw * or CoreGraphics to draw into an overlay window, but you must use * CoreGraphics to draw if you need any of your drawing to be * non-opaque, since QuickDraw always sets the alpha channel of any * pixels that it touches to 1.0. You can also use the standard * window event handler together with regular controls in an overlay * window. When using the standard window event handler, you will * probably want your kEventWindowPaint handler to return * eventNotHandledErr (after calling the default handler with * CallNextEventHandler first) so that after the Paint handler * returns, the Window Manager will send a kEventWindowDrawContent * event which the standard window event handler can respond to by * drawing the controls in the window. Overlay windows are initially * placed in the overlay window group, given a modality of * kWindowModalityNone, and given an activation scope of * kWindowActivationScopeNone. Available in Mac OS X. } kOverlayWindowClass = 14; { * A sheet alert window is similar to a sheet window, but is intended * to display an alert rather than a dialog. On Mac OS X, the * appearance of a sheet window and a sheet alert window is currently * identical, but in CarbonLib a sheet alert window has a different * appearance from a sheet window. Use * kThemeBrushSheetBackgroundOpaque to draw an opaque background for * sheet alert windows, or kThemeBrushSheetBackgroundTransparent to * draw a transparent background (the transparent brush is only * available in Mac OS X 10.1 and later). Sheet alert windows are * initially placed in the document window group, given a modality of * kWindowModalityNone, and given an activation scope of * kWindowActivationScopeAll. Available in CarbonLib 1.3 and later, * and in Mac OS X 10.1 and later; in CarbonLib, a sheet alert window * is actually a movable alert window, which blocks user interaction * with all windows of the application. } kSheetAlertWindowClass = 15; { * A alternate plain window is similar to a plain window but has a * solid black shadow on its right and bottom sides. It is rarely * used in modern Mac OS applications. * kThemeBrushDocumentWindowBackground, * kThemeBrushDialogBackgroundActive, and application-specific custom * drawing are all commonly used to draw the background of an * alternate plain window. Alternate plain windows are initially * placed in the document window group, given a modality of * kWindowModalityNone, and given an activation scope of * kWindowActivationScopeAll. Available in CarbonLib 1.3 and later, * and Mac OS X 10.1 and later. } kAltPlainWindowClass = 16; { * A simple window is the simplest possible window; it has no window * frame and its entire content is drawn by the application. Use any * theme brush or your own custom drawing to draw the background of a * simple window. Simple windows are initially placed in the document * window group, given a modality of kWindowModalityNone, and given * an activation scope of kWindowActivationScopeAll. Available in * CarbonLib 1.5 and later, and Mac OS X 10.1 and later. } kSimpleWindowClass = 18; { * A drawer window is used when implementing a drawer user interface, * in which the drawer window slides out from underneath a document * window. Use kThemeBrushDrawerBackground or * kThemeBrushDocumentWindowBackground to draw the background of * drawer windows. Drawer windows are initially placed in the * document window group, given a modality of kWindowModalityNone, * and given an activation scope of kWindowActivationScopeAll. Drawer * windows should always be created using the Compositing window * attribute. Available in Mac OS X 10.2 or later. } kDrawerWindowClass = 20; { * Not an actual window class, but a meta-constant that is used with * GetFrontWindowOfClass, FindWindowOfClass, and GetNextWindowOfClass * to indicate that there should be no restriction on the class of * the returned window. Also used with GetWindowGroupOfClass to get * the root window group. } kAllWindowClasses = $FFFFFFFF; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Attributes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowAttributes = UInt32; WindowAttributes_fix = WindowAttributes; { used as field type when a record declaration contains a WindowAttributes field identifier } { * Summary: * Window attributes } const { * A constant with value zero; the lack of any attributes. } kWindowNoAttributes = 0; { * This window has a close box. Available for windows of * kDocumentWindowClass, kFloatingWindowClass, and * kUtilityWindowClass. } kWindowCloseBoxAttribute = 1 shl 0; { * This window changes width when zooming. Available for windows of * kDocumentWindowClass, kFloatingWindowClass, and * kUtilityWindowClass. } kWindowHorizontalZoomAttribute = 1 shl 1; { * This window changes height when zooming. Available for windows of * kDocumentWindowClass, kFloatingWindowClass, and * kUtilityWindowClass. } kWindowVerticalZoomAttribute = 1 shl 2; { * This window changes both width and height when zooming. Available * for windows of kDocumentWindowClass, kFloatingWindowClass, and * kUtilityWindowClass. } kWindowFullZoomAttribute = kWindowVerticalZoomAttribute or kWindowHorizontalZoomAttribute; { * This window has a collapse box. Available for windows of * kDocumentWindowClass and, on Mac OS 9, kFloatingWindowClass and * kUtilityWindowClass; not available for windows of * kFloatingWindowClass or kUtilityWindowClass on Mac OS X. } kWindowCollapseBoxAttribute = 1 shl 3; { * This window can be resized. Available for windows of * kDocumentWindowClass, kMovableModalWindowClass, * kFloatingWindowClass, kUtilityWindowClass, and kSheetWindowClass. } kWindowResizableAttribute = 1 shl 4; { * This window has a vertical titlebar on the side of the window. * Available for windows of kFloatingWindowClass and * kUtilityWindowClass. } kWindowSideTitlebarAttribute = 1 shl 5; { * This window has a toolbar button. Available for windows of * kDocumentWindowClass on Mac OS X. } kWindowToolbarButtonAttribute = 1 shl 6; { * This window uses the Metal appearance. Available for document * windows on Mac OS X 10.2 and later, and for floating windows on * Mac OS X 10.3 and later. Drawers can also be metal, but * dynamically adjust their appearance based on their parent window's * appearance; it is not necessary to specify this attribute for a * metal drawer. } kWindowMetalAttribute = 1 shl 8; { * For Document, Floating, and Utility windows, this attribute allows * you to hide the title bar of a window. For Mac OS X 10.4 or later. } kWindowNoTitleBarAttribute = 1 shl 9; { * Indicates that no border should be drawn between the toolbar and * window content. Relevant only in metal windows. Ignored in * non-metal windows. Available in Mac OS X 10.4 and later for * window classes that support metal. } kWindowMetalNoContentSeparatorAttribute = 1 shl 11; { * This window does not participate in window cycling invoked by * cmd-~ or the "Focus on Window" hotkey defined in the Keyboards * preference pane. Available for all windows on Mac OS X 10.2 and * later. } kWindowDoesNotCycleAttribute = 1 shl 15; { * This window receives no update events. Available for all windows. } kWindowNoUpdatesAttribute = 1 shl 16; { * This window receives no activate events. Available for all windows. } kWindowNoActivatesAttribute = 1 shl 17; { * This window receives mouse events even for areas of the window * that are transparent (have an alpha channel component of zero). * Available for windows of kOverlayWindowClass on Mac OS X 10.0 and * 10.1, and available for all windows on Mac OS X 10.2 and later. } kWindowOpaqueForEventsAttribute = 1 shl 18; { * This window uses composited drawing. This means that the entire * window is comprised of HIViews, and can be treated thusly. This * attribute must be specified at window creation, and cannot be * changed later with ChangeWindowAttributes. Available on Mac OS X * 10.2 and later. } kWindowCompositingAttribute = 1 shl 19; { * This window has no shadow. Available for all windows on Mac OS X. * This attribute is automatically given to windows of * kOverlayWindowClass. } kWindowNoShadowAttribute = 1 shl 21; { * This window is automatically hidden on suspend and shown on * resume. Available for all windows. This attribute is automatically * given to windows of kFloatingWindowClass, kHelpWindowClass, and * kToolbarWindowClass. } kWindowHideOnSuspendAttribute = 1 shl 24; { * This window is marked so that the window server will drag the * window automatically. Your application should not call DragWindow * for this window, else it would confuse the heck out of the drag * (it would fight with the window server for control). This * attribute is ignored (async drag is not used) if your window is * grouped with other windows in a window group that has the * kWindowGroupAttrMoveTogether attribute. Available for all windows * on Mac OS X 10.3 and later. } kWindowAsyncDragAttribute = 1 shl 23; { * This window has the standard Carbon window event handler * installed. Available for all windows. } kWindowStandardHandlerAttribute = 1 shl 25; { * This window is automatically hidden during fullscreen mode (when * the menubar is invisible) and shown afterwards. Available for all * windows. This attribute is automatically given to windows of * kUtilityWindowClass. } kWindowHideOnFullScreenAttribute = 1 shl 26; { * This window is added to the standard Window menu. Available for * windows of kDocumentWindowClass. This attribute is automatically * given to windows of kDocumentWindowClass. } kWindowInWindowMenuAttribute = 1 shl 27; { * This window supports live resizing. Available for all windows on * Mac OS X. } kWindowLiveResizeAttribute = 1 shl 28; { * This window never receives mouse events, even in areas that are * opaque. Instead, clicks on the window will be passed through to * windows beneath it. Available for all windows on Mac OS X 10.2 and * later. } kWindowIgnoreClicksAttribute = 1 shl 29; { * This window will not be repositioned by the default * kEventWindowConstrain handler in response to changes in monitor * size, Dock position, and so on. Available for all windows on Mac * OS X 10.1 and later, and CarbonLib 1.6 and later. } kWindowNoConstrainAttribute = 1 shl 31; { * This window's context should be scaled to match the display scale * factor. This attribute can only be used when * kWindowCompositingAttribute is also enabled. When this attribute * is enabled, you may not draw with QuickDraw in the window. If this * attribute is enabled and if the scale factor is something other * than 1.0, the window's scale mode will be * kHIWindowScaleModeFrameworkScaled. It is illegal to specify both * this attribute and kWindowApplicationScaledAttribute. You may only * specify this attribute at window creation time. Available for all * windows in Mac OS X 10.4 and later. } kWindowFrameworkScaledAttribute = 1 shl 20; { * This attribute indicates that the details of * resolution-independent scaling will be taken care of primarily by * the application. This is valid for both compositing and * non-compositing windows. Resolution-independent windows that draw * with QuickDraw must use this attribute bit. If this attribute is * enabled and if the scale factor is something other than 1.0, the * window's scale mode will be kHIWindowScaleModeApplicationScaled. * It is illegal to specify both this attribute and * kWindowFrameworkScaledAttribute. You may only specify this * attribute at window creation time. Available for all windows in * Mac OS X 10.4 and later. } kWindowApplicationScaledAttribute = 1 shl 30; { * The minimum set of window attributes commonly used by document * windows. } kWindowStandardDocumentAttributes = kWindowCloseBoxAttribute or kWindowFullZoomAttribute or kWindowCollapseBoxAttribute or kWindowResizableAttribute; { * The minimum set of window attributes commonly used by floating * windows. } kWindowStandardFloatingAttributes = kWindowCloseBoxAttribute or kWindowCollapseBoxAttribute; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Definition Type } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowDefProcType = $57444546 (* 'WDEF' *); {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Mac OS 7.5 Window Definition Resource IDs } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kStandardWindowDefinition = 0; { for document windows and dialogs} kRoundWindowDefinition = 1; { old da-style window} kFloatingWindowDefinition = 124; { for floating windows} {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Variant Codes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const { for use with kStandardWindowDefinition } kDocumentWindowVariantCode = 0; kModalDialogVariantCode = 1; kPlainDialogVariantCode = 2; kShadowDialogVariantCode = 3; kMovableModalDialogVariantCode = 5; kAlertVariantCode = 7; kMovableAlertVariantCode = 9; { for use with kFloatingWindowDefinition } kSideFloaterVariantCode = 8; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ DefProc IDs } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const { classic ids } documentProc = 0; dBoxProc = 1; plainDBox = 2; altDBoxProc = 3; noGrowDocProc = 4; movableDBoxProc = 5; zoomDocProc = 8; zoomNoGrow = 12; { floating window defproc ids } floatProc = 1985; floatGrowProc = 1987; floatZoomProc = 1989; floatZoomGrowProc = 1991; floatSideProc = 1993; floatSideGrowProc = 1995; floatSideZoomProc = 1997; floatSideZoomGrowProc = 1999; const { Resource IDs for theme-savvy window defprocs } kWindowDocumentDefProcResID = 64; kWindowDialogDefProcResID = 65; kWindowUtilityDefProcResID = 66; kWindowUtilitySideTitleDefProcResID = 67; kWindowSheetDefProcResID = 68; kWindowSimpleDefProcResID = 69; kWindowSheetAlertDefProcResID = 70; const { Proc IDs for theme-savvy windows } kWindowDocumentProc = 1024; kWindowGrowDocumentProc = 1025; kWindowVertZoomDocumentProc = 1026; kWindowVertZoomGrowDocumentProc = 1027; kWindowHorizZoomDocumentProc = 1028; kWindowHorizZoomGrowDocumentProc = 1029; kWindowFullZoomDocumentProc = 1030; kWindowFullZoomGrowDocumentProc = 1031; const { Proc IDs for theme-savvy dialogs } kWindowPlainDialogProc = 1040; kWindowShadowDialogProc = 1041; kWindowModalDialogProc = 1042; kWindowMovableModalDialogProc = 1043; kWindowAlertProc = 1044; kWindowMovableAlertProc = 1045; const { procIDs available from Mac OS 8.1 (Appearance 1.0.1) forward } kWindowMovableModalGrowProc = 1046; const { Proc IDs for top title bar theme-savvy floating windows } kWindowFloatProc = 1057; kWindowFloatGrowProc = 1059; kWindowFloatVertZoomProc = 1061; kWindowFloatVertZoomGrowProc = 1063; kWindowFloatHorizZoomProc = 1065; kWindowFloatHorizZoomGrowProc = 1067; kWindowFloatFullZoomProc = 1069; kWindowFloatFullZoomGrowProc = 1071; const { Proc IDs for side title bar theme-savvy floating windows } kWindowFloatSideProc = 1073; kWindowFloatSideGrowProc = 1075; kWindowFloatSideVertZoomProc = 1077; kWindowFloatSideVertZoomGrowProc = 1079; kWindowFloatSideHorizZoomProc = 1081; kWindowFloatSideHorizZoomGrowProc = 1083; kWindowFloatSideFullZoomProc = 1085; kWindowFloatSideFullZoomGrowProc = 1087; const { Proc IDs for sheet windows } kWindowSheetProc = 1088; { available in Mac OS X and CarbonLib 1.3 } kWindowSheetAlertProc = 1120; { available in Mac OS X 10.1 and CarbonLib 1.3 } { * Discussion: * Window defproc IDs for simple windows } const { Proc IDs for simple windows } { * A window that has no structure region; the content covers the * entire window. } kWindowSimpleProc = 1104; { * A window that has a 1-pixel black frame as its structure. } kWindowSimpleFrameProc = 1105; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ System 7 Window Positioning Constants } { Passed into StandardAlert and used in ÔWINDÕ, ÔDLOGÕ, and ÔALRTÕ templates } { StandardAlert uses zero to specify the default position. Other calls use zero to } { specify Òno positionÓ. Do not pass these constants to RepositionWindow. Do not } { store these constants in the BasicWindowDescription of a ÔwindÕ resource. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowNoPosition = $0000; kWindowDefaultPosition = $0000; { used by StandardAlert} kWindowCenterMainScreen = $280A; kWindowAlertPositionMainScreen = $300A; kWindowStaggerMainScreen = $380A; kWindowCenterParentWindow = $A80A; kWindowAlertPositionParentWindow = $B00A; kWindowStaggerParentWindow = $B80A; kWindowCenterParentWindowScreen = $680A; kWindowAlertPositionParentWindowScreen = $700A; kWindowStaggerParentWindowScreen = $780A; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Positioning Methods } { Positioning methods passed to RepositionWindow. } { Do not use them in WIND, ALRT, DLOG templates. } { Do not confuse these constants with the constants above } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * WindowPositionMethod * * Summary: * Positioning methods usable with RepositionWindow. * * Discussion: * These constants are for use solely with the RepositionWindow API. * They should not be used in 'WIND', 'ALRT', or 'DLOG' resources. } type WindowPositionMethod = UInt32; WindowPositionMethod_fix = WindowPositionMethod; { used as field type when a record declaration contains a WindowPositionMethod field identifier } const { * Centers the window on the main screen. } kWindowCenterOnMainScreen = 1; { * Centers the window on its parent window. The parent window must be * different from the positioned window. } kWindowCenterOnParentWindow = 2; { * Centers the window on the screen containing the largest portion of * its parent window. On Mac OS X 10.3 and later, the parent window * may be the same as the positioned window. On CarbonLib and earlier * versions of Mac OS X, the parent window must be different from the * positioned window. } kWindowCenterOnParentWindowScreen = 3; { * Cascades the window on the main screen. } kWindowCascadeOnMainScreen = 4; { * Cascades the window on its parent window. The parent window must * be different from the positioned window. } kWindowCascadeOnParentWindow = 5; { * Cascades the window on the screen containing the largest portion * of its parent window. On Mac OS X 10.3 and later, the parent * window may be the same as the positioned window. On CarbonLib and * earlier versions of Mac OS X, the parent window must be different * from the positioned window. } kWindowCascadeOnParentWindowScreen = 6; { * Cascades the window on the screen containing the largest portion * of its parent window, starting below and to the right of its * parent window. The parent window must be different from the * positioned window. Available in Mac OS X 10.2 and CarbonLib 1.6 * and later. } kWindowCascadeStartAtParentWindowScreen = 10; { * Puts the window into the alert position on the main screen. } kWindowAlertPositionOnMainScreen = 7; { * Puts the window into the alert position on its parent window. The * parent window must be different from the positioned window. } kWindowAlertPositionOnParentWindow = 8; { * Puts the window into the alert position on the screen containing * the largest portion of its parent window. On Mac OS X 10.3 and * later, the parent window may be the same as the positioned window. * On CarbonLib and earlier versions of Mac OS X, the parent window * must be different from the positioned window. } kWindowAlertPositionOnParentWindowScreen = 9; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ GetWindowRegion Types } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowRegionCode = UInt16; const { Region values to pass into GetWindowRegion & GetWindowBounds. All regions are reported in global coordinates. } kWindowTitleBarRgn = 0; kWindowTitleTextRgn = 1; kWindowCloseBoxRgn = 2; kWindowZoomBoxRgn = 3; kWindowDragRgn = 5; kWindowGrowRgn = 6; kWindowCollapseBoxRgn = 7; kWindowTitleProxyIconRgn = 8; { Mac OS 8.5 forward} kWindowStructureRgn = 32; kWindowContentRgn = 33; { Content area of the window; empty when the window is collapsed} kWindowUpdateRgn = 34; { Carbon forward} kWindowOpaqueRgn = 35; { Mac OS X: Area of window considered to be opaque. Only valid for windows with alpha channels.} kWindowGlobalPortRgn = 40; { Carbon forward - bounds of the windowÕs port in global coordinates; not affected by CollapseWindow} kWindowToolbarButtonRgn = 41; { Mac OS X Tiger: the toolbar button area} { GetWindowRegionRec - a pointer to this is passed in WDEF param for kWindowMsgGetRegion} type GetWindowRegionRec = record winRgn: RgnHandle; regionCode: WindowRegionCode; end; GetWindowRegionPtr = ^GetWindowRegionRec; GetWindowRegionRecPtr = GetWindowRegionPtr; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ WDEF Message Types } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { SetupWindowProxyDragImageRec - setup the proxy icon drag image Both regions are allocated and disposed by the Window Manager. The GWorld is disposed of by the Window Manager, but the WDEF must allocate it. See Technote on Drag Manager 1.1 additions for more information and sample code for setting up drag images. } type SetupWindowProxyDragImageRec = record imageGWorld: GWorldPtr; { locked GWorld containing the drag image - output - can be NULL} imageRgn: RgnHandle; { image clip region, contains the portion of the image which gets blitted to screen - preallocated output - if imageGWorld is NULL, this is ignored} outlineRgn: RgnHandle; { the outline region used on shallow monitors - preallocated output - must always be non-empty} end; { MeasureWindowTitleRec - a pointer to this is passed in WDEF param for kWindowMsgMeasureTitle} type MeasureWindowTitleRec = record { output parameters (filled in by the WDEF)} fullTitleWidth: SInt16; { text + proxy icon width} titleTextWidth: SInt16; { text width} { input parameters} isUnicodeTitle: Boolean; unused: Boolean; { future use} end; MeasureWindowTitleRecPtr = ^MeasureWindowTitleRec; { GetGrowImageRegionRec - generate a region to be xored during GrowWindow and ResizeWindow. This is passed along with a kWindowMsgGetGrowImageRegion message. On input, the growRect parameter is the window's new bounds in global coordinates. The growImageRegion parameter will be allocated and disposed automatically; the window definition should alter the region appropriately. } type GetGrowImageRegionRecPtr = ^GetGrowImageRegionRec; GetGrowImageRegionRec = record growRect: Rect; growImageRegion: RgnHandle; end; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Standard Window Kinds } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const dialogKind = 2; userKind = 8; kDialogWindowKind = 2; kApplicationWindowKind = 8; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ FindWindow Result Codes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowPartCode = SInt16; WindowPartCodePtr = ^WindowPartCode; { when a VAR xx: WindowPartCode parameter can be nil, it is changed to xx: WindowPartCodePtr } const inDesk = 0; inNoWindow = 0; inMenuBar = 1; inSysWindow = 2; inContent = 3; inDrag = 4; inGrow = 5; inGoAway = 6; inZoomIn = 7; inZoomOut = 8; inCollapseBox = 11; { Mac OS 8.0 forward} inProxyIcon = 12; { Mac OS 8.5 forward} inToolbarButton = 13; { Mac OS X forward} inStructure = 15; { Mac OS X 10.1 forward} {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Definition Hit Test Result Codes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowDefPartCode = SInt16; const wNoHit = 0; wInContent = 1; wInDrag = 2; wInGrow = 3; wInGoAway = 4; wInZoomIn = 5; wInZoomOut = 6; wInCollapseBox = 9; { Mac OS 8.0 forward} wInProxyIcon = 10; { Mac OS 8.5 forward} wInToolbarButton = 11; { Mac OS X forward} wInStructure = 13; { Mac OS X 10.1 forward} {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Definition Messages } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowMsgDraw = 0; kWindowMsgHitTest = 1; kWindowMsgCalculateShape = 2; kWindowMsgInitialize = 3; kWindowMsgCleanUp = 4; kWindowMsgDrawGrowOutline = 5; kWindowMsgDrawGrowBox = 6; { Messages available from Mac OS 8.0 forward} const kWindowMsgGetFeatures = 7; kWindowMsgGetRegion = 8; { Messages available from Mac OS 8.5 forward} const kWindowMsgDragHilite = 9; { parameter boolean indicating on or off} kWindowMsgModified = 10; { parameter boolean indicating saved (false) or modified (true)} kWindowMsgDrawInCurrentPort = 11; { same as kWindowMsgDraw, but must draw in current port} kWindowMsgSetupProxyDragImage = 12; { parameter pointer to SetupWindowProxyDragImageRec} kWindowMsgStateChanged = 13; { something about the window's state has changed} kWindowMsgMeasureTitle = 14; { measure and return the ideal title width} { Messages only available in Carbon} const kWindowMsgGetGrowImageRegion = 19; { get region to xor during grow/resize. parameter pointer to GetGrowImageRegionRec.} { old names} const wDraw = 0; wHit = 1; wCalcRgns = 2; wNew = 3; wDispose = 4; wGrow = 5; wDrawGIcon = 6; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ State-changed Flags for kWindowMsgStateChanged } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowStateTitleChanged = 1 shl 0; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Feature Bits } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * Summary: * Window feature bits * * Discussion: * These feature bits are supplied by window definition functions in * response to the kWindowMsgGetFeatures message or the * kEventWindowInit Carbon event. A window's feature bits can also * be modified dynamically using the HIWindowChangeFeatures API; * typically, feature bits are only modified by a window definition * or window frame view. } const { * Indicates whether the window is resizable. Available on Mac OS 8.0 * and later. Not supported on Mac OS X; replaced by * kWindowResizableAttribute. } kWindowCanGrow = 1 shl 0; { * Indicates whether the window can zoom. Available on Mac OS 8.0 and * later. Not supported on Mac OS X; replaced by * kWindowHorizontal/Vertical/FullZoomAttribute. } kWindowCanZoom = 1 shl 1; { * Indicates whether the window can be minimized. Available on Mac OS * 8.0 and later. Not supported on Mac OS X; replaced by * kWindowCollapseBoxAttribute. } kWindowCanCollapse = 1 shl 2; { * Indicates whether the window is application-modal. Available on * Mac OS 8.0 and later. } kWindowIsModal = 1 shl 3; { * Indicates that the window definition supports the * kWindowMsgGetRegion message. Available on Mac OS 8.0 and later. * Not supported on Mac OS X. All window definitions that implement * the kWindowMsgGetFeatures message automatically get this feature * bit on Mac OS X. } kWindowCanGetWindowRegion = 1 shl 4; { * Indicates whether the window is an alert. Available on Mac OS 8.0 * and later. } kWindowIsAlert = 1 shl 5; { * Indicates whether the window has a title bar. Available on Mac OS * 8.0 and later. This feature is required for async dragging to be * enabled for a window. } kWindowHasTitleBar = 1 shl 6; { * Indicates that the window definition supports the * kWindowMsgDragHilite message. Available on Mac OS 8.5 and later. } kWindowSupportsDragHilite = 1 shl 7; { * Indicates that the window definition supports the * kWindowMsgModified message. Available on Mac OS 8.5 and later. } kWindowSupportsModifiedBit = 1 shl 8; { * Indicates that the window definition supports the * kWindowMsgDrawInCurrentPort message. Available on Mac OS 8.5 and * later. Not supported on Mac OS X. } kWindowCanDrawInCurrentPort = 1 shl 9; { * Indicates that the window definition supports the * kWindowMsgSetupProxyDragImage message. Available on Mac OS 8.5 and * later. } kWindowCanSetupProxyDragImage = 1 shl 10; { * Indicates that the window definition supports the * kWindowMsgMeasureTitle message. Available on Mac OS 8.5 and later. } kWindowCanMeasureTitle = 1 shl 11; { * Indicates that the window definition wants to receive a * kWindowMsgCleanUp message for each existing window when a process * is terminated. Available on Mac OS 8.5 and later. Not supported on * Mac OS X. } kWindowWantsDisposeAtProcessDeath = 1 shl 12; { * Indicates that the window definition supports the * kWindowMsgGetGrowImageRegion message. Available on Mac OS X 10.0 * and later. } kWindowSupportsGetGrowImageRegion = 1 shl 13; { * Indicates that the window is entirely opaque. If this feature bit * is set, the window will use less memory because no alpha channel * information will be stored for the window's pixels. If this * feature bit is not set, the Window Manager will send a * kEventWindowGetRegion Carbon event to the window with the * kWindowOpaqueRgn constant to get a region that describes the * opaque area of the window. Available on Mac OS X 10.1 and later. } kWindowIsOpaque = 1 shl 14; { * Indicates that the window definition does not require that the * current port be the classic Window Manager port. Not supported on * Mac OS X. } kWindowDefSupportsColorGrafPort = $40000002; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Desktop Pattern Resource ID } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const deskPatID = 16; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Color Part Codes } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const wContentColor = 0; wFrameColor = 1; wTextColor = 2; wHiliteColor = 3; wTitleBarColor = 4; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Region Dragging Constants } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kMouseUpOutOfSlop = $80008000; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Color Table } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WinCTabPtr = ^WinCTab; WinCTab = record wCSeed: SInt32; { reserved } wCReserved: SInt16; { reserved } ctSize: SInt16; { usually 4 for windows } ctTable: array [0..4] of ColorSpec; end; type WCTabPtr = WinCTabPtr; type WCTabHandle = ^WCTabPtr; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ BasicWindowDescription } { Contains statically-sized basic attributes of the window, for storage in a } { collection item. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { constants for the version field} const kWindowDefinitionVersionOne = 1; kWindowDefinitionVersionTwo = 2; { constants for the stateflags bit field } const kWindowIsCollapsedState = 1 shl 0; type BasicWindowDescriptionPtr = ^BasicWindowDescription; BasicWindowDescription = record descriptionSize: UInt32; { sizeof(BasicWindowDescription)} windowContentRect: Rect; { location on screen} windowZoomRect: Rect; { location on screen when zoomed out} windowRefCon: UInt32; { the refcon - __avoid saving stale pointers here__ } windowStateFlags: UInt32; { window state bit flags} windowPositionMethod: WindowPositionMethod_fix; { method last used by RepositionWindow to position the window (if any)} windowDefinitionVersion: UInt32; case SInt16 of 0: ( windowDefProc: SInt16; { defProc and variant } windowHasCloseBox: Boolean; ); 1: ( windowClass: WindowClass_fix; { the class } windowAttributes: WindowAttributes_fix; { the attributes } ); end; { the window manager stores the default collection items using these IDs} const kStoredWindowSystemTag = $6170706C (* 'appl' *); { Only Apple collection items will be of this tag} kStoredBasicWindowDescriptionID = $73626173 (* 'sbas' *); { BasicWindowDescription} kStoredWindowPascalTitleID = $73323535 (* 's255' *); { pascal title string} kStoredWindowTitleCFStringID = $63667374 (* 'cfst' *); { CFString title string} {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Class Ordering } { Special cases for the ÒbehindÓ parameter in window creation calls. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} kFirstWindowOfClass = WindowRef(-1); kLastWindowOfClass = WindowRef(0); {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Zoom Information Handle } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WStateData = record userState: Rect; {user zoom state} stdState: Rect; {standard zoom state} end; type WStateDataPtr = ^WStateData; type WStateDataHandle = ^WStateDataPtr; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ MixedMode & ProcPtrs } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowDefProcPtr = function( varCode: SInt16; window: WindowRef; message: SInt16; param: SInt32 ): SInt32; type DeskHookProcPtr = procedure( mouseClick: Boolean; var theEvent: EventRecord ); type WindowPaintProcPtr = function( device: GDHandle; qdContext: GrafPtr; window: WindowRef; inClientPaintRgn: RgnHandle; outSystemPaintRgn: RgnHandle; refCon: UnivPtr ): OSStatus; type WindowDefUPP = WindowDefProcPtr; type DeskHookUPP = DeskHookProcPtr; type WindowPaintUPP = WindowPaintProcPtr; { * NewWindowDefUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } function NewWindowDefUPP( userRoutine: WindowDefProcPtr ): WindowDefUPP; external name '_NewWindowDefUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * NewDeskHookUPP() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * NewWindowPaintUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } function NewWindowPaintUPP( userRoutine: WindowPaintProcPtr ): WindowPaintUPP; external name '_NewWindowPaintUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DisposeWindowDefUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } procedure DisposeWindowDefUPP( userUPP: WindowDefUPP ); external name '_DisposeWindowDefUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DisposeDeskHookUPP() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * DisposeWindowPaintUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } procedure DisposeWindowPaintUPP( userUPP: WindowPaintUPP ); external name '_DisposeWindowPaintUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * InvokeWindowDefUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } function InvokeWindowDefUPP( varCode: SInt16; window: WindowRef; message: SInt16; param: SInt32; userUPP: WindowDefUPP ): SInt32; external name '_InvokeWindowDefUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * InvokeDeskHookUPP() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * InvokeWindowPaintUPP() * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: available as macro/inline } function InvokeWindowPaintUPP( device: GDHandle; qdContext: GrafPtr; window: WindowRef; inClientPaintRgn: RgnHandle; outSystemPaintRgn: RgnHandle; refCon: UnivPtr; userUPP: WindowPaintUPP ): OSStatus; external name '_InvokeWindowPaintUPP'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Definition Spec. Used in Carbon to specify the code that defines a window. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowDefProcPtr = 0; { raw proc-ptr based access} kWindowDefObjectClass = 1; { event-based definition (Carbon 1.1 or later)} kWindowDefProcID = 2; { explicit proc ID; overrides the window class default proc ID} kWindowDefHIView = 3; { this window uses a view as its frame, not a WDEF} type WindowDefType = UInt32; type WindowDefSpecPtr = ^WindowDefSpec; WindowDefSpec = record defType: WindowDefType; case SInt16 of 0: ( defProc: WindowDefUPP; ); 1: ( classRef: UnivPtr; ); 2: ( procID: SInt16; ); 3: ( rootView: UnivPtr; ); end; {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Creation & Persistence } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * GetNewCWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetNewCWindow( windowID: SInt16; wStorage: UnivPtr; behind: WindowRef ): WindowRef; external name '_GetNewCWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * NewWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function NewWindow( wStorage: UnivPtr; const (*var*) boundsRect: Rect; const (*var*) title: Str255; visible: Boolean; theProc: SInt16; behind: WindowRef; goAwayFlag: Boolean; refCon: SInt32 ): WindowRef; external name '_NewWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetNewWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetNewWindow( windowID: SInt16; wStorage: UnivPtr; behind: WindowRef ): WindowRef; external name '_GetNewWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * NewCWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function NewCWindow( wStorage: UnivPtr; const (*var*) boundsRect: Rect; const (*var*) title: Str255; visible: Boolean; procID: SInt16; behind: WindowRef; goAwayFlag: Boolean; refCon: SInt32 ): WindowRef; external name '_NewCWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DisposeWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure DisposeWindow( window: WindowRef ); external name '_DisposeWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * [Mac]CloseWindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * CreateNewWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function CreateNewWindow( windowClass_: WindowClass; attributes: WindowAttributes; const (*var*) contentBounds: Rect; var outWindow: WindowRef ): OSStatus; external name '_CreateNewWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.5 forward} { Create a window from a ÔwindÕ resource} { * CreateWindowFromResource() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function CreateWindowFromResource( resID: SInt16; var outWindow: WindowRef ): OSStatus; external name '_CreateWindowFromResource'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { window persistence} { * StoreWindowIntoCollection() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function StoreWindowIntoCollection( window: WindowRef; collection_: Collection ): OSStatus; external name '_StoreWindowIntoCollection'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CreateWindowFromCollection() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function CreateWindowFromCollection( collection_: Collection; var outWindow: WindowRef ): OSStatus; external name '_CreateWindowFromCollection'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { window refcounting} { * GetWindowOwnerCount() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowOwnerCount( window: WindowRef; var outCount: UInt32 ): OSStatus; external name '_GetWindowOwnerCount'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CloneWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function CloneWindow( window: WindowRef ): OSStatus; external name '_CloneWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowRetainCount() * * Summary: * Returns the retain count of a window. * * Discussion: * This API is equivalent to GetWindowOwnerCount. For consistency * with CoreFoundation and Carbon Events, it is preferred over * GetWindowOwnerCount. Both APIs will continue to be supported. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose retain count to retrieve. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function GetWindowRetainCount( inWindow: WindowRef ): ItemCount; external name '_GetWindowRetainCount'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RetainWindow() * * Summary: * Increments the retain count of a window. * * Discussion: * This API is equivalent to CloneWindow. For consistency with * CoreFoundation and Carbon Events, it is preferred over * CloneWindow. Both APIs will continue to be supported. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose retain count to increment. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function RetainWindow( inWindow: WindowRef ): OSStatus; external name '_RetainWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ReleaseWindow() * * Summary: * Decrements the retain count of a window, and destroys the window * if the retain count falls to zero. * * Discussion: * This API is equivalent to DisposeWindow. For consistency with * CoreFoundation and Carbon Events, it is preferred over * DisposeWindow. Both APIs will continue to be supported. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose retain count to decrement. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function ReleaseWindow( inWindow: WindowRef ): OSStatus; external name '_ReleaseWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Custom Windows } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward} { * CreateCustomWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function CreateCustomWindow( const (*var*) def: WindowDefSpec; windowClass_: WindowClass; attributes: WindowAttributes; const (*var*) contentBounds: Rect; var outWindow: WindowRef ): OSStatus; external name '_CreateCustomWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ReshapeCustomWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function ReshapeCustomWindow( window: WindowRef ): OSStatus; external name '_ReshapeCustomWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RegisterWindowDefinition() * * Summary: * Registers or unregisters a binding between a resource ID and a * window definition function. * * Discussion: * In the Mac OS 8.x Window Manager, a 'WIND' resource can contain * an embedded WDEF procID that is used by the Window Manager as the * resource ID of an 'WDEF' resource to lay out and draw the window. * The 'WDEF' resource is loaded by the Window Manager when you load * the menu with GetNewWindow. Since WDEFs can no longer be packaged * as code resources on Carbon, the procID can no longer refer * directly to a WDEF resource. However, using * RegisterWindowDefinition you can instead specify a * UniversalProcPtr pointing to code in your application code * fragment. RegisterWindowDefinition is available when linking to * CarbonLib 1.1 forward. * * Mac OS X threading: * Not thread safe * * Parameters: * * inResID: * A WDEF proc ID, as used in a 'WIND' resource. * * inDefSpec: * Specifies the WindowDefUPP that should be used for windows with * the given WDEF proc ID. Passing NULL allows you to unregister * the window definition that had been associated with the given * WDEF proc ID. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function RegisterWindowDefinition( inResID: SInt16; const (*var*) inDefSpec: WindowDefSpec ): OSStatus; external name '_RegisterWindowDefinition'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window part tracking } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.5 forward (or from Mac OS 8.6 forward when linking to CarbonLib 1.1 forward) } { * GetWindowWidgetHilite() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowWidgetHilite( inWindow: WindowRef; var outHilite: WindowDefPartCode ): OSStatus; external name '_GetWindowWidgetHilite'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Metainformation Accessors } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * IsValidWindowClass() * * Summary: * Indicates whether a window class is supported by the Window * Manager. * * Mac OS X threading: * Not thread safe * * Parameters: * * inClass: * The window class. * * Availability: * Mac OS X: in version 10.1 and later in Carbon.framework * CarbonLib: in CarbonLib 1.5 and later * Non-Carbon CFM: not available } function IsValidWindowClass( inClass: WindowClass ): Boolean; external name '_IsValidWindowClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *) { * GetAvailableWindowAttributes() * * Summary: * Returns the window attributes that are valid for a window class. * * Discussion: * This API is useful because some window classes support different * attributes on different platforms (for example, floating windows * can have collapse boxes on 9, but not on X), and the Window * Manager will return an error if you attempt to create a window * with attributes that aren't supported for the requested window * class. You can use this API to remove attributes that are not * supported by the current platform before calling CreateNewWindow. * * Mac OS X threading: * Not thread safe * * Parameters: * * inClass: * The window class. * * Result: * The window attributes that are supported for the specified window * class. * * Availability: * Mac OS X: in version 10.1 and later in Carbon.framework * CarbonLib: in CarbonLib 1.5 and later * Non-Carbon CFM: not available } function GetAvailableWindowAttributes( inClass: WindowClass ): WindowAttributes; external name '_GetAvailableWindowAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *) { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * GetWindowClass() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowClass( window: WindowRef; var outClass: WindowClass ): OSStatus; external name '_GetWindowClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowAttributes() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowAttributes( window: WindowRef; var outAttributes: WindowAttributes ): OSStatus; external name '_GetWindowAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 9.0 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * ChangeWindowAttributes() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function ChangeWindowAttributes( window: WindowRef; setTheseAttributes: WindowAttributes; clearTheseAttributes: WindowAttributes ): OSStatus; external name '_ChangeWindowAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING SetWindowClass will disappear at some point in the future. Instead of SetWindowClass, you should use SetWindowGroup to move a window into the group of the desired class. This API is very dangerous in that is actually does change the class of the window, but class was meant to be an immutable property of the window. At the very least, this API will be modified to only change the layer of the window to match the layer that the specified class normally lives in. Consider yourself warned! WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING } { * SetWindowClass() * * Summary: * Changes the window class of a window. * * Discussion: * SetWindowClass changes the class of a window. It also changes the * window's z-order so that it is grouped with other windows of the * same class. It does not change the visual appearance of the * window. In CarbonLib, SetWindowClass may not be used to change a * non-utility window to have utility window class, or to make a * utility window have non-utility class. SetWindowClass is * available from CarbonLib 1.1 forward. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose class to change. * * inWindowClass: * The new window class. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function SetWindowClass( inWindow: WindowRef; inWindowClass: WindowClass ): OSStatus; external name '_SetWindowClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HIWindowChangeClass() * * Summary: * Changes the window look and feel of an existing window on the fly. * * Discussion: * HIWindowChangeClass changes the class of a window. Unlike * SetWindowClass, this call effectively changes the look and * behavior of the window all at once. Because SetWindowClass * already existed and had certain behaviour, we could not change it * to behave the way HIWindowChangeClass does. * * This function can convert a window between kDocumentWindowClass, * kFloatingWindowClass, kUtilityWindowClass, and * kMovableModalWindowClass only. It cannot change a document window * into a plain window, for example. * * The attributes of the window are adjusted to contain only those * that are allowed for the new class. It is the callerÕs * responsibility to adjust them further after HIWindowChangeClass * returns, if necessary. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose class to change. * * inWindowClass: * The new window class. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function HIWindowChangeClass( inWindow: HIWindowRef; inWindowClass: WindowClass ): OSStatus; external name '_HIWindowChangeClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Flushing } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * HIWindowFlush() * * Summary: * Flushes any dirty areas a window might have. * * Discussion: * This routine allows you to manually flush dirty areas of a window * to the screen. In the past, one would use QDFlushPortBuffer, but * as we move away from grafports, that type of stuff doesn't make * much sense these days. This is the preferred routine to flush * window buffers in Mac OS X 10.3 and beyond. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to flush. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function HIWindowFlush( inWindow: HIWindowRef ): OSStatus; external name '_HIWindowFlush'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Modality } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * WindowModality * } type WindowModality = UInt32; const { * A window does not prevent interaction with any other window in the * system. } kWindowModalityNone = 0; { * A window prevents interaction with all other windows in the * system. Only available in CarbonLib. Mapped to * kWindowModalityAppModal in Mac OS X. } kWindowModalitySystemModal = 1; { * A window prevents interaction with other windows in the same * process. } kWindowModalityAppModal = 2; { * A window prevents interaction with a single other window. } kWindowModalityWindowModal = 3; { * SetWindowModality() * * Summary: * Sets the modality of a window. * * Discussion: * The modality of a window is used by the Carbon event manager to * automatically determine appropriate event handling. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose modality to set. * * inModalKind: * The new modality for the window. * * inUnavailableWindow: * If the window is becoming window-modal, this parameter * specifies the window to which the inWindow parameter is modal. * The unavailableWindow will not be available while inWindow is * in window-modal state. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function SetWindowModality( inWindow: WindowRef; inModalKind: WindowModality; inUnavailableWindow: WindowRef ): OSStatus; external name '_SetWindowModality'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowModality() * * Summary: * Retrieves the modality of a window. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose modality to retrieve. * * outModalKind: * On exit, contains the modality of the window. * * outUnavailableWindow: * On exit, ifÊthe window is window-modal, contains the target * window of the specified window's modality. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function GetWindowModality( inWindow: WindowRef; var outModalKind: WindowModality; outUnavailableWindow: WindowRefPtr { can be NULL } ): OSStatus; external name '_GetWindowModality'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HIWindowIsDocumentModalTarget() * * Summary: * Determines if a window is currently the target window of another * document modal window, such as a sheet. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window in question. * * outOwner: * If inWindow is the target of a document modal window, outOwner * is set to the document modal window on exit. If this function * does not return true, outOwner is undefined. You may pass NULL * if you don't want the owner's window ref. * * Result: * A boolean result. A true result indicates that inWindow is * currently the target of a document modal window. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function HIWindowIsDocumentModalTarget( inWindow: HIWindowRef; outOwner: HIWindowRefPtr { can be NULL } ): Boolean; external name '_HIWindowIsDocumentModalTarget'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Floating Windows } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.6 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * ShowFloatingWindows() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function ShowFloatingWindows: OSStatus; external name '_ShowFloatingWindows'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HideFloatingWindows() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function HideFloatingWindows: OSStatus; external name '_HideFloatingWindows'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * AreFloatingWindowsVisible() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function AreFloatingWindowsVisible: Boolean; external name '_AreFloatingWindowsVisible'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Groups } { The Window Group API allows the creation and management of groups of windows, } { allowing control of the z-order, activation, and positioning of the windows. } { Internally to the Window Manager, each of the standard window tiers (document, } { toolbar, floating, modal, utility, help, and overlay) is implemented as a window } { group; you can access the window group for a class with GetWindowGroupOfClass. } { You can create your own window groups, if you would like your windows to float, } { for example, above the floating window layer but below the modal layer. It is } { also possible to create more complex hierarchical arrangements of window groups. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type WindowGroupRef = ^SInt32; { an opaque 32-bit type } WindowGroupRefPtr = ^WindowGroupRef; { when a var xx:WindowGroupRef parameter can be nil, it is changed to xx: WindowGroupRefPtr } { may be passed as the "behindWindow" parameter to NewCWindow and SendBehind} const { may be passed as the "behindWindow" parameter to NewCWindow and SendBehind} kFirstWindowOfGroup = WindowRef(-1); kLastWindowOfGroup = nil; { may be passed as the "behindGroup" parameter to SendWindowGroupBehind} kFirstWindowGroup = WindowGroupRef(-1); kLastWindowGroup = nil; { * WindowGroupAttributes * * Summary: * These are attributes that may be applied to a window group. } type WindowGroupAttributes = UInt32; const { * Makes the group behave somewhat as a layer of windows that move * together. When any window in the group is brought to the front of * the group, the entire group will also be brought to the front of * the containing group's child hierarchy. } kWindowGroupAttrSelectAsLayer = 1 shl 0; { * The positions of the contents of this group with respect to each * other cannot be changed. When one item moves, all other items are * moved simultaneously. } kWindowGroupAttrMoveTogether = 1 shl 1; { * The z-order of the contents of this group with respect to each * other cannot be changed. When one item changes z-order, all other * items are moved simultaneously. For purposes of z-ordering, the * group and all its subgroups are effectively treated as if they * were a single window in the parent group of this group. } kWindowGroupAttrLayerTogether = 1 shl 2; { * The active state of the windows in this group is shared. The * windows in the group are activated or deactivated according to the * activation scope of the group, but when any window in the group * changes activation, all other windows change to match. } kWindowGroupAttrSharedActivation = 1 shl 3; { * When any window in this group is collapsed, all other windows in * this group are hidden. All subgroups of this group are also * examined for the HideOnCollapse attribute, and any windows of any * subgroup with this attribute are also hidden. All windows will be * shown again when the collapsed window is expanded. } kWindowGroupAttrHideOnCollapse = 1 shl 4; { * This window group's window level should be left unchanged. If this * attribute is not specified, this window group's window level will * be promoted to a value equal to the level of the next FixedLevel * window group beneath it in the window group hierarchy. } kWindowGroupAttrFixedLevel = 1 shl 5; { * WindowActivationScope * * Discussion: * Every window has a WindowActivationScope. It defines how windows * are activated by the Window Manager with respect to other windows * in the windowÕs group and in the current process. } type WindowActivationScope = UInt32; const { * Windows with this scope are never activated by the Window Manager. * This should be used when the windowÕs visual state does not change * based on activation (for example, tooltip windows), or when the * client wishes to manually control all activation. The window owner * is free to explicitly activate windows using the ActivateWindow * and DeactivateWindow APIs. } kWindowActivationScopeNone = 0; { * Windows with this scope are always active if visible. Windows with * this scope are unaffected by the activation state of other * windows. This activation scope is automatically used by floating * windows. } kWindowActivationScopeIndependent = 1; { * Windows with this scope are activated relative to other windows * with the same scope in the current process. Only one window with * this scope can be active in the entire process. This activation * scope is automatically used by document and dialog windows. } kWindowActivationScopeAll = 2; { * Summary: * These are constants that can be used for the inNextGroup * parameter to GetWindowGroupSibling. } const { * Indicates that GetWindowGroupSibling should return the next deeper * sibling group in the z-order. } kNextWindowGroup = true; { * Indicates that GetWindowGroupSibling should return the next higher * sibling group in the z-order. } kPreviousWindowGroup = false; { * WindowGroupContentOptions * * Discussion: * Window group contents options are used to control what group * content is counted or returned by the CountWindowGroupContents * and GetWindowGroupContents APIs. } type WindowGroupContentOptions = UInt32; const { * Indicates that Count/GetWindowGroupContents should return the * windows in a group. If this option is not set, these APIs return * the groups in a group. } kWindowGroupContentsReturnWindows = 1 shl 0; { * Indicates that Count/GetWindowGroupContents should include the * contents of groups contained by the specified group. If this * option is not set, these APIs only return information about the * specified groupÕs contents. } kWindowGroupContentsRecurse = 1 shl 1; { * Indicates that Count/GetWindowGroupContents should only include * visible windows. Only valid when kWindowGroupContentsReturnWindows * is specified. } kWindowGroupContentsVisible = 1 shl 2; {----------------------------------------------------------------------------------} { ¥ Group creation, destruction, and refcounting } {----------------------------------------------------------------------------------} { * CreateWindowGroup() * * Summary: * Creates a new window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inAttributes: * Attributes for the new window group. * * outGroup: * On exit, contains the new window group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function CreateWindowGroup( inAttributes: WindowGroupAttributes; var outGroup: WindowGroupRef ): OSStatus; external name '_CreateWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RetainWindowGroup() * * Summary: * Increments the refcount of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose refcount to increment. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function RetainWindowGroup( inGroup: WindowGroupRef ): OSStatus; external name '_RetainWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ReleaseWindowGroup() * * Summary: * Releases a refcount on a window group. If the refcount goes to * zero, the group is destroyed, and a refcount is released from all * contained objects. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose refcount to decrement. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function ReleaseWindowGroup( inGroup: WindowGroupRef ): OSStatus; external name '_ReleaseWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupRetainCount() * * Summary: * Returns the refcount of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose refcount to return. * * Availability: * Mac OS X: in version 10.1 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowGroupRetainCount( inGroup: WindowGroupRef ): ItemCount; external name '_GetWindowGroupRetainCount'; (* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *) { * GetWindowGroupOfClass() * * Summary: * Gets the window group in which windows of a given class are * placed. * * Discussion: * The Window Manager uses window groups internally to manage the * ordering of windows of different classes. In some cases, multiple * classes are placed within the same group; for example, windows * from all of the modal and alert window classes are placed into * the same modal window group. The refcount of the group returned * by this API is not incremented, and the caller does not need to * release the reference. * * Mac OS X threading: * Not thread safe * * Parameters: * * windowClass: * The class whose window group to retrieve. You may pass * kAllWindowClasses to retrieve the root window group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowGroupOfClass( windowClass_: WindowClass ): WindowGroupRef; external name '_GetWindowGroupOfClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊGroup name, attributes, and level } {----------------------------------------------------------------------------------} { * SetWindowGroupName() * * Summary: * Sets the name of a window group. * * Discussion: * The name of a window group is never displayed to the user. * However, it is displayed by debugging functions such as * DebugPrintWindowGroup. This can be very useful when debugging the * structure of your window groups. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose name to set. * * inName: * The name of the group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SetWindowGroupName( inGroup: WindowGroupRef; inName: CFStringRef ): OSStatus; external name '_SetWindowGroupName'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CopyWindowGroupName() * * Summary: * Returns a copy of the name of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose name to retrieve. * * outName: * On exit, contains the name of the group. It is the caller's * responsibility to release the name. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function CopyWindowGroupName( inGroup: WindowGroupRef; var outName: CFStringRef ): OSStatus; external name '_CopyWindowGroupName'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupAttributes() * * Summary: * Retrieves the attributes of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose attributes to retrieve. * * outAttributes: * On exit, the groupÕs attributes. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowGroupAttributes( inGroup: WindowGroupRef; var outAttributes: WindowGroupAttributes ): OSStatus; external name '_GetWindowGroupAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ChangeWindowGroupAttributes() * * Summary: * Changes the attributes of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose attributes to change. * * setTheseAttributes: * The attributes to set. * * clearTheseAttributes: * The attributes to clear. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function ChangeWindowGroupAttributes( inGroup: WindowGroupRef; setTheseAttributes: WindowGroupAttributes; clearTheseAttributes: WindowGroupAttributes ): OSStatus; external name '_ChangeWindowGroupAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowGroupLevel() * * Summary: * Sets the CoreGraphics window group level of windows in a group. * * Discussion: * CoreGraphics windows (used to implement all windows in Carbon and * Cocoa applications on Mac OS X) are divided into layers specified * by a window level. Standard window levels are listed in * . By default, a new window group * has a window level of kCGNormalWindowLevel. * * When a window is placed into a window group, its window level is * determined by the window level of its "base group". This is the * containing group that is a child of the root group. For example, * if group A is a child of the root group, and group B is a child * of group A, and window C is in group B, then window C's base * group is group A, and group A's window level determines the level * of window C. * * SetWindowGroupLevel only allows changing the window level of * groups that are children of the root group. It returns paramErr * for other groups, since a group that is not a child of the root * group is not a base group and changing its level has no effect. * * * Changing the level of a group also changes the level of all * windows currently contained by the group. * * In Mac OS X 10.4 and later, SetWindowGroupLevel will set all * three window levels associated with a window group: the Active, * Inactive, and Promoted levels. It will then immediately determine * if the Active level needs to be promoted to a larger value, and * if so, set the Promoted level to that value. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The window group whose level to change. * * inLevel: * The new level for the windows in this group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SetWindowGroupLevel( inGroup: WindowGroupRef; inLevel: SInt32 ): OSStatus; external name '_SetWindowGroupLevel'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupLevel() * * Summary: * Gets the CoreGraphics window group level of windows in a group. * * Discussion: * In Mac OS X 10.4 and later, GetWindowGroupLevel will return * either the Promoted window level or the Inactive window level, * depending on whether the application is active or inactive. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The window group whose level to return. * * outLevel: * On exit, contains the window level of the windows in this group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowGroupLevel( inGroup: WindowGroupRef; var outLevel: SInt32 ): OSStatus; external name '_GetWindowGroupLevel'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * Summary: * Parameters to GetWindowGroupLevelOfType and * SetWindowGroupLevelOfType } const { * The window level that is nominally used for windows in the group * when the application is active. However, if a group with a higher * window level is positioned below group in the window group * hierarchy, this group's active level will be promoted to match the * level of the group in front of it. You can determine the actual * window level in use for a group using the * kWindowGroupLevelPromoted constant. } kWindowGroupLevelActive = 1; { * The window level that is used for windows in the group when the * application is inactive. } kWindowGroupLevelInactive = 2; { * The window level that is actually used for windows in the group * when the application is active. This level will either be the same * as the Active window level, or will be a larger value to match the * level of a group below this group. * * We do not recommend setting the Promoted window level explicitly, * because the promoted level is reset by the Window Manager whenever * the window group hierarchy structure changes, and therefore any * changes that you may make to the promoted level can be * overwritten. In general you should only use this API to set the * Active and Inactive window levels. } kWindowGroupLevelPromoted = 3; { * SetWindowGroupLevelOfType() * * Summary: * Sets a CoreGraphics window group level of a window group. * * Discussion: * See the SetWindowGroupLevel API for a general discussion of * window levels and window groups. * * In Mac OS X 10.4 and later, a window group may have multiple * window levels associated with it; one level for when the * application is active, and another for when the application is * inactive. The Window Manager automatically switches each group's * level as the application becomes active or inactive. This API can * be used to set each level associated with a group. * * This API can also be used to set the promoted window level that * is actually used for windows in the group; however, we do not * recommend this usage, because the promoted window level is reset * by the Window Manager whenever the window group hierarchy * structure changes, and therefore any changes that you may make to * the promoted level can be overwritten. In general you should only * use this API to set the Active and Inactive window levels. * * * When setting the Active level of a group with the FixedLevel * window group attribute, this API will automatically also set the * Promoted level to the same value, and also update the Promoted * level of any non-FixedLevel groups above the group being modified. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The window group whose level to change. * * inLevelType: * The level type to change (one of kWindowGroupLevelActive, * kWindowGroupLevelInactive, or kWindowGroupLevelPromoted). * * inLevel: * The new level for the windows in this group. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function SetWindowGroupLevelOfType( inGroup: WindowGroupRef; inLevelType: UInt32; inLevel: CGWindowLevel ): OSStatus; external name '_SetWindowGroupLevelOfType'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) { * GetWindowGroupLevelOfType() * * Summary: * Gets a CoreGraphics window level of a window group. * * Discussion: * See the SetWindowGroupLevel API for a general discussion of * window levels and window groups. * * In Mac OS X 10.4 and later, a window group may have multiple * window levels associated with it; one level for when the * application is active, and another for when the application is * inactive. The Window Manager automatically switches each group's * level as the application becomes active or inactive. The * GetWindowGroupLevelOfType API can be used to get each level * associated with a group, including the promoted window level that * is actually in use for windows in the group while the application * is active. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The window group whose level to retrieve. * * inLevelType: * The level type to retrieve (one of kWindowGroupLevelActive, * kWindowGroupLevelInactive, or kWindowGroupLevelPromoted). * * outLevel: * On exit, the level for the windows in this group. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function GetWindowGroupLevelOfType( inGroup: WindowGroupRef; inLevelType: UInt32; var outLevel: CGWindowLevel ): OSStatus; external name '_GetWindowGroupLevelOfType'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊGroup z-ordering } {----------------------------------------------------------------------------------} { * SendWindowGroupBehind() * * Summary: * Changes the z-order of a group, if the group does not have the * kWindowGroupAttributeLayerTogether attribute set. * * Discussion: * SendWindowGroupBehind currently requires that the group being * moved and the behindGroup have the same parent group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose z-order to change. * * behindGroup: * The group behind which to position the specified group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SendWindowGroupBehind( inGroup: WindowGroupRef; behindGroup: WindowGroupRef ): OSStatus; external name '_SendWindowGroupBehind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊGroup containment hierarchy manipulation } {----------------------------------------------------------------------------------} { * GetWindowGroup() * * Summary: * Gets the window group that contains a window. * * Discussion: * The refcount of the group returned by this API is not * incremented, and the caller does not need to release the * reference. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose containing group to retrieve. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowGroup( inWindow: WindowRef ): WindowGroupRef; external name '_GetWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowGroup() * * Summary: * Sets the window group that contains a window. * * Discussion: * The windowÕs z-order relative to windows in the current process * may also be changed by this API. If the new window group is * z-ordered above the windowÕs current group, the window will be * placed at the end of the new group. If the new window group is * z-ordered below the windowÕs current group, the window will be * placed at the top of the new group. You may not place a window * directly into the root group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose group to change. * * inNewGroup: * The new containing group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function SetWindowGroup( inWindow: WindowRef; inNewGroup: WindowGroupRef ): OSStatus; external name '_SetWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowContainedInGroup() * * Summary: * Indicates whether a window is contained within a group or any of * its subgroups. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose containment to examine. * * inGroup: * The group that might contain the window. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function IsWindowContainedInGroup( inWindow: WindowRef; inGroup: WindowGroupRef ): Boolean; external name '_IsWindowContainedInGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupParent() * * Summary: * Gets the window group that contains a group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose containing group to retrieve. * * outGroup: * On exit, the containing window group of the group. The groupÕs * refcount is not incremented by this API, and the caller does * not need to release the reference. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowGroupParent( inGroup: WindowGroupRef ): WindowGroupRef; external name '_GetWindowGroupParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowGroupParent() * * Summary: * Sets the window group that contains a group. * * Discussion: * SetWindowGroupParent currently requires that the group have no * windows in it. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose containing group to change. * * inNewGroup: * The new containing group. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SetWindowGroupParent( inGroup: WindowGroupRef; inNewGroup: WindowGroupRef ): OSStatus; external name '_SetWindowGroupParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupSibling() * * Summary: * Returns the next or previous group of a window group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose sibling to return. * * inNextGroup: * True to return the next sibling, false to return the previous * sibling. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowGroupSibling( inGroup: WindowGroupRef; inNextGroup: Boolean ): WindowGroupRef; external name '_GetWindowGroupSibling'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupOwner() * * Summary: * Returns the window that owns a window group, or NULL if none. * * Discussion: * A window may own one or more window groups. The windows in an * owned window group will always be z-ordered above the owner * window. Whenever the owner window changes z-order, the windows in * the groups owned by the window will be moved also. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose owner to retrieve. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowGroupOwner( inGroup: WindowGroupRef ): WindowRef; external name '_GetWindowGroupOwner'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowGroupOwner() * * Summary: * Sets the window that owns a window group. * * Discussion: * The group and the window must have the same parent group. * SetWindowGroupOwner currently requires that the group have no * windows in it. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose owner to set. * * inWindow: * The group's new owner. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SetWindowGroupOwner( inGroup: WindowGroupRef; inWindow: WindowRef ): OSStatus; external name '_SetWindowGroupOwner'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ Inspection of group contents } {----------------------------------------------------------------------------------} { * CountWindowGroupContents() * * Summary: * Counts the windows or groups contained in a group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose contents to count. * * inOptions: * Specifies how to count the groupÕs contents. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function CountWindowGroupContents( inGroup: WindowGroupRef; inOptions: WindowGroupContentOptions ): ItemCount; external name '_CountWindowGroupContents'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowGroupContents() * * Summary: * Retrieves the windows or groups contained in a group. * * Discussion: * The windows or groups returned by this API will be placed into * the output buffer in z-order, from highest to lowest. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose contents to retrieve. * * inOptions: * Specifies which content to retrieve. * * inAllowedItems: * The number of items that will fit in the output buffer. * * outNumItems: * On exit, the number of items that were returned. May be NULL. * * outItems: * On entry, points to enough memory to hold inAllowedSize * WindowRefs or WindowGroupRefs. On exit, contains *outNumItems * WindowRefs or WindowGroupRefs. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowGroupContents( inGroup: WindowGroupRef; inOptions: WindowGroupContentOptions; inAllowedItems: ItemCount; outNumItems: ItemCountPtr { can be NULL }; var outItems: UnivPtr ): OSStatus; external name '_GetWindowGroupContents'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetIndexedWindow() * * Summary: * Retrieves a specified window from a group. * * Discussion: * GetIndexedWindow is provided as an easier way to get a particular * window from a group than using GetWindowGroupContents. If you * only need to retrieve, say, the last window in a group, it is * easier and more efficient to use GetIndexedWindow. If you need to * retrieve all the windows in a group, it is more efficient to use * GetWindowGroupContents. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group containing the window to retrieve. * * inIndex: * The index of the window. This parameter may range from 1 to * CountWindowGroupContents( inGroup, * kWindowGroupContentsReturnWindows | inOptions ); * * inOptions: * Indicates how to locate the specified window. * kWindowGroupContentsReturnWindows is implied by this API and * does not need to be explicitly specified. * * outWindow: * On exit, the window at the specified index. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetIndexedWindow( inGroup: WindowGroupRef; inIndex: UInt32; inOptions: WindowGroupContentOptions; var outWindow: WindowRef ): OSStatus; external name '_GetIndexedWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowIndex() * * Summary: * Retrieves the z-order index of a window inside a group. * * Discussion: * The z-order index of a window is its relative position in z-order * inside a group. The index ranges from 1 to the number of windows * in the group. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose z-order index to retrieve. * * inStartGroup: * The group on which to base the z-order index. This should be * either the containing group of the window, or NULL. If NULL, * this API returns the z-order index of the window across the * entire process. * * inOptions: * Indicates how to enumerate the specified window. * kWindowGroupContentsReturnWindows is implied by this API and * does not need to be explicitly specified. * * outIndex: * On exit, contains the windowÕs z-order index. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowIndex( inWindow: WindowRef; inStartGroup: WindowGroupRef; inOptions: WindowGroupContentOptions; var outIndex: UInt32 ): OSStatus; external name '_GetWindowIndex'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊWindow activation } {----------------------------------------------------------------------------------} { * ActiveNonFloatingWindow() * * Summary: * Returns the window, among all windows with activation scope of * kWindowActivationScopeAll, that is considered active. * * Discussion: * The Mac OS 8.5 Window Manager introduced the * FrontNonFloatingWindow API, which was designed to return the * window that should be considered active by the application. With * the advent of window groups, it is now possible to have a window * that looks active (is highlighted, and accepts keyboard input) * but to have other non-floating windows grouped above the active * window. The ActiveNonFloatingWindow API returns the active window * regardless of where it is positioned in the z-order. Most code * that currently uses FrontNonFloatingWindow or * GetFrontWindowOfClass(kDocumentWindowClass) to get the active * window should use ActiveNonFloatingWindow instead. * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function ActiveNonFloatingWindow: WindowRef; external name '_ActiveNonFloatingWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowActive() * * Summary: * Indicates whether a window is active. * * Discussion: * The active state of a window is simply determined by whether its * window frame is drawn using an active appearance. This does not * indicate whether the window has keyboard focus. To get the window * with keyboard focus, use GetUserFocusWindow(). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose active state to retrieve. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function IsWindowActive( inWindow: WindowRef ): Boolean; external name '_IsWindowActive'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ActivateWindow() * * Summary: * Activates or deactivates a window. * * Discussion: * Window activation consists of two steps: hiliting the window * frame and sending an activate event to the window. ActivateWindow * handles both of these steps and also updates internal Window * Manager state. If you just need to hilite the window frame, you * may use HiliteWindow. If you need to send an activate event, you * should always use ActivateWindow rather than creating and sending * the event yourself. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to activate or deactivate. * * inActivate: * Whether to activate or deactivate the window. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function ActivateWindow( inWindow: WindowRef; inActivate: Boolean ): OSStatus; external name '_ActivateWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowActivationScope() * * Summary: * Retrieves a windowÕs activation scope. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose activation scope to retrieve. * * outScope: * On exit, the windowÕs activation scope. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function GetWindowActivationScope( inWindow: WindowRef; var outScope: WindowActivationScope ): OSStatus; external name '_GetWindowActivationScope'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowActivationScope() * * Summary: * Sets a windowÕs activation scope. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose activation scope to set. * * inScope: * The new activation scope. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.4 and later * Non-Carbon CFM: not available } function SetWindowActivationScope( inWindow: WindowRef; inScope: WindowActivationScope ): OSStatus; external name '_SetWindowActivationScope'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊDebugging Utilities } {----------------------------------------------------------------------------------} { * DebugPrintWindowGroup() * * Summary: * Prints the contents of a window group to stdout. * * Mac OS X threading: * Not thread safe * * Parameters: * * inGroup: * The group whose contents to print. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } procedure DebugPrintWindowGroup( inGroup: WindowGroupRef ); external name '_DebugPrintWindowGroup'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DebugPrintAllWindowGroups() * * Summary: * Prints the full window group hierarchy, starting at the root * group. * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } procedure DebugPrintAllWindowGroups; external name '_DebugPrintAllWindowGroups'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {----------------------------------------------------------------------------------} { ¥ÊThemeBrush and ThemeTextColor support } {----------------------------------------------------------------------------------} { * SetThemeWindowBackground() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function SetThemeWindowBackground( inWindow: WindowRef; inBrush: ThemeBrush; inUpdate: Boolean ): OSStatus; external name '_SetThemeWindowBackground'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetThemeTextColorForWindow() * * Summary: * Sets a text color which contrasts with a theme brush. * * Discussion: * SetThemeTextColorForWindow sets a text color in the specified * window's port which contrasts with the specified brush and also * matches the inActive parameter. Only a subset of the theme * brushes have theme text colors: currently (as of Mac OS 9 and Mac * OS X 10.1), the Alert, Dialog, ModelessDialog, and Notification * brushes have corresponding text colors. For any other brush, * SetThemeTextColorForWindow returns themeNoAppropriateBrushErr and * does not modify the text color. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose text color to change. * * inActive: * Whether the text color should indicate an active or inactive * state. * * inDepth: * The bit depth of the window's port. * * inColorDev: * Whether the window's port is color or black&white. * * Result: * An operating system result code, including * themeNoAppropriateBrushErr if the specified theme brush does not * have a corresponding theme text color. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.1 and later } function SetThemeTextColorForWindow( inWindow: WindowRef; inActive: Boolean; inDepth: SInt16; inColorDev: Boolean ): OSStatus; external name '_SetThemeTextColorForWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Background Image } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { SetWinColor is not available in Carbon.} { * SetWinColor() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { SetDeskCPat is not available in Carbon.} { * SetDeskCPat() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * SetWindowContentColor() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowContentColor( window: WindowRef; const (*var*) color: RGBColor ): OSStatus; external name '_SetWindowContentColor'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowContentColor() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowContentColor( window: WindowRef; var color: RGBColor ): OSStatus; external name '_GetWindowContentColor'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.5 forward} { * GetWindowContentPattern() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowContentPattern( window: WindowRef; outPixPat: PixPatHandle ): OSStatus; external name '_GetWindowContentPattern'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowContentPattern() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowContentPattern( window: WindowRef; pixPat: PixPatHandle ): OSStatus; external name '_SetWindowContentPattern'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 9.0 forward} type WindowPaintProcOptions = OptionBits; const kWindowPaintProcOptionsNone = 0; { * InstallWindowContentPaintProc() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 9.0 and later } function InstallWindowContentPaintProc( window: WindowRef; paintProc: WindowPaintUPP; options: WindowPaintProcOptions; refCon: UnivPtr { can be NULL } ): OSStatus; external name '_InstallWindowContentPaintProc'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Scrolling Routines } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} type ScrollWindowOptions = UInt32; const kScrollWindowNoOptions = 0; kScrollWindowInvalidate = 1 shl 0; { add the exposed area to the windowÕs update region} kScrollWindowEraseToPortBackground = 1 shl 1; { erase the exposed area using the background color/pattern of the windowÕs grafport} { Routines available from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward} { * ScrollWindowRect() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function ScrollWindowRect( inWindow: WindowRef; const (*var*) inScrollRect: Rect; inHPixels: SInt16; inVPixels: SInt16; inOptions: ScrollWindowOptions; outExposedRgn: RgnHandle { can be NULL } ): OSStatus; external name '_ScrollWindowRect'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ScrollWindowRegion() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function ScrollWindowRegion( inWindow: WindowRef; inScrollRgn: RgnHandle; inHPixels: SInt16; inVPixels: SInt16; inOptions: ScrollWindowOptions; outExposedRgn: RgnHandle { can be NULL } ): OSStatus; external name '_ScrollWindowRegion'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Low-Level Region & Painting Routines } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * ClipAbove() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure ClipAbove( window: WindowRef ); external name '_ClipAbove'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { SaveOld/DrawNew are not available in Carbon. Use ReshapeCustomWindow instead.} { * SaveOld() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * DrawNew() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * PaintOne() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure PaintOne( window: WindowRef { can be NULL }; clobberedRgn: RgnHandle ); external name '_PaintOne'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * PaintBehind() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure PaintBehind( startWindow: WindowRef { can be NULL }; clobberedRgn: RgnHandle ); external name '_PaintBehind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CalcVis() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure CalcVis( window: WindowRef ); external name '_CalcVis'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CalcVisBehind() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure CalcVisBehind( startWindow: WindowRef { can be NULL }; clobberedRgn: RgnHandle ); external name '_CalcVisBehind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CheckUpdate() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function CheckUpdate( var theEvent: EventRecord ): Boolean; external name '_CheckUpdate'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window List } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * [Mac]FindWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function FindWindow( thePoint: Point; var window: WindowRef ): WindowPartCode; external name '_FindWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) function MacFindWindow( thePoint: Point; var window: WindowRef ): WindowPartCode; external name '_FindWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * FrontWindow() * * Summary: * Returns the frontmost visible window in the window list. * * Discussion: * The frontmost visible window is not necessarily a document or * dialog window, or even a window created by your application. For * example, it may be a menu window, a Text Services Manager * bottom-line input window, a help tag, or a floating window. If * your code needs the frontmost document or dialog window, use the * ActiveNonFloatingWindow or FrontNonFloatingWindow APIs instead of * FrontWindow. For compatibility with existing applications, * FrontWindow ignores all windows of class kMenuBarWindowClass and * instead returns the frontmost visible window behind the menubar. * * Mac OS X threading: * Not thread safe * * Result: * The frontmost visible window, or NULL if no windows are visible. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function FrontWindow: WindowRef; external name '_FrontWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * BringToFront() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure BringToFront( window: WindowRef ); external name '_BringToFront'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SendBehind() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SendBehind( window: WindowRef; behindWindow: WindowRef ); external name '_SendBehind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SelectWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SelectWindow( window: WindowRef ); external name '_SelectWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.6 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * FrontNonFloatingWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function FrontNonFloatingWindow: WindowRef; external name '_FrontNonFloatingWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward} { * GetNextWindowOfClass() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function GetNextWindowOfClass( inWindow: WindowRef; inWindowClass: WindowClass; mustBeVisible: Boolean ): WindowRef; external name '_GetNextWindowOfClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetFrontWindowOfClass() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function GetFrontWindowOfClass( inWindowClass: WindowClass; mustBeVisible: Boolean ): WindowRef; external name '_GetFrontWindowOfClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * FindWindowOfClass() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function FindWindowOfClass( const (*var*) where: Point; inWindowClass: WindowClass; var outWindow: WindowRef; outWindowPart: WindowPartCodePtr { can be NULL } ): OSStatus; external name '_FindWindowOfClass'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * Summary: * Options for the CreateStandardWindowMenu API. } const { * Requests the standard window menu include a Rotate Windows menu * item. Available in Mac OS X 10.2. } kWindowMenuIncludeRotate = 1 shl 0; { * CreateStandardWindowMenu() * * Discussion: * Creates a standard Window menu for your application. You can call * this to create a window menu for your application. Once you have * the menu, you need to insert it in your menu bar (typically at * the end of your menu list) with a call to InsertMenu. To register * a window to be tracked by this menu, you either create your * window with CreateNewWindow, passing the * kWindowInWindowMenuAttribute, or you can use * ChangeWindowAttributes after the window is created. The Toolbox * takes care of acting on the standard items such as zoom and * minimize, as well as bringing selected windows to the front. All * you need to do is install it and register your windows and the * Toolbox does the rest. * * You may also add your own menu items to the standard window menu. * To do this, we recommend that you use the * GetIndMenuItemWithCommandID API to locate one of the standard * menu items in the menu which is immediately above or below the * location where you wish to insert your items. Then insert your * items relative to the position of the standard menu item. Do not * attempt to search the menu items yourself without calling * GetIndMenuItemWithCommandID; in Mac OS X 10.2, * CreateStandardWindowMenu returns an initially empty menu which is * populated later when the menu is displayed or when * GetIndMenuItemWithCommandID is called, so you will find no items * in the menu unless you first call GetIndMenuItemWithCommandID. * * There is a known bug in all versions of CarbonLib which causes * the Zoom, Collapse, and Uncollapse menu items in the standard * window menu to be non-functional for windows created by the * Dialog Manager. To work around this bug, you can install your own * event handlers on the dialog window for kEventWindowZoom, * kEventWindowCollapse, and kEventWindowExpand, and handle the * event by calling the appropriate Window Manager API. * * Mac OS X threading: * Not thread safe * * Parameters: * * inOptions: * Requests optional behavior of the standard window menu. Mac OS * X 10.2 supports the kWindowMenuIncludeRotate option; in earlier * versions of Mac OS X, and in CarbonLib, you must pass zero for * this parameter. * * outMenu: * Receives a new menu reference which contains the standard * window menu items and commands. * * Result: * An operating system status code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function CreateStandardWindowMenu( inOptions: OptionBits; var outMenu: MenuRef ): OSStatus; external name '_CreateStandardWindowMenu'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowAlternateTitle() * * Discussion: * This API sets an alternate title for a window. The alternate * title overrides what is displayed in the Window menu. If you do * not set an alternate title, the normal window title is used. You * would normally use this if the window title was not expressive * enough to be used in the Window menu (or similar text-only * situation). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to set the alternate title. * * inTitle: * The alternate title for the window. Passing NULL for this * parameter will remove any alternate title that might be present. * * Result: * An operating system status code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function SetWindowAlternateTitle( inWindow: WindowRef; inTitle: CFStringRef ): OSStatus; external name '_SetWindowAlternateTitle'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CopyWindowAlternateTitle() * * Discussion: * This API gets the alternate title for a window. See the * discussion of SetWindowAlternateTitle for more info. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to get the alternate title from. * * outTitle: * Receives the alternate title for the window. If the window does * not have an alternate title, NULL will be returned in outTitle. * * Result: * An operating system status code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function CopyWindowAlternateTitle( inWindow: WindowRef; var outTitle: CFStringRef ): OSStatus; external name '_CopyWindowAlternateTitle'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Misc Low-Level stuff } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * InitWindows() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { The window manager port does not exist in Carbon. } { We are investigating replacement technologies. } { * GetWMgrPort() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * GetCWMgrPort() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * IsValidWindowPtr() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function IsValidWindowPtr( possibleWindow: WindowRef ): Boolean; external name '_IsValidWindowPtr'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) function IsValidWindowRef__NAME__IsValidWindowPtr( possibleWindow: WindowRef ): Boolean; external name '_IsValidWindowRef__NAME__IsValidWindowPtr'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.6 forward InitFloatingWindows is not available in Carbon; window ordering is always active for Carbon clients } { * InitFloatingWindows() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in WindowsLib 8.5 and later } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Various & Sundry Window Accessors } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * HiliteWindow() * * Summary: * Hilites or unhilites a window's frame. * * Discussion: * Hiliting a window's frame is not the same as activating the * window. A window's hilited state determines whether the window * draws its titlebar and associated widgets as if they were the * frontmost window of its window group, whereas a window's active * state determines whether the window really is the frontmost * window of its window group. Activating or deactivating a window * automatically adjusts a window's hilited state to match. * * In general, only very old compatibility code would ever need or * want to manually modify a window's hilited state via the * HiliteWindow API. Modern clients can typically avoid this API * entirely. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose frame you wish to hilite/unhilite. * * fHilite: * Whether to hilite or unhilite the window's frame. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure HiliteWindow( window: WindowRef; fHilite: Boolean ); external name '_HiliteWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWRefCon() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SetWRefCon( window: WindowRef; data: SInt32 ); external name '_SetWRefCon'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWRefCon() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetWRefCon( window: WindowRef ): SInt32; external name '_GetWRefCon'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowPic() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SetWindowPic( window: WindowRef; pic: PicHandle ); external name '_SetWindowPic'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowPic() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetWindowPic( window: WindowRef ): PicHandle; external name '_GetWindowPic'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWVariant() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetWVariant( window: WindowRef ): SInt16; external name '_GetWVariant'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.0 (Appearance 1.0) forward} { * GetWindowFeatures() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function GetWindowFeatures( window: WindowRef; var outFeatures: UInt32 ): OSStatus; external name '_GetWindowFeatures'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowRegion() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function GetWindowRegion( window: WindowRef; inRegionCode: WindowRegionCode; ioWinRgn: RgnHandle ): OSStatus; external name '_GetWindowRegion'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowStructureWidths() * * Summary: * Returns the width of the structure region on each edge of a * window. * * Discussion: * The structure widths are the difference between the content * region and the structure region on each edge of a window. For * example, if the left edge of the structure region is at x=100, * and the left edge of the content region is at x=110, then the * structure width for the left side of the window is 10 pixels. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window for which to get structure widths. * * outRect: * On exit, contains the width of the structure region on each * side of the window; the left field of the rectangle contains * the structure width on the left side of the window, the top * field contains the width on the top side, and so on. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowStructureWidths( inWindow: WindowRef; var outRect: Rect ): OSStatus; external name '_GetWindowStructureWidths'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HIWindowChangeFeatures() * * Summary: * Changes the window features on the fly. * * Discussion: * HIWindowChangeFeatures changes the features of a window. This * should only be used by custom window definitions or window frame * views. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to modify. * * inSetThese: * The feature bits to set. * * inClearThese: * The feature bits to clear. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function HIWindowChangeFeatures( inWindow: WindowRef; inSetThese: UInt64; inClearThese: UInt64 ): OSStatus; external name '_HIWindowChangeFeatures'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Update Events } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { These aren't present in Carbon. Please use the InvalWindowRect, etc. routines below instead. } { * InvalRect() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * InvalRgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * ValidRect() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * ValidRgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * BeginUpdate() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure BeginUpdate( window: WindowRef ); external name '_BeginUpdate'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * EndUpdate() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure EndUpdate( window: WindowRef ); external name '_EndUpdate'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * InvalWindowRgn() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function InvalWindowRgn( window: WindowRef; region: RgnHandle ): OSStatus; external name '_InvalWindowRgn'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * InvalWindowRect() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function InvalWindowRect( window: WindowRef; const (*var*) bounds: Rect ): OSStatus; external name '_InvalWindowRect'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ValidWindowRgn() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function ValidWindowRgn( window: WindowRef; region: RgnHandle ): OSStatus; external name '_ValidWindowRgn'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ValidWindowRect() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function ValidWindowRect( window: WindowRef; const (*var*) bounds: Rect ): OSStatus; external name '_ValidWindowRect'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ DrawGrowIcon } { DrawGrowIcon is deprecated from Mac OS 8.0 forward. Theme-savvy window defprocs } { include the grow box in the window frame. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * DrawGrowIcon() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure DrawGrowIcon( window: WindowRef ); external name '_DrawGrowIcon'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Titles } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * SetWTitle() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SetWTitle( window: WindowRef; const (*var*) title: Str255 ); external name '_SetWTitle'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWTitle() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure GetWTitle( window: WindowRef; var title: Str255 ); external name '_GetWTitle'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowTitleWithCFString() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function SetWindowTitleWithCFString( inWindow: WindowRef; inString: CFStringRef ): OSStatus; external name '_SetWindowTitleWithCFString'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CopyWindowTitleAsCFString() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function CopyWindowTitleAsCFString( inWindow: WindowRef; var outString: CFStringRef ): OSStatus; external name '_CopyWindowTitleAsCFString'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Proxies } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * SetWindowProxyFSSpec() * * Summary: * Set the proxy icon for a window using an FSSpec to an existing * file system object (volume, folder, or file). * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to set. * * inFile: * The file system object that the window represents. The windowÕs * proxy icon is determined by asking Icon Services for the icon * of this object. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowProxyFSSpec( window: WindowRef; const (*var*) inFile: FSSpec ): OSStatus; external name '_SetWindowProxyFSSpec'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowProxyFSSpec() * * Summary: * Returns the FSSpec used to determine the proxy icon for a window. * * Discussion: * This API will return noErr and a valid FSSpec if the windowÕs * proxy icon has been specified using the SetWindowProxyFSSpec or * SetWindowProxyAlias APIs. If the window has no proxy icon, or if * the icon was specified with another SetWindowProxy API, then an * error will be returned. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon FSSpec to return. * * outFile: * On exit, contains the windowÕs proxy icon FSSpec. * * Result: * noErr if the windowÕs proxy icon FSSpec has been returned; * errWindowDoesNotHaveProxy if the window does not have a proxy * icon, or if the proxy icon was specified by IconRef or * type/creator rather than by FSSpec or alias. Other operating * system error codes may also be returned. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowProxyFSSpec( window: WindowRef; var outFile: FSSpec ): OSStatus; external name '_GetWindowProxyFSSpec'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HIWindowSetProxyFSRef() * * Summary: * Set the proxy icon for a window using an FSRef to an existing * file system object (volume, folder, or file). * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to set. * * inRef: * The file system object that the window represents. The window's * proxy icon is determined by asking Icon Services for the icon * of this object. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowSetProxyFSRef( window: WindowRef; const (*var*) inRef: FSRef ): OSStatus; external name '_HIWindowSetProxyFSRef'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) { * HIWindowGetProxyFSRef() * * Summary: * Returns the FSRef used to determine the proxy icon for a window. * * Discussion: * This API will return noErr and a valid FSRef if the window's * proxy icon has been specified using the FSRef, FSSpec or alias * SetWindowProxy APIs. If the window has no proxy icon, or if the * icon was specified with SetWindowProxyCreatorAndType or * SetWindowProxyIcon, then an error will be returned. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window containing the proxy icon to return. * * outRef: * On exit, contains the FSRef to the window's proxy icon. * * Result: * noErr if the window's proxy icon FSRef has been returned; * errWindowDoesNotHaveProxy if the window does not have a proxy * icon, or if the proxy icon was specified by * SetWindowProxyCreatorAndType or SetWindowProxyIcon. Other * operating system error codes may also be returned. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowGetProxyFSRef( window: WindowRef; var outRef: FSRef ): OSStatus; external name '_HIWindowGetProxyFSRef'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) { * SetWindowProxyAlias() * * Summary: * Sets the proxy icon for a window using an AliasHandle to an * existing file system object (volume, folder, or file). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose proxy icon to set. * * inAlias: * The file system object that the window represents. The windowÕs * proxy icon is determined by asking Icon Services for the icon * of this object. The Window Manager copies the alias data; the * caller may dispose of the alias after SetWindowProxyAlias * returns. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowProxyAlias( inWindow: WindowRef; inAlias: AliasHandle ): OSStatus; external name '_SetWindowProxyAlias'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowProxyAlias() * * Summary: * Returns the alias used to determine the proxy icon for a window. * * Discussion: * This API will return noErr and a valid alias if the windowÕs * proxy icon has been specified using the SetWindowProxyFSSpec or * SetWindowProxyAlias APIs. If the window has no proxy icon, or if * the icon was specified with another SetWindowProxy API, then an * error will be returned. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon alias to return. * * alias: * On exit, contains the windowÕs proxy icon alias. * * Result: * noErr if the windowÕs proxy icon alias has been returned; * errWindowDoesNotHaveProxy if the window does not have a proxy * icon, or if the proxy icon was specified by IconRef or * type/creator rather than by FSSpec or alias. Other operating * system error codes may also be returned. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowProxyAlias( window: WindowRef; var alias: AliasHandle ): OSStatus; external name '_GetWindowProxyAlias'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowProxyCreatorAndType() * * Summary: * Sets the proxy icon for a window using a file type and creator. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to set. * * fileCreator: * The creator code for the file system object that the window * represents. The windowÕs proxy icon is determined by asking * Icon Services for the icon corresponding to the specified * creator code and file type, on the specified volume. * * fileType: * The file type for the file system object that the window * represents. * * vRefNum: * The volume reference number for the volume containing the file * system object that the window represents. You may pass * kOnSystemDisk for this parameter if you don't know which volume * will hold the file system object. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowProxyCreatorAndType( window: WindowRef; fileCreator: OSType; fileType: OSType; vRefNum: SInt16 ): OSStatus; external name '_SetWindowProxyCreatorAndType'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowProxyIcon() * * Summary: * Returns the proxy icon of a window. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to return. * * outIcon: * On exit, contains the windowÕs proxy icon. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowProxyIcon( window: WindowRef; var outIcon: IconRef ): OSStatus; external name '_GetWindowProxyIcon'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowProxyIcon() * * Summary: * Sets a windowÕs proxy icon. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to set. * * icon: * The proxy icon. The Window Manager retains the IconRef; the * caller may release the IconRef after SetWindowProxyIcon returns. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowProxyIcon( window: WindowRef; icon: IconRef ): OSStatus; external name '_SetWindowProxyIcon'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RemoveWindowProxy() * * Summary: * Removes a windowÕs proxy icon. * * Discussion: * When removing the proxy icon, the Window Manager also releases * the alias or IconRef, if any, that was used to specify the proxy * icon. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to remove. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function RemoveWindowProxy( window: WindowRef ): OSStatus; external name '_RemoveWindowProxy'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * BeginWindowProxyDrag() * * Summary: * Creates a new drag reference that can be used to drag a windowÕs * proxy icon. * * Discussion: * This API is used by applications that need to add their own drag * flavors to the drag reference used for a proxy icon drag. Such an * application would call BeginWindowProxyDrag to create the drag * reference, add its own flavors, call * TrackWindowProxyFromExistingDrag to track the proxy icon drag, * and then EndWindowProxyDrag to release the drag * reference. * * An application which does not need to add its own drag flavors to * the drag reference can simply call TrackWindowProxyDrag. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to drag. * * outNewDrag: * On exit, contains the drag reference for the proxy icon. * * outDragOutlineRgn: * On entry, should be a valid RgnHandle; on exit, the region has * been updated with an outline of the proxy icon drag image. This * region should be passed to TrackWindowProxyFromExistingDrag; * the application may modify it first. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function BeginWindowProxyDrag( window: WindowRef; var outNewDrag: DragReference; outDragOutlineRgn: RgnHandle ): OSStatus; external name '_BeginWindowProxyDrag'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * EndWindowProxyDrag() * * Summary: * Releases a drag reference created by BeginWindowProxyDrag. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon drag reference to release. * * theDrag: * The drag reference to release. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function EndWindowProxyDrag( window: WindowRef; theDrag: DragReference ): OSStatus; external name '_EndWindowProxyDrag'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * TrackWindowProxyFromExistingDrag() * * Summary: * Tracks the drag of a window proxy icon. * * Discussion: * This API is used by applications that need to add their own drag * flavors to the drag reference used for a proxy icon drag. Such an * application would call BeginWindowProxyDrag to create the drag * reference, add its own flavors, call * TrackWindowProxyFromExistingDrag to track the proxy icon drag, * and then EndWindowProxyDrag to release the drag * reference. * * An application which does not need to add its own drag flavors to * the drag reference can simply call TrackWindowProxyDrag. * * A proxy icon may only be dragged if the window represented by the * proxy icon is not modifed (as indicated by the IsWindowModified * API). This restriction is imposed because a proxy icon is a * representation of a physical file system object, and dragging the * proxy icon may result in the Finder making a copy of the file * system object. If the window is modified, then it contains user * data that has not yet been saved to disk; making a copy of the * file system object would result in a stale copy that did not * contain the userÕs current data. * * By default, all newly created windows are considered to be dirty. * The application must call SetWindowModified( window, false ) * before the proxy icon will be draggable. * * In Mac OS X 10.3 and later, the proxy icon is also draggable in * dirty windows if the proxy icon was provided using the * SetWindowProxyIcon or SetWindowProxyCreatorAndType APIs. Dragging * is allowed in this case because the window does not represent an * actual file system object, and therefore there is no risk of user * data loss. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to drag. * * startPt: * The point in global coordinates where the drag originated. This * is generally the location of the mouse click in the proxy icon. * * drag: * The proxy icon drag reference. * * inDragOutlineRgn: * The outline of the proxy icon drag image, as returned by * BeginWindowProxyDrag. * * Result: * errUserWantsToDragWindow if the userÕs mouse movements indicated * that the user actually wants to drag the window instead of the * proxy icon (in this case the application should call DragWindow); * windowWrongStateErr if the window was modified and therefore the * proxy icon could not be dragged; noErr if the drag succeeded; * userCanceledErr if the user canceled the drag. Other operating * system result codes may also be returned. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function TrackWindowProxyFromExistingDrag( window: WindowRef; startPt: Point; drag: DragReference; inDragOutlineRgn: RgnHandle ): OSStatus; external name '_TrackWindowProxyFromExistingDrag'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * TrackWindowProxyDrag() * * Summary: * Tracks the drag of a window proxy icon. * * Discussion: * A proxy icon may only be dragged if the window represented by the * proxy icon is not modifed (as indicated by the IsWindowModified * API). This restriction is imposed because a proxy icon is a * representation of a physical file system object, and dragging the * proxy icon may result in the Finder making a copy of the file * system object. If the window is modified, then it contains user * data that has not yet been saved to disk; making a copy of the * file system object would result in a stale copy that did not * contain the userÕs current data. * * By default, all newly created windows are considered to be * modified. The application must call SetWindowModified( window, * false ) before the proxy icon will be draggable. * * In Mac OS X 10.3 and later, the proxy icon is also draggable in * dirty windows if the proxy icon was provided using the * SetWindowProxyIcon or SetWindowProxyCreatorAndType APIs. Dragging * is allowed in this case because the window does not represent an * actual file system object, and therefore there is no risk of user * data loss. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose proxy icon to drag. * * startPt: * The point in global coordinates where the drag originated. This * is generally the location of the mouse click in the proxy icon. * * Result: * errUserWantsToDragWindow if the userÕs mouse movements indicated * that the user actually wants to drag the window instead of the * proxy icon (in this case the application should call DragWindow); * windowWrongStateErr if the window was modified and therefore the * proxy icon could not be dragged; noErr if the drag succeeded; * userCanceledErr if the user canceled the drag. Other operating * system result codes may also be returned. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function TrackWindowProxyDrag( window: WindowRef; startPt: Point ): OSStatus; external name '_TrackWindowProxyDrag'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowModified() * * Summary: * Returns whether the window is considered to have unsaved content. * * Discussion: * By default, all newly created windows are considered to be * modified. The application must call SetWindowModified( window, * false ) to mark the window as unmodified. Until the window is * marked as unmodified, the proxy icon will not be draggable. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose modified state to return. * * Result: * true if the window has unsaved changes, or false if not. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function IsWindowModified( window: WindowRef ): Boolean; external name '_IsWindowModified'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowModified() * * Summary: * Sets whether the window is considered to have unsaved content. * * Discussion: * By default, all newly created windows are considered to be * modified. The application must call SetWindowModified( window, * false ) to mark the window as unmodified. Until the window is * marked as unmodified, the proxy icon will not be draggable. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose modified state to return. * * modified: * Whether the window has unsaved changes. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowModified( window: WindowRef; modified: Boolean ): OSStatus; external name '_SetWindowModified'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowPathSelectClick() * * Summary: * Indicates whether an EventRecord describing a click on a windowÕs * title should cause a path selection menu to be displayed. * * Discussion: * Windows that have a proxy icon provided using an FSSpec or alias * can support a path selection menu, which displays the file system * path to the object, one menu item per directory. Making a * selection from this item will automatically open the * corresponding object in the Finder. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window on which the click occurred. * * event: * The event. IsWindowPathSelectClick will only return true for * mouseDown events. * * Result: * true if the click should cause a path selection menu to be * displayed, or false if not. If this API returns true, the * application should call the WindowPathSelect API. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function IsWindowPathSelectClick( window: WindowRef; const (*var*) event: EventRecord ): Boolean; external name '_IsWindowPathSelectClick'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowPathSelectEvent() * * Summary: * Indicates whether a Carbon event describing a click on a windowÕs * title should cause a path selection menu to be displayed. * * Discussion: * Windows that have a proxy icon provided using an FSSpec or alias * can support a path selection menu, which displays the file system * path to the object, one menu item per directory. Making a * selection from this item will automatically open the * corresponding object in the Finder. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window on which the click occurred. * * inEvent: * The event. In CarbonLib and in Mac OS X 10.2 and earlier, * IsWindowPathSelectEvent only returned true for * kEventClassMouse/ kEventMouseDown events. In Mac OS X 10.3 and * later, IsWindowPathSelectEvent returns true for any event that * has suitable kEventParamMouseLocation and * kEventParamKeyModifiers parameters. * * Result: * true if the click should cause a path selection menu to be * displayed, or false if not. If this API returns true, the * application should call the WindowPathSelect API. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function IsWindowPathSelectEvent( window: WindowRef; inEvent: EventRef ): Boolean; external name '_IsWindowPathSelectEvent'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * WindowPathSelect() * * Summary: * Displays a path selection menu for a window that has a proxy icon. * * Discussion: * If the application passes NULL for the menu parameter, and the * user selects an item from the path selection menu, the Window * Manager will automatically request the Finder to display that * item, and in CarbonLib 1.3.1 and later and Mac OS X, will also * make the Finder be the active application. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window for which to display the path selection menu. * * menu: * The menu to display. If you pass NULL, the Window Manager * automatically creates a suitable menu based on the windowÕs * proxy icon. * * outMenuResult: * On exit, the menu ID and menu item index of the selected item; * the menu ID is in the high 16 bits of the result, and the menu * item index is in the low 16 bits. * * Result: * noErr if the user selected an item from the menu; userCanceledErr * if the user closed the menu without making a selection. Other * operating system result codes may be returned. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function WindowPathSelect( window: WindowRef; menu: MenuRef { can be NULL }; var outMenuResult: SInt32 ): OSStatus; external name '_WindowPathSelect'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ HiliteWindowFrameForDrag } { If you call ShowDragHilite and HideDragHilite, you donÕt need to use this routine. } { If you implement custom drag hiliting, you should call HiliteWindowFrameForDrag } { when the drag is tracking inside a window with drag-hilited content. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.5 forward} { * HiliteWindowFrameForDrag() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function HiliteWindowFrameForDrag( window: WindowRef; hilited: Boolean ): OSStatus; external name '_HiliteWindowFrameForDrag'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Transitions } { TransitionWindow displays a window with accompanying animation and sound. } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * WindowTransitionEffect * * Summary: * Visual effects that are provided by TransitionWindow } type WindowTransitionEffect = UInt32; const { * Finder-like zoom rectangles. Use with TransitionWindow and Show or * Hide transition actions } kWindowZoomTransitionEffect = 1; { * Zoom in/out from parent. Use with TransitionWindowAndParent and * Show or Hide transition actions. Available in Mac OS X, and in * CarbonLib 1.5 and later. } kWindowSheetTransitionEffect = 2; { * Slide the window into its new position. Use with TransitionWindow * and Move or Resize transition actions. Available in Mac OS X, and * in CarbonLib 1.5 and later. } kWindowSlideTransitionEffect = 3; { * Fade the window into or out of visibility. Use with the Show or * Hide transition actions. Available in Mac OS X 10.3 and later. } kWindowFadeTransitionEffect = 4; { * Use the Genie effect that the Dock uses to minimize or maximize a * window to show or hide the window. Use with the Show or Hide * transition actions. Available in Mac OS X 10.3 and later. } kWindowGenieTransitionEffect = 5; { * WindowTransitionAction * * Summary: * Modifications to window state that are provided by * TransitionWindow } type WindowTransitionAction = UInt32; const { * Shows the window. Use with the Zoom, Sheet, Fade, or Genie * transition effects. For the Zoom, Sheet, and Genie effects, the * inRect parameter is the global coordinates from which to start the * animation; inRect may be NULL for the Zoom and Sheet effects, and * in that case, the animation begins at the center of the window. * The Genie effect requires a non-NULL inRect parameter. The Fade * effect does not use the inRect parameter. } kWindowShowTransitionAction = 1; { * Hides the window. Use with the Zoom, Sheet, Fade, or Genie * transition effects. For the Zoom, Sheet, and Genie effects, the * inRect parameter is the global coordinates at which to end the * animation; inRect may be NULL for the Zoom and Sheet effects, and * in that case, the animation ends at the center of the window. The * Genie effect requires a non-NULL inRect parameter. The Fade effect * does not use the inRect parameter. } kWindowHideTransitionAction = 2; { * Moves the window. Use with the Slide transition effect. The inRect * parameter is the global coordinates of the window's new structure * bounds; inRect must be non-NULL. Available in Mac OS X, and in * CarbonLib 1.5 and later. } kWindowMoveTransitionAction = 3; { * Resizes the window. Use with the Slide transition effect. The * inRect parameter is the global coordinates of the window's new * structure bounds; inRect must be non-NULL. Available in Mac OS X, * and in CarbonLib 1.5 and later. } kWindowResizeTransitionAction = 4; { * TransitionWindow() * * Summary: * Shows, hides, moves, or resizes a window with appropriate * animation and sound. * * Discussion: * In Mac OS X 10.3 and later, this API sends * kEventWindowTransitionStarted and kEventWindowTransitionCompleted * Carbon events to the transitioning window at the start and end of * the transition. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window on which to act. * * inEffect: * The type of visual effect to use. TransitionWindow supports the * Zoom and Slide transition effects. The Slide effect is * supported on Mac OS X and in CarbonLib 1.5 and later. * * inAction: * The action to take on the window. TransitionWindow supports the * Show, Hide, Move, and Resize actions. The Move and Resize * actions are supported on Mac OS X and in CarbonLib 1.5 and * later. * * inRect: * A screen rect in global coordinates. The interpretation of the * rect is dependent on the transition action; see the * documentation for each action for details. May be NULL for some * transition actions. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function TransitionWindow( inWindow: WindowRef; inEffect: WindowTransitionEffect; inAction: WindowTransitionAction; {const} inRect: RectPtr { can be NULL } ): OSStatus; external name '_TransitionWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * TransitionWindowAndParent() * * Summary: * Shows or hides a window, potentially also moving a second window, * with appropriate animation and sound. * * Discussion: * In Mac OS X 10.3 and later, this API sends * kEventWindowTransitionStarted and kEventWindowTransitionCompleted * Carbon events to the transitioning window at the start and end of * the transition. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window on which to act. * * inParentWindow: * The window to which the primary window is related. * * inEffect: * The type of visual effect to use. TransitionWindowAndParent * supports the Sheet transition effect. * * inAction: * The action to take on the window. TransitionWindowAndParent * supports the Show and Hide actions. * * inRect: * A screen rect in global coordinates. The interpretation of the * rect is dependent on the transition action; see the * documentation for each action for details. May be NULL for some * transition actions. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.5 and later * Non-Carbon CFM: not available } function TransitionWindowAndParent( inWindow: WindowRef; inParentWindow: WindowRef; inEffect: WindowTransitionEffect; inAction: WindowTransitionAction; {const} inRect: RectPtr { can be NULL } ): OSStatus; external name '_TransitionWindowAndParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * TransitionWindowOptions * * Summary: * Extensible parameter block for the TransitionWindowWithOptions * API. } type TransitionWindowOptions = record { * The structure version. You must put 0 in this field. } version: UInt32; { * The duration of the fade, in seconds. For use with the Sheet, * Slide, Fade, and Genie transition effects; ignored for other * effects. You may pass 0 to use the default duration. The effect is * not guaranteed to last precisely this long, but should be a close * approximation. } duration: EventTime; { * For use with kWindowSheetTransitionEffect. This is the parent * window of the sheet. } window: WindowRef; { * This value will be sent as the kEventParamUserData parameter for * the kEventWindowTransitionStarted and * kEventWindowTransitionCompleted events. } userData: UnivPtr; end; TransitionWindowOptionsPtr = ^TransitionWindowOptions; { * TransitionWindowWithOptions() * * Summary: * Transitions a window from one state to another with appropriate * animation and sound. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window that should be transitioned. * * inEffect: * The type of visual effect to use. * * inAction: * The action to take on the window. * * inBounds: * A screen rect in global coordinates. The interpretation of the * rect is dependent on the transition action; see the * documentation for each action for details. May be NULL for some * transition actions. * * inAsync: * Whether the transition should run synchronously or * asynchronously. If inAsync is true, TransitionWindow will * return immediately, and the transition will run using an event * loop timer. You must run your event loop for the transition to * occur. If inAsync is false, TransitionWindow will block until * the transition is completed. In either case, the * kEventWindowTransitionStarted and * kEventWindowTransitionCompleted Carbon events will be sent to * the transitioning window at the start and end of the transition. * * inOptions: * Extra options that are required for some transitions. This * parameter may be NULL if the specific transition effect does * not require extra information. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function TransitionWindowWithOptions( inWindow: WindowRef; inEffect: WindowTransitionEffect; inAction: WindowTransitionAction; {const} inBounds: HIRectPtr { can be NULL }; inAsync: Boolean; inOptions: TransitionWindowOptionsPtr { can be NULL } ): OSStatus; external name '_TransitionWindowWithOptions'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Positioning } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * [Mac]MoveWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure MoveWindow( window: WindowRef; hGlobal: SInt16; vGlobal: SInt16; front: Boolean ); external name '_MoveWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) procedure MacMoveWindow( window: WindowRef; hGlobal: SInt16; vGlobal: SInt16; front: Boolean ); external name '_MoveWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SizeWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure SizeWindow( window: WindowRef; w: SInt16; h: SInt16; fUpdate: Boolean ); external name '_SizeWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Note: bBox can only be NULL when linking to CarbonLib 1.0 forward } { * GrowWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GrowWindow( window: WindowRef; startPt: Point; {const} bBox: RectPtr { can be NULL } ): SInt32; external name '_GrowWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DragWindow() * * Summary: * Allows the user to drag a window to a different position. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window to drag. * * startPt: * The point in global coordinates where the mouse was clicked on * the window. * * boundsRect: * A rect in global coordinates outside of which the window cannot * move. May be NULL in CarbonLib and Mac OS X, to indicate that * there are no restrictions on window movement. This parameter is * ignored by CarbonLib and Mac OS X 10.0 through 10.2; it is * obeyed in Mac OS X 10.3 and later. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure DragWindow( window: WindowRef; startPt: Point; {const} boundsRect: RectPtr { can be NULL } ); external name '_DragWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ZoomWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure ZoomWindow( window: WindowRef; partCode: WindowPartCode; front: Boolean ); external name '_ZoomWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Collapsing/Expanding } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.0 (Appearance 1.0) forward} { * IsWindowCollapsable() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function IsWindowCollapsable( window: WindowRef ): Boolean; external name '_IsWindowCollapsable'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowCollapsed() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function IsWindowCollapsed( window: WindowRef ): Boolean; external name '_IsWindowCollapsed'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CollapseWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function CollapseWindow( window: WindowRef; collapse: Boolean ): OSStatus; external name '_CollapseWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * CollapseAllWindows() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in AppearanceLib 1.0 and later } function CollapseAllWindows( collapse: Boolean ): OSStatus; external name '_CollapseAllWindows'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available on Mac OS X} { * CreateQDContextForCollapsedWindowDockTile() * * Discussion: * Creates and returns a CGrafPtr for a collapsed window's tile in * the dock. You can use this port to draw into your window's dock * tile with Quickdraw. You **MUST** call * ReleaseQDContextForCollapsedWindowDockTile and NOT DisposePort * when using this API, as it maintains more state than just the * port. If you call DisposePort, you may leak system resources. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to create the dock tile port for. If this window is * not collapsed, an error is returned. * * outContext: * The Quickdraw port for you to use to draw into. If you wish to * use CoreGraphics (Quartz) drawing, call CreateCGContextForPort * with this port to obtain a CGContext. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function CreateQDContextForCollapsedWindowDockTile( inWindow: WindowRef; var outContext: CGrafPtr ): OSStatus; external name '_CreateQDContextForCollapsedWindowDockTile'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ReleaseQDContextForCollapsedWindowDockTile() * * Discussion: * Releases a port and other state created by the * CreateQDContextForCollapsedWindowDockTile API. You MUST call this * instead of DisposePort directly, or you may leak system resources. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window you created the port for. If this window is not * collapsed, an error is returned. * * inContext: * The Quickdraw context to dispose. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function ReleaseQDContextForCollapsedWindowDockTile( inWindow: WindowRef; inContext: CGrafPtr ): OSStatus; external name '_ReleaseQDContextForCollapsedWindowDockTile'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * UpdateCollapsedWindowDockTile() * * Discussion: * Automatically updates the image of a particular window in the * dock to the current contents of the window. Use this for periodic * updates, etc. Do not use this for animation purposes, if you want * animation, use the above create/release drawing context APIs. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to update the dock tile for. If this window is not * collapsed, an error is returned. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function UpdateCollapsedWindowDockTile( inWindow: WindowRef ): OSStatus; external name '_UpdateCollapsedWindowDockTile'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowDockTileMenu() * * Summary: * Sets the menu that is displayed by a window's dock tile. * * Discussion: * When a window's dock tile menu is right-clicked or * control-clicked, the Dock will always automatically display a * menu containing a Close menu item that closes the window. If the * application wants to add other additional menu items, it can use * the SetWindowDockTileMenu API to provide those items. The items * in the specified menu will be combined with the standard items * provided by the Dock. * * Before the menu is actually displayed, it will receive * kEventMenuPopulate, kEventMenuOpening, and kEventMenuEnableItems * Carbon events, so any event handlers for these events may update * the menu appropriately for the current state of the * application. * * The application should set a command ID for each menu item in the * dock tile menu, and when that item is chosen, a * kEventCommandProcess Carbon event containing the item's command * ID will be sent to the window's event target (and from there to * the application, if the window does not handle the * event). * * This API increments the refcount of the specified menu. * * The toolbox provides a default handler for the * kEventWindowGetDockTileMenu event that returns the menu specified * by the SetWindowDockTileMenu API. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window for which to set the dock tile menu. * * inMenu: * The menu to display, or NULL to remove the current dock tile * menu. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetWindowDockTileMenu( inWindow: WindowRef; inMenu: MenuRef { can be NULL } ): OSStatus; external name '_SetWindowDockTileMenu'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetWindowDockTileMenu() * * Summary: * Returns the menu that is displayed by a window's dock tile. * * Mac OS X threading: * Not thread safe * * Result: * The application's dock tile menu, or NULL if none. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetWindowDockTileMenu( inWindow: WindowRef ): MenuRef; external name '_GetWindowDockTileMenu'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * GetWindowBounds() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowBounds( window: WindowRef; regionCode: WindowRegionCode; var globalBounds: Rect ): OSStatus; external name '_GetWindowBounds'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowResizeLimits() * * Summary: * Sets the minimum and maximum content sizes for a window. * * Discussion: * The minimum and maximum sizes are obeyed by ResizeWindow and * GrowWindow. The default Carbon event handler installed for all * windows will return these sizes in response to * kEventWindowGetMinimumSize and kEventWindowGetMaximumSize events. * When a window is first created, its minimum and maximum sizes are * set to reasonable values (which may change from one system * release to the next). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose minimum and maximum sizes to set. * * inMinLimits: * The new minimum size for the content region of the window. Pass * NULL if you don't want to set a minimum size. * * inMaxLimits: * The new maximum size for the content region of the window. Pass * NULL if you don't want to set a maximum size. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetWindowResizeLimits( inWindow: WindowRef; {const} inMinLimits: HISizePtr { can be NULL }; {const} inMaxLimits: HISizePtr { can be NULL } ): OSStatus; external name '_SetWindowResizeLimits'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetWindowResizeLimits() * * Summary: * Returns the minimum and maximum content sizes for a window. * * Discussion: * GetWindowResizeLimits returns the minimum and maximum sizes that * were set by SetWindowResizeLimits. Note that it does not send * kEventWindowGetMinimumSize or kEventWindowGetMaximumSize Carbon * events to get these sizes; it simply retrieves the sizes from the * WindowRef. It is entirely possible (and quite likely) that a * given window will have event handlers for the * kEventWindowGetMinimum/MaximumSize events that will modify or * override the sizes in the WindowRef; therefore, to accurately * determine the desired minimum and maximum sizes, you should send * kEventWindowGetMinimum/MaximumSize Carbon events rather than * using this API. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose minimum and maximum sizes to retrieve. * * outMinLimits: * On exit, contains the minimum size of the window's content * region. Pass NULL if you don't want this information. * * outMaxLimits: * On exit, contains the maximum size of the window's content * region. Pass NULL if you don't want this information. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetWindowResizeLimits( inWindow: WindowRef; outMinLimits: HISizePtr { can be NULL }; outMaxLimits: HISizePtr { can be NULL } ): OSStatus; external name '_GetWindowResizeLimits'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * ResizeWindow() * * Summary: * Handles all user interaction while a window is being resized. * * Discussion: * The ResizeWindow function moves either an outline of the window's * edges (on Mac OS 9.x and earlier) or the actual window (on Mac OS * X) around the screen, following the userÕs cursor movements, and * handles all user interaction until the mouse button is released. * Unlike the GrowWindow API, there is no need to follow this call * with a call to the function SizeWindow, because once the mouse * button is released, ResizeWindow resizes the window if the user * has changed the window size. Once the resizing is complete, * ResizeWindow draws the window in the new size. Your application * should call the ResizeWindow function instead of the earlier * Window Manager APIs SizeWindow and GrowWindow. Some windows may * allow themselves to be resized from any corner or edge, not just * the bottom right, and as a result, when the user resizes the * window, the window may move on the screen and not merely change * size. ResizeWindow informs your application of the new window * bounds, so that your application can respond to any changes in * the windowÕs position. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to be resized. * * inStartPoint: * The point, in global coordinates, at which the original * mouse-down occurred. * * inSizeConstraints: * The limits on the vertical and horizontal measurements of the * content rectangle, in pixels. Although this parameter is typed * as a Rect, the four numbers in the structure represent limits, * not screen coordinates. The top, left, bottom, and right fields * of the structure specify the minimum vertical measurement * (top), the minimum horizontal measurement (left), the maximum * vertical measurement (bottom), and the maximum horizontal * measurement (right). The minimum dimensions should be large * enough to allow a manageable rectangle; 64 pixels on a side is * typical. The maximum dimensions can be no greater than 32,767. * You can pass NULL to allow the user to resize the window to any * size that is contained onscreen. * * outNewContentRect: * On exit, the structure contains the new dimensions of the * windowÕs content region, in global coordinates. On Mac OS 9.x * and earlier, you must pass a non-NULL value in this parameter; * in Carbon, you may pass NULL if you do not need the windowÕs * new dimensions. * * Result: * Returns true if the window changed size, or false if not. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function ResizeWindow( inWindow: WindowRef; inStartPoint: Point; {const} inSizeConstraints: RectPtr { can be NULL }; outNewContentRect: RectPtr { can be NULL } ): Boolean; external name '_ResizeWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.5 forward, or from Mac OS 8.1 forward when linking to CarbonLib 1.0.2 forward } { * SetWindowBounds() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowBounds( window: WindowRef; regionCode: WindowRegionCode; const (*var*) globalBounds: Rect ): OSStatus; external name '_SetWindowBounds'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RepositionWindow() * * Summary: * Positions a window according in one of the standard window * locations. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window to position. * * parentWindow: * For some positioning methods, the new location for the * positioned window will be calculated based on the parent * windowÕs position. On Mac OS X 10.3 and later, some positioning * methods allow this parameter to be the same as the window * parameter; CarbonLib and earlier versions of Mac OS X require * that it be different from the window parameter. See the * WindowPositionMethod documentation for details on which methods * allow the parent to be the same as the positioned window. * * method: * The window positioning method. This should be one of the * WindowPositionMethod constants. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function RepositionWindow( window: WindowRef; parentWindow: WindowRef; method: WindowPositionMethod ): OSStatus; external name '_RepositionWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * MoveWindowStructure() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function MoveWindowStructure( window: WindowRef; hGlobal: SInt16; vGlobal: SInt16 ): OSStatus; external name '_MoveWindowStructure'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.5 forward, or from Mac OS 8.6 forward when linking to CarbonLib 1.1 forward } { Routines available from Mac OS 8.5 forward} { * IsWindowInStandardState() * * Summary: * Determines whether a window is currently zoomed in to the user * state or zoomed out to the standard state. * * Discussion: * IsWindowInStandardState compares the windowÕs current dimensions * to those given by the inIdealSize parameter to determine if the * window is currently in its standard (zoomed-out) state. Your * application may use IsWindowInStandardState to decide whether a * userÕs click of the zoom box is a request to zoom in to the user * state or out to the standard state. Your application may also use * IsWindowInStandardState to determine the size and position of the * standard state that the Window Manager would calculate for a * window, given a specified ideal size; this value is returned in * the outIdealStandardState parameter. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window for which to determine the zoom state. * * inIdealSize: * The ideal width and height of the windowÕs content region, * regardless of the actual screen device dimensions. If you set * idealSize to NULL, IsWindowInStandardState examines the * dimensions stored in the stdState field of the WStateData * structure attached to the window. * * outIdealStandardState: * On exit, contains the global coordinates for the content region * of the window in its standard state, based on the data supplied * in the inIdealSize parameter. You may pass NULL if you do not * need this information. * * Result: * Returns true if the window is currently in its standard * (zoomed-out) state, or false if the window is a non-zoomed-out * state. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function IsWindowInStandardState( inWindow: WindowRef; {const} inIdealSize: PointPtr { can be NULL }; outIdealStandardState: RectPtr { can be NULL } ): Boolean; external name '_IsWindowInStandardState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ZoomWindowIdeal() * * Summary: * Zooms a window in accordance with human interface guidelines. * * Discussion: * Applications should use the ZoomWindowIdeal API instead of the * older ZoomWindow API. When your application calls * ZoomWindowIdeal, it automatically conforms to the human interface * guidelines for determining a windowÕs standard state: the window * is moved as little as possible when switching between user and * standard states, the window is zoomed to the screen that contains * the largest portion of the window, and the window is positioned * in its zoomed-out size to avoid the Dock on Mac OS X. * * The ZoomWindowIdeal API calculates a windowÕs ideal standard * state and updates a windowÕs ideal user state independently of * the WStateData structure. Previously, the window definition * function was responsible for updating the user state, but because * it relies upon the WStateData structure, the window definition * function is unaware of the ideal standard state and can no longer * track the windowÕs zoom state reliably. The Window Manager * provides the GetWindowIdealUserState and SetWindowIdealUserState * APIs to access a window's current ideal user state, previously * recorded by ZoomWindowIdeal. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to be zoomed. * * inPartCode: * The direction of the zoom, either inZoomIn or inZoomOut. The * value passed in this parameter should generally be determined * by calling IsWindowInStandardState; if IsWindowInStandardState * returns true, pass inZoomIn, otherwise pass inZoomOut. * * ioIdealSize: * When you specify inZoomIn in the inPartCode parameter, this * parameter is unused on entry; you pass a pointer to a Point * structure, but do not fill the structure with data. On exit, * the Point contains the new height and width of the windowÕs * content region, and ZoomWindowIdeal restores the previous ideal * user state. When you specify inZoomOut in the inPartCode * parameter, you pass the ideal height and width of the windowÕs * content region in the Point structure. On return, the Point * contains the new height and width of the windowÕs content * region; ZoomWindowIdeal saves the current user state of the * window and zooms the window to its ideal size for the standard * state. * * Prior to Mac OS X Mac OS X 10.4, the ZoomWindowIdeal API * malfunctioned if passed an idealSize that was large enough to * cause 16-bit integer overflow when added to the window's * current position. Therefore, when specifying the ideal size * parameter, you should generally not use values that are close * to 32767. It is better to limit your ideal size to, say, 16K. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function ZoomWindowIdeal( inWindow: WindowRef; inPartCode: WindowPartCode; var ioIdealSize: Point ): OSStatus; external name '_ZoomWindowIdeal'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowIdealUserState() * * Summary: * Returns the bounds of a windowÕs content region in its user * (zoomed-in) state. * * Discussion: * Traditionally, the user (zoomed-in) state of a window has been * stored in the WStateData structure attached to a window. This * field is updated by the window definition when the user clicks on * the zoom box and the window definition determines that the window * is currently not zoomed out. When determining whether the window * is zoomed out, however, the window definition can only look at * the standard state stored in the WStateData field. With the * introduction of the ZoomWindowIdeal API, there is a new basis for * determining whether a window is zoomed out: the windowÕs ideal * size. The window definition does not have access to the windowÕs * ideal size, and therefore cannot accurately determine whether a * window that is zoomed with ZoomWindowIdeal is in its user state * or standard state; therefore, the user state that the window * definition stores in the WStateData is also unreliable. The * ZoomWindowIdeal API therefore stores the windowÕs user state * before zooming out in a new location, which is accessed using the * GetWindowIdealUserState API. The GetWindowIdealUserState API * returns the windowÕs user state most recently recorded by * ZoomWindowIdeal. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose ideal user state you wish to retrieve. * * outUserState: * On exit, contains the global coordinates of the windowÕs * content region when zoomed in. On Mac OS X 10.1 and earlier, * and CarbonLib 1.5 and earlier, the windowÕs ideal user state is * an empty rect with coordinates (0,0,0,0) if the window has * never been zoomed out; you should check for an empty rect and * use GetWindowBounds with the kWindowContentRgn selector to * determine the windowÕs current content region. On later * versions of Mac OS X and CarbonLib, GetWindowIdealUserState * automatically returns the windowÕs current content bounds if * the window has not yet been zoomed. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowIdealUserState( inWindow: WindowRef; var outUserState: Rect ): OSStatus; external name '_GetWindowIdealUserState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowIdealUserState() * * Summary: * Sets the bounds of a windowÕs content region in its user * (zoomed-in) state. * * Discussion: * The windowÕs ideal user state is used by the ZoomWindowIdeal API * when zooming in. The ideal user state is ignored by the * ZoomWindow API. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose ideal user state to set. * * inUserState: * The global coordinates of the windowÕs content region in its * ideal user state. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowIdealUserState( inWindow: WindowRef; const (*var*) inUserState: Rect ): OSStatus; external name '_SetWindowIdealUserState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available in CarbonLib 1.1 and later} { * GetWindowGreatestAreaDevice() * * Summary: * Returns the graphics device with the greatest area of * intersection with a specified window region. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to compare against. * * inRegion: * The window region to compare against. * * outGreatestDevice: * On exit, the graphics device with the greatest intersection. * May be NULL. * * outGreatestDeviceRect: * On exit, the bounds of the graphics device with the greatest * intersection. May be NULL. If the device with the greatest * intersection also contains the menu bar, the device rect will * exclude the menu bar area. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function GetWindowGreatestAreaDevice( inWindow: WindowRef; inRegion: WindowRegionCode; outGreatestDevice: GDHandlePtr { can be NULL }; outGreatestDeviceRect: RectPtr { can be NULL } ): OSStatus; external name '_GetWindowGreatestAreaDevice'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * WindowConstrainOptions * } type WindowConstrainOptions = UInt32; const { * The window may be resized if necessary to make it fit onscreen. } kWindowConstrainMayResize = 1 shl 0; { * The window will be moved even if it doesn't fit entirely onscreen. } kWindowConstrainMoveRegardlessOfFit = 1 shl 1; { * Allow partial intersection of the specified window region with the * screen, instead of requiring total intersection. } kWindowConstrainAllowPartial = 1 shl 2; { * Only calculate the new window bounds; don't actually move the * window. } kWindowConstrainCalcOnly = 1 shl 3; { * Use TransitionWindow with kWindowSlideTransitionEffect to move * windows onscreen. Available in Mac OS X 10.2. } kWindowConstrainUseTransitionWindow = 1 shl 4; { * The most common options: don't resize the window, move the window * regardless of fit to the screen, require total intersection of the * specified window region with the screen, and do actually move the * window. } kWindowConstrainStandardOptions = kWindowConstrainMoveRegardlessOfFit; { * ConstrainWindowToScreen() * * Summary: * Moves and resizes a window so that it's contained entirely on a * single screen. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindowRef: * The window to constrain. * * inRegionCode: * The window region to constrain. * * inOptions: * Flags controlling how the window is constrained. * * inScreenRect: * A rectangle, in global coordinates, in which to constrain the * window. May be NULL. If NULL, the window is constrained to the * screen with the greatest intersection with the specified window * region. * * outStructure: * On exit, contains the new structure bounds of the window, in * global coordinates. May be NULL. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function ConstrainWindowToScreen( inWindowRef: WindowRef; inRegionCode: WindowRegionCode; inOptions: WindowConstrainOptions; {const} inScreenRect: RectPtr { can be NULL }; outStructure: RectPtr { can be NULL } ): OSStatus; external name '_ConstrainWindowToScreen'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetAvailableWindowPositioningBounds() * * Summary: * Returns the available window positioning bounds on the given * screen (i.e., the screen rect minus the MenuBar and Dock if * located on that screen). * * Mac OS X threading: * Not thread safe * * Parameters: * * inDevice: * The device for which to find the available bounds. * * outAvailableRect: * On exit, contains the available bounds for the given device. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.3 and later * Non-Carbon CFM: not available } function GetAvailableWindowPositioningBounds( inDevice: GDHandle; var outAvailableRect: Rect ): OSStatus; external name '_GetAvailableWindowPositioningBounds'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetAvailableWindowPositioningRegion() * * Summary: * Returns the available window positioning region on the given * screen (i.e., the screen rect minus the MenuBar and Dock if * located on that screen). * * Discussion: * GetAvailableWindowPositionRegion differs from * GetAvailableWindowPositioningBounds in that the Bounds API * removes the entire area that may theoretically be covered by the * Dock, even if the the Dock does not currently reach from edge to * edge of the device on which it is positioned. The Region API * includes the area at the sides of the Dock that is not covered by * the Dock in the available region. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDevice: * The device for which to find the available bounds. * * ioRgn: * On entry, contains a preallocated RgnHandle. On exit, the * RgnHandle has been modified to contain the available region for * the given device. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetAvailableWindowPositioningRegion( inDevice: GDHandle; ioRgn: RgnHandle ): OSStatus; external name '_GetAvailableWindowPositioningRegion'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Visibility } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * HideWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure HideWindow( window: WindowRef ); external name '_HideWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * [Mac]ShowWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure ShowWindow( window: WindowRef ); external name '_ShowWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) function MacShowWindow__NAME__ShowWindow( possibleWindow: WindowRef ): Boolean; external name '_MacShowWindow__NAME__ShowWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ShowHide() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } procedure ShowHide( window: WindowRef; showFlag: Boolean ); external name '_ShowHide'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * [Mac]IsWindowVisible() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function IsWindowVisible( window: WindowRef ): Boolean; external name '_IsWindowVisible'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) function MacIsWindowVisible__NAME__IsWindowVisible( window: WindowRef ): Boolean; external name '_MacIsWindowVisible__NAME__IsWindowVisible'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ ¥ÊLatent window visibility ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ } { * WindowLatentVisibility * * Summary: * Reasons why a window is currently invisible when ordinarily it * would be visible. } type WindowLatentVisibility = UInt32; WindowLatentVisibilityPtr = ^WindowLatentVisibility; const { * Window is a floater and floating windows are hidden } kWindowLatentVisibleFloater = 1 shl 0; { * Window has HideOnSuspend and we are suspended } kWindowLatentVisibleSuspend = 1 shl 1; { * Window has HideOnFullScreen and we are full-screen } kWindowLatentVisibleFullScreen = 1 shl 2; { * Window's process is hidden } kWindowLatentVisibleAppHidden = 1 shl 3; { * Window is in an owned group and the owner was collapsed } kWindowLatentVisibleCollapsedOwner = 1 shl 4; { * Window is in a HideOnCollapse group and another window in the * group was collapsed } kWindowLatentVisibleCollapsedGroup = 1 shl 5; { * IsWindowLatentVisible() * * Summary: * Indicates whether a window is visible onscreen and also whether * it is latently visible but not currently onscreen. * * Discussion: * All windows are either onscreen or offscreen. A window that is * offscreen may still be latently visible; this occurs, for * example, when a floating window is hidden as an application is * suspended. The floating window is not visible onscreen, but it is * latently visible and is only hidden due to the suspended state of * the application; when the application becomes active again, the * floating window will be placed back onscreen. * IsWindowLatentVisible may be used to determine both the window's * onscreen/offscreen status and its latent visibility (if the * window is offscreen). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose visibility to return. * * outLatentVisible: * If the window is onscreen, the latent visibility is zero. If * the window is offscreen, this parameter is used to return the * latent visibility flags of the window. If any of the flags are * set, then the window is latently visible. * * Result: * Indicates whether the window is currently onscreen. * * Availability: * Mac OS X: in version 10.1 and later in Carbon.framework * CarbonLib: in CarbonLib 1.5 and later * Non-Carbon CFM: not available } function IsWindowLatentVisible( inWindow: WindowRef; outLatentVisible: WindowLatentVisibilityPtr { can be NULL } ): Boolean; external name '_IsWindowLatentVisible'; (* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *) { ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ ¥ÊWindow Availability for ExposŽ ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ } { * Summary: * Window availability options for ExposŽ. * * Discussion: * These options are used with the HIWindowGet/ChangeAvailability * APIs to override the default behavior of the Window Manager in * determining whether a window is visible during ExposŽ. Most * applications should not override the default behavior; these * options should only be used in special cases. By default, newly * created windows of class kDocumentWindowClass are given an * availability of zero (meaning that they are available during * ExposŽ), and windows from all other window classes are given an * availability of kHIWindowExposeHidden. } const { * This window is hidden during ExposŽÕs ÒAll windowsÓ and * ÒApplication windowsÓ modes. If this bit is not set, the window is * visible during these modes. } kHIWindowExposeHidden = 1 shl 0; type HIWindowAvailability = OptionBits; { * HIWindowGetAvailability() * * Summary: * Returns the availability of a window during ExposŽ. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose availability to return. * * outAvailability: * On exit, contains the window availability. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowGetAvailability( inWindow: HIWindowRef; var outAvailability: HIWindowAvailability ): OSStatus; external name '_HIWindowGetAvailability'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) { * HIWindowChangeAvailability() * * Summary: * Alters the availability of a window during ExposŽ. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose availability to change. * * inSetAvailability: * The availability bits to set. * * inClearAvailability: * The availability bits to clear. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowChangeAvailability( inWindow: HIWindowRef; inSetAvailability: HIWindowAvailability; inClearAvailability: HIWindowAvailability ): OSStatus; external name '_HIWindowChangeAvailability'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Sheets Sheets are a new user interface object in Mac OS X. A sheet is a modal alert or dialog, but unlike a traditional alert or dialog window (which is visually separate from the frontmost document window), a sheet appears to be attached to its parent window; it moves and z-orders simultaneously with its parent. Furthermore, sheets on Mac OS X use a new type of modality called window modality. A traditional alert or dialog is app-modal; it prevents user interaction with all other windows in the current application. A sheet is window-modal; it only prevents user interaction with its parent window, and events continue to flow to other windows in the application. ¥ Sheet Event Handling Implementing a sheet window in your application generally requires some modifications to your event-handling code. A traditional app-modal window is implemented using a modal event loop; your application starts a new event loop (either by processing events itself, or by calling ModalDialog), which does not return back to your application's main event loop until the app-modal window has closed. Starting a new event loop doesn't work with sheets, because typically the modal event loop will only handle events destined for the sheet, and not events for other windows, but a sheet only blocks events for its parent window, and your application must still handle events for the rest of its windows as normal. Therefore, you will usually not use a modal event loop to handle events in a sheet. Rather, you will show the sheet window, and then return directly back to your main event loop. The Carbon Event Manager automatically prevents events from reaching the sheet's parent window; events in your application's other windows are still returned to you via WaitNextEvent or your application's Carbon event handlers, where you can process them as normal. You have several choices for handling events in the sheet itself. A sheet is, at the most basic level, simply another window in your application, and you can use any of the standard event-handling APIs to receive events in the sheet. For example, you can: - receive events in the sheet via WaitNextEvent, and handle them directly in your main event loop - create the sheet using Dialog Manager APIs, and use IsDialogEvent and DialogSelect to handle events in the sheet - install Carbon event handlers on the sheet, and respond to events in your handlers Which approach you choose is up to you. ¥ Sheets in CarbonLib The sheet window class, sheet WDEF procIDs, and ShowSheetWindow, HideSheetWindow, and GetSheetWindowParent APIs are implemented in CarbonLib starting with version 1.3. However, since Mac OS 8 and 9 do not traditionally support a window-modal user interface, sheet windows are displayed as app-modal windows by CarbonLib. From your application's perspective, event handling for a sheet in CarbonLib is the same as event handling for a sheet on X; ShowSheetWindow still returns immediately, and your application should still return back to its main event loop and be prepared to handle events in other windows. On CarbonLib, your application will simply never receive any user input in any of your other windows; since the sheet has application modality, the Carbon Event Manager will discard events in any windows other than the sheet. ¥ÊCreating a Sheet A sheet is just a normal window with a special window class: kSheetWindowClass or kSheetAlertWindowClass. As such, it can be created in any of the ways you might create a window: NewWindow, NewCWindow, CreateNewWindow, GetNewWindow, GetNewCWindow, CreateWindowFromCollection, CreateWindowFromResource, CreateWindowFromNib, NewDialog, NewColorDialog, NewFeaturesDialog, or GetNewDialog. The Window Manager defines two window classes and two WDEF procIDs for sheets: - kSheetWindowClass and kSheetAlertWindowClass - kWindowSheetProc and kWindowSheetAlertProc The window classes may be used with CreateNewWindow, CreateWindowFromCollection, and CreateWindowFromResource; the WDEF procIDs may be used with NewWindow, NewCWindow, NewDialog, NewColorDialog, NewFeaturesDialog, and in 'WDEF' and 'DLOG' resources. Mac OS X 10.0 only supports kSheetWindowClass and kWindowSheetProc; it does not support kSheetAlertWindowClass or kWindowSheetAlertProc. The latter window class and procID were added in CarbonLib 1.3 and Mac OS X 10.1. A new window class and procID were necessary for CarbonLib support because sheets can be used for both alerts ("Do you want to save changes before closing this window?") and dialogs (a Navigation Services PutFile dialog). On Mac OS X, sheet windows have the same appearance when used for either an alert or a dialog, but on Mac OS 8 and 9, alert windows have a different appearance from dialog windows. Two separate window classes are necessary for CarbonLib to know whether to display a sheet using a movable alert or a movable dialog window. Therefore, it is recommended that you use kSheetAlertWindowClass when creating a sheet window that will be used to display an alert, although this is not required. ¥ Displaying a Sheet A sheet is made visible by calling the ShowSheetWindow API. This API shows the sheet, using whatever visual effects are appropriate for the platform, and then returns immediately. On Mac OS X, it creates a window group and places the sheet and its parent window into the group; it also marks the sheet as window-modal. On CarbonLib, it marks the sheet as app-modal but does not create a window group. On Mac OS X, before the sheet window is actually made visible, ShowSheetWindow sends a kEventWindowDrawContent event to the sheet window, asking it to draw its content into the window's offscreen buffer. The sheet must handle this event, or its content area will be blank after the sheet becomes visible. In some cases, this handler is automatically provided for you: - If you create your sheet window using the Dialog Manager, the Dialog Manager automatically installs a handler for this event that calls DrawDialog, so you don't need to install the handler yourself. - If you install the standard Carbon window event handler on your sheet window (using kWindowStandardHandlerAttribute or InstallStandardEventHandler), the standard handler automatically handles this event and calls DrawControls. Typically, your event handling code (whether it uses WaitNextEvent, the Dialog Manager, or Carbon event handlers) will receive and respond to events in the sheet until the user does something that should cause the sheet to close. This might be clicking in an OK or Cancel button, for example. At that time, your event handling code must call either HideSheetWindow or DetachSheetWindow. The sheet window will hide, but will not be destroyed, so you can use it again later if you want. ¥ÊClosing a sheet A sheet is normally hidden by calling the HideSheetWindow API. HideSheetWindow provides the visual effects of zooming the sheet back into the parent window's title bar and moving the parent window back to its original position. In Mac OS X 10.3 and later, the DetachSheetWindow API is also available. DetachSheetWindow ungroups the sheet from its parent, releases the retain count acquired by ShowSheetWindow on the parent window, and removes all event handlers installed by ShowSheetWindow, but does not hide the sheet window; an application would typically call DetachSheetWindow and then HideWindow to hide the sheet window without the sheet closing animation. This may be useful if, for example, the sheet were being used to ask if changes to a modified document should be saved; if the user chooses "DonÕt Save", then the application could use DetachSheetWindow and then hide both the sheet and the document immediately, so that the document closes as quickly as possible without taking time for the closing animation. The Navigation Services Save Changes dialog does this automatically. You _must_ call either HideSheetWindow or DetachSheetWindow before destroying a sheet that has been shown with ShowSheetWindow. You may not simply dispose of a sheet window without first using Hide or DetachSheetWindow; doing so will leave an extra refcount on the parent window, and will leave the parent window still embedded in the sheet window group. ¥ Sheet Transparency Sheets should be transparent so that the user can see some of the document content behind the sheet and remember the context in which the sheet was displayed. In Mac OS X 10.1, a sheet is made transparent by using the kThemeBrushSheetBackgroundTransparent constant for the sheet windowÕs theme background brush. In Mac OS X 10.2 and later, sheets are only transparent if this brush is used and if the sheet window uses compositing mode (enabled by setting the kWindowCompositingAttribute window attribute when the sheet window is created). } { * ShowSheetWindow() * * Summary: * Shows a sheet window using appropriate visual effects. * * Discussion: * ShowSheetWindow is implemented in both CarbonLib 1.3 and Mac OS * X. Since Mac OS 9 does not use a window-modal user interface for * alerts and dialogs, ShowSheetWindow in CarbonLib does not bind * the sheet to the parent window in the same way that it does on * Mac OS X; instead, it shows the sheet like a standard * movable-modal dialog window. Sheet windows must use the window * classes kSheetWindowClass or kSheetAlertWindowClass to get the * right appearance on both platforms. * * Note that ShowSheetWindow will increment the retain count of the * parent window. The retain count is decremented by HideSheetWindow * and DetachSheetWindow. You must call one of those APIs before * destroying the sheet window. * * On Mac OS X, ShowSheetWindow sets the modality of the sheet * window to kWindowModalityWindowModal. * * Mac OS X threading: * Not thread safe * * Parameters: * * inSheet: * The sheet window to show. * * inParentWindow: * The sheet's parent window. * * Result: * An operating system result code. ShowSheetWindow checks for the * following error conditions, and returns paramErr if any occur: * the sheet window must have a window class of kSheetWindowClass or * kSheetAlertWindowClass; the sheet and parent windows must not be * the same window; the sheet must not have a parent window already; * and the parent window must not already be the target of a sheet. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.3 and later * Non-Carbon CFM: not available } function ShowSheetWindow( inSheet: WindowRef; inParentWindow: WindowRef ): OSStatus; external name '_ShowSheetWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * HideSheetWindow() * * Summary: * Hides a sheet window using appropriate visual effects. * * Mac OS X threading: * Not thread safe * * Parameters: * * inSheet: * The sheet window to hide. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.3 and later * Non-Carbon CFM: not available } function HideSheetWindow( inSheet: WindowRef ): OSStatus; external name '_HideSheetWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DetachSheetWindow() * * Summary: * Detaches a sheet window from its parent window without affecting * the visibility or position of the sheet or its parent. * * Discussion: * This API may be useful if you want to hide a sheet window without * an animation effect. To do that, use DetachSheetWindow to detach * the sheet from the parent, and then use HideWindow to hide the * sheet, or DisposeWindow to destroy the sheet. * * Mac OS X threading: * Not thread safe * * Parameters: * * inSheet: * The sheet to detach. * * Availability: * Mac OS X: in version 10.3 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.3 and later * Non-Carbon CFM: not available } function DetachSheetWindow( inSheet: WindowRef ): OSStatus; external name '_DetachSheetWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *) { * GetSheetWindowParent() * * Summary: * Returns the parent window of a sheet. * * Mac OS X threading: * Not thread safe * * Parameters: * * inSheet: * The sheet window whose parent to retrieve. * * outParentWindow: * On exit, contains the parent window of the sheet. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.3 and later * Non-Carbon CFM: not available } function GetSheetWindowParent( inSheet: WindowRef; var outParentWindow: WindowRef ): OSStatus; external name '_GetSheetWindowParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Drawers Drawers are supported in Carbon by Mac OS X 10.2 and later. To create and use a drawer: - Create a window using kDrawerWindowClass. You must also use compositing mode with drawers; this mode is enabled by passing kWindowCompositingAttribute to CreateNewWindow. - Either install the standard window event handler on the drawer window, or use your own Carbon event or WaitNextEvent code to handle user interaction with the drawer. If you do not use the standard window event handler, you should call ResizeWindow in response to clicks on the grow region of the drawer if you want the drawer to be resizable. - Set the drawer's parent window with the SetDrawerParent function. The parent is the window on which the drawer will open. - Optionally, install a Carbon event handler on the drawer or the drawer's parent window for the kEventWindowDrawerOpening/Opened/Closing/Closed events, to be notified when the drawer has started or finished opening or closing. - Optionally, set the drawer's preferred edge on the parent window with the SetDrawerPreferredEdge function. If you do not set a preferred edge, the drawer opens on the parent's left side on a left-to-right system, or on the parent's right side on a right-to-left system. - Optionally, set the drawer's offsets with the SetDrawerOffsets function. The offsets control the amount of inset between the edge of the parent's content area and the edge of the drawer's structure. If you do not set any offsets, the drawer's edges are flush with the edges of the parent's content. - Optionally, set the drawer's minimum and maximum sizes with the SetWindowResizeLimits function. Or, install a Carbon event handler on the drawer to handle the kEventWindow- GetMinimumSize and kEventWindowGetMaximumSize events. The drawer's minimum and maximum sizes control how small or large it will resize together with the parent. If you do not set resize limits, the drawer will be capable of resizing to default small and large limits. - Call ToggleDrawer to open or close the drawer, or use OpenDrawer or CloseDrawer if you require more control over how the drawer opens or closes. } { * Summary: * Indicates the parent window edge on which a drawer will be shown. } const { * This constant is typically used with the OpenDrawer API; it * indicates that the drawer should be opened on whatever edge of the * parent window has previously been set as the drawer's preferred * edge. } kWindowEdgeDefault = 0; { * The drawer should open on the top edge of the parent window. } kWindowEdgeTop = 1 shl 0; { * The drawer should open on the left edge of the parent window. } kWindowEdgeLeft = 1 shl 1; { * The drawer should open on the bottom edge of the parent window. } kWindowEdgeBottom = 1 shl 2; { * The drawer should open on the right edge of the parent window. } kWindowEdgeRight = 1 shl 3; { * Summary: * Indicates the current state of a drawer window. } const { * The drawer is opening, but is not yet fully open. } kWindowDrawerOpening = 1; { * The drawer is fully open. } kWindowDrawerOpen = 2; { * The drawer is closing, but is not yet fully closed. } kWindowDrawerClosing = 3; { * The drawer is fully closed. } kWindowDrawerClosed = 4; type WindowDrawerState = UInt32; { * GetDrawerPreferredEdge() * * Summary: * Returns the preferred parent window edge of a drawer. * * Discussion: * Drawers start out with a preferred parent window edge of * kWindowEdgeDefault. On left-to-right systems, the default edge is * the left edge of the parent window; on right-to-left systems, the * default edge is the right edge. You can set the preferred edge * with SetDrawerPreferredEdge. If there's not enough room on the * preferred edge, the drawer will automatically switch to the * opposite edge. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose preferred edge to retrieve. * * Result: * The preferred edge of the drawer window. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetDrawerPreferredEdge( inDrawerWindow: WindowRef ): OptionBits; external name '_GetDrawerPreferredEdge'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * SetDrawerPreferredEdge() * * Summary: * Sets the preferred parent window edge of a drawer. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose preferred edge to set. * * inEdge: * The preferred edge of the drawer window. Note that although the * WindowEdge enumeration has values appropriate for a bitfield, * the current implementation does not support receiving more than * one edge bit in this parameter. You can also pass * kWindowEdgeDefault to allow the Window Manager to pick an edge. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetDrawerPreferredEdge( inDrawerWindow: WindowRef; inEdge: OptionBits ): OSStatus; external name '_SetDrawerPreferredEdge'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetDrawerCurrentEdge() * * Summary: * Returns the current parent window edge on which a drawer is * displayed. * * Discussion: * If the drawer window is currently visible, this API returns the * parent window edge on which the drawer is displayed. If the * drawer is not visible, this API determines on which edge of the * parent window the drawer should be displayed, given the current * size of the drawer, position of the parent, and preferred edge * for the drawer. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose current edge to retrieve. * * Result: * The current edge of the drawer window. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetDrawerCurrentEdge( inDrawerWindow: WindowRef ): OptionBits; external name '_GetDrawerCurrentEdge'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetDrawerState() * * Summary: * Returns the current state of a drawer: opening, open, closing, or * closed. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose state to retrieve. * * Result: * The current state of the drawer window. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetDrawerState( inDrawerWindow: WindowRef ): WindowDrawerState; external name '_GetDrawerState'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetDrawerParent() * * Summary: * Returns the parent window of a drawer. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose parent window to retrieve. * * Result: * The drawer's parent window, or NULL if the drawer has no assigned * parent. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetDrawerParent( inDrawerWindow: WindowRef ): WindowRef; external name '_GetDrawerParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * SetDrawerParent() * * Summary: * Sets the parent window of a drawer. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose parent window to set. * * inParent: * The drawer's new parent window, or NULL if the drawer should * have no parent. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetDrawerParent( inDrawerWindow: WindowRef; inParent: WindowRef ): OSStatus; external name '_SetDrawerParent'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * kWindowOffsetUnchanged * * Discussion: * Pass this value to SetDrawerOffsets to indicate that an existing * offset should not be changed. } const kWindowOffsetUnchanged = -1.0; { * SetDrawerOffsets() * * Summary: * Sets the offsets from the beginning and end of the parent window * to the beginning and end of the drawer window. * * Discussion: * The drawer offsets control the positioning of the drawer relative * to its parent window. When a drawer is first created, its offsets * are zero. When a drawer is positioned, it is initially given a * height or width equal to the height or width of the content area * of the parent to which it is attached. If a drawer is opening on * the left side of its parent, for example, the drawer's height * will be the height of the parent's content area. In this case, * the top side of the drawer window is called the leading edge of * the drawer, and the bottom side of the drawer window is called * the trailing edge of the drawer. The drawer's size is then * adjusted by the leading and trailing offsets. The leading edge of * the drawer is moved inward by an amount equal to the leading * offset, and the trailing edge is moved inward by an amount equal * to the trailing offset. For example, if the leading and trailing * offsets are five and fifteen, then the top edge of a left-opening * drawer will be five pixels inside the top edge of the parent * window's content area, and the bottom edge of the drawer will be * fifteen pixels inside the bottom edge of the parent's content * area. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose offsets to change. * * inLeadingOffset: * The new leading offset, in pixels. Pass kWindowOffsetUnchanged * if you don't want to change the leading offset. * * inTrailingOffset: * The new trailing offset, in pixels. Pass kWindowOffsetUnchanged * if you don't want to change the trailing offset. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetDrawerOffsets( inDrawerWindow: WindowRef; inLeadingOffset: Float32; inTrailingOffset: Float32 ): OSStatus; external name '_SetDrawerOffsets'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetDrawerOffsets() * * Summary: * Returns the offsets from the beginning and end of the parent * window to the beginning and end of the drawer window. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window whose offsets to retrieve. * * outLeadingOffset: * On exit, contains the drawer's leading offset. Pass NULL if you * don't need this information returned. * * outTrailingOffset: * On exit, contains the drawer's trailing offset. Pass NULL if * you don't need this information returned. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetDrawerOffsets( inDrawerWindow: WindowRef; outLeadingOffset: Float32Ptr { can be NULL }; outTrailingOffset: Float32Ptr { can be NULL } ): OSStatus; external name '_GetDrawerOffsets'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * ToggleDrawer() * * Summary: * Toggles a drawer from open to closed, or vice versa. * * Discussion: * ToggleDrawer opens the drawer if it is closed, opening, or * closing. If the drawer is open, it closes the drawer. * * ToggleDrawer attempts to open the drawer on its preferred edge, * but if there is not enough room on that edge, it will try the * opposite edge instead. If there is insufficient room on either * edge, the drawer will open on the preferred edge but may extend * offscreen, under the Dock, or under the menubar. * * The opening or closing of the drawer is performed asynchronously; * ToggleDrawer installs an event loop timer that opens or closes * the drawer after ToggleDrawer returns to the caller. Therefore, * the caller must be running its event loop for the drawer to open * or close. To open or close the drawer synchronously, use the * OpenDrawer or CloseDrawer APIs. * * ToggleDrawer retains the drawer window while the drawer is * opening or closing, and releases it when the drawer is fully * opened or closed. * * ToggleDrawer sends the kEventWindowDrawerOpening, * kEventWindowDrawerOpened, kEventWindowDrawerClosing, and * kEventWindowDrawerClosed events as the drawer opens or closes. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window to open or close. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function ToggleDrawer( inDrawerWindow: WindowRef ): OSStatus; external name '_ToggleDrawer'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * OpenDrawer() * * Summary: * Opens a drawer on a specified parent window edge. * * Discussion: * OpenDrawer may open the drawer either synchronously or * asynchronously, depending on the value of the inAsync parameter. * If inAsync is true, OpenDrawer installs an event loop timer that * opens the drawer after OpenDrawer returns to the caller; * therefore, the caller must be running its event loop for the * drawer to open. If inAsync is false, OpenDrawer opens the drawer * completely before returning to the caller. * * OpenDrawer retains the drawer window while the drawer is opening, * and releases it when the drawer is fully open. * * OpenDrawer sends the kEventWindowDrawerOpening event to the * drawer, the drawer's parent, and the application before opening * the drawer. If an event handler for this event returns * userCanceledErr, OpenDrawer will return immediately without * opening the drawer. OpenDrawer sends the kEventWindowDrawerOpened * event to the drawer, the drawer's parent, and the application * after the drawer has finished opening. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window to open. * * inEdge: * The parent window edge on which to open the drawer. Pass * kWindowEdgeDefault to use the drawer's preferred edge. If there * is not enough room on the preferred edge, OpenDrawer will try * the opposite edge instead. If there is insufficient room on * either edge, the drawer will open on the preferred edge but may * extend offscreen, under the Dock, or under the menubar. * * inAsync: * Whether to open the drawer synchronously (the drawer is * entirely opened before the function call returns) or * asynchronously (the drawer opens using an event loop timer * after the function call returns). * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function OpenDrawer( inDrawerWindow: WindowRef; inEdge: OptionBits; inAsync: Boolean ): OSStatus; external name '_OpenDrawer'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * CloseDrawer() * * Summary: * Closes a drawer. * * Discussion: * CloseDrawer may close the drawer either synchronously or * asynchronously, depending on the value of the inAsync parameter. * If inAsync is true, CloseDrawer installs an event loop timer that * closes the drawer after CloseDrawer returns to the caller; * therefore, the caller must be running its event loop for the * drawer to close. If inAsync is false, CloseDrawer closes the * drawer completely before returning to the caller. * * CloseDrawer retains the drawer window while the drawer is * closing, and releases it when the drawer is fully closed. * * CloseDrawer sends the kEventWindowDrawerClosing event to the * drawer, the drawer's parent, and the application before closing * the drawer. If an event handler for this event returns * userCanceledErr, CloseDrawer will return immediately without * closing the drawer. CloseDrawer sends the * kEventWindowDrawerClosed event to the drawer, the drawer's * parent, and the application after the drawer has finished closing. * * Mac OS X threading: * Not thread safe * * Parameters: * * inDrawerWindow: * The drawer window to close. * * inAsync: * Whether to close the drawer synchronously (the drawer is * entirely closed before the function call returns) or * asynchronously (the drawer closes using an event loop timer * after the function call returns). * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function CloseDrawer( inDrawerWindow: WindowRef; inAsync: Boolean ): OSStatus; external name '_CloseDrawer'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Disabling Screen Redraw } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { disable and enable screen updates for changes to the current applicationÕs windows (OS X only) } { * DisableScreenUpdates() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function DisableScreenUpdates: OSStatus; external name '_DisableScreenUpdates'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * EnableScreenUpdates() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.1 and later * Non-Carbon CFM: not available } function EnableScreenUpdates: OSStatus; external name '_EnableScreenUpdates'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Toolbars } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} // #define _SetWindowToolbar SetWindowToolbar { * SetWindowToolbar() * * Discussion: * Sets the toolbar for a window. If any other toolbar is currently * bound to the window, it is released. This API does NOT add the * toolbar button to the window, your application must set the * attribute itself. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to add the toolbar to. * * inToolbar: * The toolbar to add. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function SetWindowToolbar( inWindow: WindowRef; inToolbar: HIToolbarRef ): OSStatus; external name '_SetWindowToolbar'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) // #define _GetWindowToolbar GetWindowToolbar { * GetWindowToolbar() * * Discussion: * Gets the toolbar of a window, if any. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to add the toolbar to. * * outToolbar: * The toolbar. You do not own the toolbar reference returned by * this function. Do not release it! It is possible for the * toolbar returned to be NULL, indicating there is no toolbar * associated with this window. ¥¥¥ NOTE: May need to change the * release strategy here. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function GetWindowToolbar( inWindow: WindowRef; var outToolbar: HIToolbarRef ): OSStatus; external name '_GetWindowToolbar'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) // #define _ShowHideWindowToolbar ShowHideWindowToolbar { * ShowHideWindowToolbar() * * Discussion: * Shows or hides a window's toolbar. Optionally, you can ask for * the transition to be animated or not. Typically, you would not * need to call this other than to set up your window accordingly. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window to show or hide the toolbar for. * * inShow: * Pass true to show the toolbar, false to hide it. * * inAnimate: * Pass true to animate the transition, false to do it quickly and * without fanfare. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function ShowHideWindowToolbar( inWindow: WindowRef; inShow: Boolean; inAnimate: Boolean ): OSStatus; external name '_ShowHideWindowToolbar'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) // #define _IsWindowToolbarVisible IsWindowToolbarVisible { * IsWindowToolbarVisible() * * Discussion: * Returns whether the toolbar (if any) attached to a window is * visible. If the window has no toolbar, false is returned. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window test the toolbar visiblity for. * * Result: * A boolean result indicating whether the toolbar is visible (true) * or not (false). * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.2 and later * Non-Carbon CFM: not available } function IsWindowToolbarVisible( inWindow: WindowRef ): Boolean; external name '_IsWindowToolbarVisible'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Transparency } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * SetWindowAlpha() * * Discussion: * Alters the overall alpha of a window, making the entire window * (including window frame) either more or less transparent. The * alpha is expressed as a floating point value from 0.0 (completely * transparent) to 1.0 (completely opaque). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose alpha to modify. * * inAlpha: * The new alpha value. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function SetWindowAlpha( inWindow: WindowRef; inAlpha: Float32 ): OSStatus; external name '_SetWindowAlpha'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowAlpha() * * Discussion: * Returns the current overall alpha value for a window. The alpha * is expressed as a floating point value from 0.0 (completely * transparent) to 1.0 (completely opaque). * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window whose alpha to return. * * outAlpha: * On exit, contains the window's current alpha value. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.0 and later * Non-Carbon CFM: not available } function GetWindowAlpha( inWindow: WindowRef; var outAlpha: Float32 ): OSStatus; external name '_GetWindowAlpha'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Shadows } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * HIWindowInvalidateShadow() * * Summary: * This API causes a window's shadow to be recalculated. * * Discussion: * HIWindowInvalidateShadow is not typically used by applications. * However, it may be useful for applications with customized window * frames that change shape dynamically; in this case, after the * application has drawn the new window shape, the window shadow * must be recalculated to follow the new window shape. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowInvalidateShadow( inWindow: HIWindowRef ): OSStatus; external name '_HIWindowInvalidateShadow'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Scaling for Resolution Independence } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * HIWindowScaleMode * * Discussion: * A window's scale mode indicates in which resolution-independent * scale mode it is operating. } type HIWindowScaleMode = UInt32; const { * The window is not scaled at all because the display scale factor * is 1.0. } kHIWindowScaleModeUnscaled = 0; { * The window's backing store is being magnified by the window server * because the display scale factor != 1.0, and because the window * was created with neither the kWindowFrameworkScaledAttribute nor * the kWindowApplicationScaledAttribute. } kHIWindowScaleModeMagnified = 1; { * The window's context has been scaled to match the display scale * factor because the display scale factor != 1.0 and because the * window was created with the kWindowFrameworkScaledAttribute. } kHIWindowScaleModeFrameworkScaled = 2; { * This window's contents are being scaled manually by the * application because the display scale factor != 1.0 and because * the window was created with the kWindowApplicationScaledAttribute. } kHIWindowScaleModeApplicationScaled = 3; { * HIWindowGetScaleMode() * * Summary: * Provides the window's scale mode and the application's display * scale factor. * * Discussion: * HIWindowGetScaleMode returns the HIWindowScaleMode for the * window, which is determined based on the application's display * scale factor and any resolution-independence attributes specified * at window creation time. Applications and the views within the * window can use the scale mode and display scale factor to help * draw or layout properly for a particular scale mode. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The WindowRef whose scale mode to provide. * * outMode: * On exit, an HIWindowScaleMode indicating the window's scale * mode. * * outScaleFactor: * On exit, a float indicating the display scale factor for the * application. You may pass NULL if you are not interested in * acquiring the scale factor; it is provided only as a * convenience. * * Result: * An operating system result code. * * Availability: * Mac OS X: in version 10.4 and later in Carbon.framework * CarbonLib: not available in CarbonLib 1.x, is available on Mac OS X version 10.4 and later * Non-Carbon CFM: not available } function HIWindowGetScaleMode( inWindow: HIWindowRef; var outMode: HIWindowScaleMode; outScaleFactor: Float32Ptr { can be NULL } ): OSStatus; external name '_HIWindowGetScaleMode'; (* AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Properties } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Routines available from Mac OS 8.5 forward or from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward } { * GetWindowProperty() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowProperty( window: WindowRef; propertyCreator_: PropertyCreator; propertyTag_: PropertyTag; bufferSize: UInt32; actualSize: UInt32Ptr { can be NULL }; propertyBuffer: UnivPtr ): OSStatus; external name '_GetWindowProperty'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowPropertySize() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function GetWindowPropertySize( window: WindowRef; creator: PropertyCreator; tag: PropertyTag; var size: UInt32 ): OSStatus; external name '_GetWindowPropertySize'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowProperty() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function SetWindowProperty( window: WindowRef; propertyCreator_: PropertyCreator; propertyTag_: PropertyTag; propertySize: UInt32; propertyBuffer: {const} UnivPtr ): OSStatus; external name '_SetWindowProperty'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * RemoveWindowProperty() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in WindowsLib 8.5 and later } function RemoveWindowProperty( window: WindowRef; propertyCreator_: PropertyCreator; propertyTag_: PropertyTag ): OSStatus; external name '_RemoveWindowProperty'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { Routines available from Mac OS 8.1 forward when linking to CarbonLib 1.0 forward} const kWindowPropertyPersistent = $00000001; { whether this property gets saved when flattening the window } { * GetWindowPropertyAttributes() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function GetWindowPropertyAttributes( window: WindowRef; propertyCreator: OSType; propertyTag: OSType; var attributes: UInt32 ): OSStatus; external name '_GetWindowPropertyAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * ChangeWindowPropertyAttributes() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: not available } function ChangeWindowPropertyAttributes( window: WindowRef; propertyCreator: OSType; propertyTag: OSType; attributesToSet: UInt32; attributesToClear: UInt32 ): OSStatus; external name '_ChangeWindowPropertyAttributes'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Utilities } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * PinRect() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function PinRect( const (*var*) theRect: Rect; thePt: Point ): SInt32; external name '_PinRect'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetGrayRgn() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function GetGrayRgn: RgnHandle; external name '_GetGrayRgn'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Part Tracking } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * TrackBox() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function TrackBox( window: WindowRef; thePt: Point; partCode: WindowPartCode ): Boolean; external name '_TrackBox'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * TrackGoAway() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function TrackGoAway( window: WindowRef; thePt: Point ): Boolean; external name '_TrackGoAway'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Region Dragging } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * DragGrayRgn() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function DragGrayRgn( theRgn: RgnHandle; startPt: Point; const (*var*) limitRect: Rect; const (*var*) slopRect: Rect; axis: SInt16; actionProc: DragGrayRgnUPP ): SInt32; external name '_DragGrayRgn'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * DragTheRgn() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in InterfaceLib 7.1 and later } function DragTheRgn( theRgn: RgnHandle; startPt: Point; const (*var*) limitRect: Rect; const (*var*) slopRect: Rect; axis: SInt16; actionProc: DragGrayRgnUPP ): SInt32; external name '_DragTheRgn'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ GetAuxWin } { GetAuxWin is not available in Carbon } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * GetAuxWin() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ C Glue } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * setwtitle() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * trackgoaway() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * findwindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * getwtitle() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * growwindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * newwindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * newcwindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * pinrect() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * trackbox() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * draggrayrgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } { * dragwindow() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in InterfaceLib 7.1 and later } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { ¥ Window Accessors } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { * GetWindowGoAwayFlag() * * Discussion: * use GetWindowAttributes in Carbon * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } { * GetWindowSpareFlag() * * Discussion: * use GetWindowAttributes in Carbon * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } { * GetWindowList() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0.2 and later } function GetWindowList: WindowRef; external name '_GetWindowList'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowPort() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowPort( window: WindowRef ): CGrafPtr; external name '_GetWindowPort'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowStructurePort() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.1 and later in Carbon.framework * CarbonLib: in CarbonLib 1.5 and later * Non-Carbon CFM: not available } function GetWindowStructurePort( inWindow: WindowRef ): CGrafPtr; external name '_GetWindowStructurePort'; (* AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER *) { * GetWindowKind() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowKind( window: WindowRef ): SInt16; external name '_GetWindowKind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowHilited() * * Summary: * Indicates whether a window's frame is hilited. * * Discussion: * See HiliteWindow for a disucssion on the meaning of a window's * hilited state. * * Mac OS X threading: * Not thread safe * * Parameters: * * window: * The window whose hilited state you wish to retrieve. * * Result: * A Boolean indicating whether the window's frame is hilited. * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function IsWindowHilited( window: WindowRef ): Boolean; external name '_IsWindowHilited'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * IsWindowUpdatePending() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function IsWindowUpdatePending( window: WindowRef ): Boolean; external name '_IsWindowUpdatePending'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * [Mac]GetNextWindow() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0.2 and later or as macro/inline } function GetNextWindow( window: WindowRef ): WindowRef; external name '_GetNextWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) function MacGetNextWindow__NAME__GetNextWindow( window: WindowRef ): WindowRef; external name '_MacGetNextWindow__NAME__GetNextWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetPreviousWindow() * * Summary: * Returns the window above a given window in the window list. * * Mac OS X threading: * Not thread safe * * Parameters: * * inWindow: * The window above this window is returned. * * Availability: * Mac OS X: in version 10.2 and later in Carbon.framework * CarbonLib: in CarbonLib 1.6 and later * Non-Carbon CFM: not available } function GetPreviousWindow( inWindow: WindowRef ): WindowRef; external name '_GetPreviousWindow'; (* AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER *) { * GetWindowStandardState() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowStandardState( window: WindowRef; var rect_: Rect ): RectPtr; external name '_GetWindowStandardState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowUserState() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowUserState( window: WindowRef; var rect_: Rect ): RectPtr; external name '_GetWindowUserState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowKind() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } procedure SetWindowKind( window: WindowRef; kind: SInt16 ); external name '_SetWindowKind'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowStandardState() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } procedure SetWindowStandardState( window: WindowRef; const (*var*) rect_: Rect ); external name '_SetWindowStandardState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetWindowUserState() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } procedure SetWindowUserState( window: WindowRef; const (*var*) rect_: Rect ); external name '_SetWindowUserState'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * SetPortWindowPort() * * Discussion: * set the current QuickDraw port to the port associated with the * window * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } procedure SetPortWindowPort( window: WindowRef ); external name '_SetPortWindowPort'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowPortBounds() * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowPortBounds( window: WindowRef; var bounds: Rect ): RectPtr; external name '_GetWindowPortBounds'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { * GetWindowFromPort() * * Discussion: * Needed to Ôcast upÕ to a WindowRef from a GrafPtr * * Mac OS X threading: * Not thread safe * * Availability: * Mac OS X: in version 10.0 and later in Carbon.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in CarbonAccessors.o 1.0 and later or as macro/inline } function GetWindowFromPort( port: CGrafPtr ): WindowRef; external name '_GetWindowFromPort'; (* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER *) { old accessors} { * GetWindowDataHandle() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * SetWindowDataHandle() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * GetWindowZoomFlag() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * GetWindowStructureRgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * GetWindowContentRgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * GetWindowUpdateRgn() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } { * GetWindowTitleWidth() * * Availability: * Mac OS X: not available * CarbonLib: not available * Non-Carbon CFM: available as macro/inline } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} { Obsolete symbolic names } {ÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑ} const kWindowGroupAttrSelectable = kWindowGroupAttrSelectAsLayer; kWindowGroupAttrPositionFixed = kWindowGroupAttrMoveTogether; kWindowGroupAttrZOrderFixed = kWindowGroupAttrLayerTogether; end.