-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathShroudAppDelegate.h
More file actions
31 lines (26 loc) · 843 Bytes
/
Copy pathShroudAppDelegate.h
File metadata and controls
31 lines (26 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// ShroudAppDelegate.h
// Shroud
//
// Created by Nicholas Riley on 2/19/10.
// Copyright 2010 Nicholas Riley. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <Carbon/Carbon.h>
#import "ShroudDockTileView.h"
#import "ShroudMenuBarPanel.h"
#import "ShroudMenuBarVisibilityController.h"
#import "ShroudPreferencesController.h"
@interface ShroudAppDelegate : NSObject {
NSPanel *screenPanel;
ShroudMenuBarPanel *menuBarPanel;
ShroudDockTileView *dockTileView;
NSWindowOrderingMode showRelativeToOrdering;
NSMutableArray *orderingRelativeToWindowIDs;
}
- (IBAction)focusFrontmostApplication:(id)sender;
- (IBAction)focusFrontmostWindow:(id)sender;
- (IBAction)orderFrontAboutPanel:(id)sender;
- (IBAction)orderFrontPreferencesPanel:(id)sender;
- (void)createMenuBarPanelWithFrame:(NSRect)menuBarFrame;
@end