Up
Authors
- Scott Christley(
scottc@net-community.com
)
-
- Felipe A. Rodriguez(
far@ix.netcom.com
)
-
- Richard Frith-Macdonald(
richard@brainstorm.co.uk
)
-
The window class
Copyright: (C) 1996 Free Software Foundation, Inc.
Instances of the NSWindow class handle on-screen
windows, their associated NSViews, and events generate
by the user. An NSWindow's size is defined by its frame
rectangle, which encompasses its entire structure,
and its content rectangle, which includes only the content.
Every NSWindow has a content view, the NSView which forms
the root of the window's view hierarchy. This view can be
set using the setContentView:
method, and
accessed through the contentView
method.
setContentView:
replaces the default
content view created by NSWindow.
Other views may be added to the window by using the
content view's addSubview:
method. These
subviews can also have subviews added, forming a tree
structure, the view hierarchy. When an NSWindow must
display itself, it causes this hierarchy to draw
itself. Leaf nodes in the view hierarchy are drawn
last, causing them to potentially obscure views further
up in the hierarchy.
A delegate can be specified for an NSWindow, which will
receive notifications of events pertaining to the
window. The delegate is set using
setDelegate:
, and can be retrieved using
delegate
. The delegate can restrain
resizing by implementing the
windowWillResize: toSize:
method, or
control the closing of the window by implementing
windowShouldClose:
.
- Declared in:
- AppKit/NSWindow.h
- Conforms to:
- NSCoding
Standards:
Method summary
+ (NSRect) contentRectForFrameRect: (NSRect)aRect styleMask: (unsigned int)aStyle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
+ (NSWindowDepth) defaultDepthLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
+ (NSRect) frameRectForContentRect: (NSRect)aRect styleMask: (unsigned int)aStyle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
+ (void) menuChanged: (NSMenu*)aMenu;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
+ (NSRect) minFrameWidthWithTitle: (NSString*)aTitle styleMask: (unsigned int)aStyle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
+ (void) removeFrameUsingName: (NSString*)name;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) acceptsMouseMovedEvents;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (float) alphaValue;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSTimeInterval) animationResizeTime: (NSRect)newFrame;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) areCursorRectsEnabled;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) aspectRatio;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSColor*) backgroundColor;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSBackingStoreType) backingType;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) becomeKeyWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) becomeMainWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) cacheImageInRect: (NSRect)aRect;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) canBecomeKeyWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) canBecomeMainWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) canHide;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) canStoreColor;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) cascadeTopLeftFromPoint: (NSPoint)topLeftPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) center;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) close;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) constrainFrameRect: (NSRect)frameRect toScreen: (id)screen;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (id) contentView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) convertBaseToScreen: (NSPoint)basePoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) convertScreenToBase: (NSPoint)screenPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSWindow*) counterpart;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (NSEvent*) currentEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSData*) dataWithEPSInsideRect: (NSRect)rect;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSData*) dataWithPDFInsideRect: (NSRect)aRect;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSScreen*) deepestScreen;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSButtonCell*) defaultButtonCell;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (id) delegate;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) deminiaturize: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Causes the window to deminiaturize. Normally you
would not call this method directly. A window is
automatically deminiaturized by the user via
a mouse cloick event.
- (NSWindowDepth) depthLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSDictionary*) deviceDescription;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) disableCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) disableFlushWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) disableKeyEquivalentForDefaultButtonCell;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) discardCachedImage;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) discardCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) discardEventsMatchingMask: (unsigned int)mask beforeEvent: (NSEvent*)lastEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) display;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) displayIfNeeded;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) dragImage: (NSImage*)anImage at: (NSPoint)baseLocation offset: (NSSize)initialOffset event: (NSEvent*)event pasteboard: (NSPasteboard*)pboard source: (id)sourceObject slideBack: (BOOL)slideFlag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSArray*) drawers;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) enableCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) enableFlushWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) enableKeyEquivalentForDefaultButtonCell;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) endEditingFor: (id)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) fax: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSText*) fieldEditor: (BOOL)createFlag forObject: (id)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSResponder*) firstResponder;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) flushWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) flushWindowIfNeeded;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) frame;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) frameAutosaveName;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (int) gState;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) hasDynamicDepthLimit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) hasShadow;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) hidesOnDeactivate;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (id) initWithContentRect: (NSRect)contentRect styleMask: (unsigned int)aStyle backing: (NSBackingStoreType)bufferingType defer: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Initializes the receiver with a content rect
of contentRect, a style mask of
styleMask, and a backing store type of
backingType.
The style mask values are
NSTitledWindowMask
, for a window with
a title, NSClosableWindowMask
, for a
window with a close widget,
NSMiniaturizableWindowMask
, for a
window with a miniaturize widget, and
NSResizableWindowMask
, for a window
with a resizing widget. These mask values can be
OR'd in any combination.
Backing store values are
NSBackingStoreBuffered
,
NSBackingStoreRetained
and
NSBackingStoreNonretained
.
- (id) initWithContentRect: (NSRect)contentRect styleMask: (unsigned int)aStyle backing: (NSBackingStoreType)bufferingType defer: (BOOL)flag screen: (NSScreen*)aScreen;
Standards: GNUstep, MacOS-X, OpenStep
Initializes the receiver with a content rect
of contentRect, a style mask of
styleMask, a backing store type of
backingType and a boolean
flag. flag specifies whether
the window should be created now (NO
),
or when it is displayed (YES
).
The style mask values are
NSTitledWindowMask
, for a window with
a title, NSClosableWindowMask
, for a
window with a close widget,
NSMiniaturizableWindowMask
, for a
window with a miniaturize widget, and
NSResizableWindowMask
, for a window
with a resizing widget. These mask values can be
OR'd in any combination.
Backing store values are
NSBackingStoreBuffered
,
NSBackingStoreRetained
and
NSBackingStoreNonretained
.
- (NSWindow*) initWithWindowRef: (void*)windowRef;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSView*) initialFirstResponder;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) invalidateCursorRectsForView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isAutodisplay;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isDocumentEdited;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isExcludedFromWindowsMenu;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isFlushWindowDisabled;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isKeyWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isMainWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isMiniaturized;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isOneShot;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isOpaque;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) isReleasedWhenClosed;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) isVisible;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) keyDown: (NSEvent*)theEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSelectionDirection) keyViewSelectionDirection;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (int) level;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) makeFirstResponder: (NSResponder*)aResponder;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) makeKeyAndOrderFront: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) makeKeyWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) makeMainWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) maxSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) minSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) miniaturize: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Causes the window to miniaturize, that is the window
is removed from the screen and it's counterpart
(mini)window is displayed.
- (NSImage*) miniwindowImage;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) miniwindowTitle;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSPoint) mouseLocationOutsideOfEventStream;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSEvent*) nextEventMatchingMask: (unsigned int)mask;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSEvent*) nextEventMatchingMask: (unsigned int)mask untilDate: (NSDate*)expiration inMode: (NSString*)mode dequeue: (BOOL)deqFlag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) orderBack: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) orderFront: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) orderFrontRegardless;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) orderOut: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) orderWindow: (NSWindowOrderingMode)place relativeTo: (int)otherWin;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) performClose: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) performMiniaturize: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) performZoom: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) postEvent: (NSEvent*)event atStart: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) print: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) registerForDraggedTypes: (NSArray*)newTypes;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) representedFilename;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) resetCursorRects;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) resignKeyWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) resignMainWindow;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (int) resizeFlags;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) resizeIncrements;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) restoreCachedImage;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) runToolbarCustomizationPalette: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) saveFrameUsingName: (NSString*)name;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSScreen*) screen;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) selectKeyViewFollowingView: (NSView*)aView;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) selectKeyViewPrecedingView: (NSView*)aView;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) selectNextKeyView: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) selectPreviousKeyView: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) sendEvent: (NSEvent*)theEvent;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setAcceptsMouseMovedEvents: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setAlphaValue: (float)windowAlpha;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setAspectRatio: (NSSize)ratio;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setAutodisplay: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBackgroundColor: (NSColor*)color;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setBackingType: (NSBackingStoreType)type;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setCanHide: (BOOL)flag;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setContentSize: (NSSize)aSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setContentView: (NSView*)aView;
Standards: GNUstep, MacOS-X, OpenStep
Sets the window's content view to aView,
replacing any previous content view.
- (void) setDefaultButtonCell: (NSButtonCell*)aButtonCell;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setDelegate: (id)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setDepthLimit: (NSWindowDepth)limit;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setDocumentEdited: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setDynamicDepthLimit: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setExcludedFromWindowsMenu: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrame: (NSRect)frameRect display: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrame: (NSRect)frameRect display: (BOOL)displayFlag animate: (BOOL)animationFlag;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) setFrameAutosaveName: (NSString*)name;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameFromString: (NSString*)string;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameOrigin: (NSPoint)aPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setFrameTopLeftPoint: (NSPoint)aPoint;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) setFrameUsingName: (NSString*)name;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) setFrameUsingName: (NSString*)name force: (BOOL)force;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setHasShadow: (BOOL)hasShadow;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setHidesOnDeactivate: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setInitialFirstResponder: (NSView*)aView;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setLevel: (int)newLevel;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setMaxSize: (NSSize)aSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setMinSize: (NSSize)aSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setMiniwindowImage: (NSImage*)image;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setMiniwindowTitle: (NSString*)title;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setOneShot: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setOpaque: (BOOL)isOpaque;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setReleasedWhenClosed: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setRepresentedFilename: (NSString*)aString;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setResizeIncrements: (NSSize)aSize;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setShowsResizeIndicator: (BOOL)show;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setTitle: (NSString*)aString;
Standards: GNUstep, MacOS-X, OpenStep
Sets the window's title to the string
aString.
- (void) setTitleWithRepresentedFilename: (NSString*)aString;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setToolbar: (NSToolbar*)toolbar;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) setViewsNeedDisplay: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) setWindowController: (NSWindowController*)windowController;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) showsResizeIndicator;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSString*) stringWithSavedFrame;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (unsigned int) styleMask;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSString*) title;
Standards: GNUstep, MacOS-X, OpenStep
Returns an NSString containing the text of the
window's title.
- (void) toggleToolbarShown: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (NSToolbar*) toolbar;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) tryToPerform: (SEL)anAction with: (id)anObject;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) unregisterDraggedTypes;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) update;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) useOptimizedDrawing: (BOOL)flag;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (id) validRequestorForSendType: (NSString*)sendType returnType: (NSString*)returnType;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) viewsNeedDisplay;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (id) windowController;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void*) windowHandle;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (int) windowNumber;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void*) windowRef;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (BOOL) worksWhenModal;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) zoom: (id)sender;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- Declared in:
- AppKit/NSWindow.h
Standards:
Description forthcoming.
Method summary
- (void) windowDidBecomeKey: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidBecomeMain: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidChangeScreen: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidDeminiaturize: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidExpose: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidMiniaturize: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidMove: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidResignKey: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidResignMain: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidResize: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowDidUpdate: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) windowShouldClose: (id)sender;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (BOOL) windowShouldZoom: (NSWindow*)sender toFrame: (NSRect)aFrame;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- (void) windowWillClose: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowWillMiniaturize: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (void) windowWillMove: (NSNotification*)aNotification;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSSize) windowWillResize: (NSWindow*)sender toSize: (NSSize)frameSize;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (id) windowWillReturnFieldEditor: (NSWindow*)sender toObject: (id)client;
Standards: GNUstep, MacOS-X, OpenStep
Description forthcoming.
- (NSRect) windowWillUseStandardFrame: (NSWindow*)sender defaultFrame: (NSRect)aFrame;
Standards: NotOpenStep, GNUstep, MacOS-X
Description forthcoming.
- Declared in:
- AppKit/NSWindow.h
Standards:
- NotOpenStep
- NotMacOS-X
- GNUstep
Description forthcoming.
Method summary
- (void) _captureMouse: (id)sender;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (void) _initDefaults;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (void) _releaseMouse: (id)sender;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- (void) _setVisible: (BOOL)flag;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
- Declared in:
- AppKit/NSWindow.h
Standards:
- NotOpenStep
- NotMacOS-X
- GNUstep
Description forthcoming.
Method summary
- (id) _futureFirstResponder;
Standards: NotOpenStep, NotMacOS-X, GNUstep
Description forthcoming.
Up