source: trunk/Cocoa/F-Script Anywhere/Source/FSAWindowManager.h

Last change on this file was 399, checked in by Nicholas Riley, 16 years ago

Oops, missed a *

File size: 588 bytes
Line 
1//
2// FSAWindowManager.h
3// F-Script Anywhere
4//
5// Created by Nicholas Riley on Mon Sep 30 2002.
6// Copyright (c) 2002 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10
11@interface FSAWindowManager : NSObject {
12 NSMenu *menu;
13 NSMutableDictionary *records;
14 NSMenuItem *separator, *label;
15}
16
17+ (FSAWindowManager *)sharedManager;
18
19- (void)setWindowMenu:(NSMenu *)windowMenu;
20
21- (void)registerWindow:(NSWindow *)window;
22- (void)registerSubordinateWindow:(NSWindow *)subWindow forWindow:(NSWindow *)window;
23- (BOOL)windowIsRegistered:(NSWindow *)window;
24
25@end
Note: See TracBrowser for help on using the repository browser.