Line | |
---|
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 |
|
---|
11 | enum {
|
---|
12 | NSWindowCollectionBehaviorDefault = 0,
|
---|
13 | NSWindowCollectionBehaviorCanJoinAllSpaces = 1 << 0,
|
---|
14 | NSWindowCollectionBehaviorMoveToActiveSpace = 1 << 1
|
---|
15 | };
|
---|
16 | typedef unsigned NSWindowCollectionBehavior;
|
---|
17 |
|
---|
18 | @interface NSWindow (NSWindowCollectionBehavior)
|
---|
19 | - (void)setCollectionBehavior:(NSWindowCollectionBehavior)behavior;
|
---|
20 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.