forked from themartorana/MultiFirefox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
32 lines (24 loc) · 825 Bytes
/
MainWindow.h
File metadata and controls
32 lines (24 loc) · 825 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
32
//
// MainWindow.h
// MultiFirefox
//
// Created by David Martorana on 4/7/08.
// Copyright 2008. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MainWindowController : NSWindowController <NSWindowDelegate, NSTableViewDelegate> {
IBOutlet NSButton *mLaunchButton;
IBOutlet NSButton *mShowProfileManagerButton;
IBOutlet NSTableView *mProfilesTable;
IBOutlet NSTableView *mVersionsTable;
IBOutlet NSArrayController *mProfilesController;
IBOutlet NSArrayController *mVersionsController;
}
- (IBAction) LaunchFirefox:(id)sender;
- (IBAction) ShowProfileManager:(id)sender;
- (IBAction) CreateApplication:(id)sender;
- (NSString *) GetSelectedVersion;
- (void) SelectProfileForVersion:(NSString *)version;
- (void) PopulateVersionValues;
- (void) PopulateProfileValues;
@end