source: trunk/Cocoa/Pester/Source/NSWindowCollectionBehavior.h@ 522

Last change on this file since 522 was 522, checked in by Nicholas Riley, 15 years ago

Spaces fixes.

File size: 514 bytes
RevLine 
[522]1//
2// NSWindowCollectionBehavior.h
3// Pester
4//
5// Created by Nicholas Riley on 12/8/07.
6// Copyright 2007 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10
11enum {
12 NSWindowCollectionBehaviorDefault = 0,
13 NSWindowCollectionBehaviorCanJoinAllSpaces = 1 << 0,
14 NSWindowCollectionBehaviorMoveToActiveSpace = 1 << 1
15};
16typedef unsigned NSWindowCollectionBehavior;
17
18@interface NSWindow (NSWindowCollectionBehavior)
19- (void)setCollectionBehavior:(NSWindowCollectionBehavior)behavior;
20@end
Note: See TracBrowser for help on using the repository browser.