Chameleon Applications

Chameleon Applications Svn Source Tree

Root/branches/iFabio/ChameleonPrefPane/Sources/BootFlagsController.h

Source at commit 261 created 12 years 11 months ago.
By ifabio, "re-open": create two folder, one for the prefpanel project, other for chameleon bootloader trunk, also synk with latest 832 trunk's code, added some stuff like OpenBSD/FreeBSD/Haiku detection, and added more Nvidia ID cards.
1//
2// BootFlagsController.h
3// ChameleonPrefPane
4//
5// Created by Rekursor on 1/22/10.
6//
7
8#import <Cocoa/Cocoa.h>
9#import "PreferencesControllerBase.h"
10
11
12// TabView subpane controller definition
13@interface BootFlagsController : PreferencesControllerBase <GroupControllerProtocol>
14{
15
16IBOutlet NSButton*mVerbose;
17IBOutlet NSButton*mSafeBoot;
18IBOutlet NSButton*mIgnoreBootConfig;
19
20IBOutlet NSButton*mTimeOut;
21IBOutlet NSTextField*mTimeOutText;
22IBOutlet NSButton*mSingleUser;
23
24IBOutlet NSButton*mQuietBoot;
25IBOutlet NSButton*mInstantMenu;
26IBOutlet NSButton*mWait;
27
28IBOutlet NSButton*mRescan;
29IBOutlet NSButton*mRescanPrompt;
30IBOutlet NSButton*mRescanSingleDrive;
31IBOutlet NSButton*mUseGUI;
32IBOutlet NSButton*mTheme;
33IBOutlet NSComboBox*mThemeText;
34}
35
36- (IBAction) onCheckButtonChange: (NSButton*) sender;
37- (IBAction) onTextFiedChange: (NSTextField*) sender;
38- (void) setDefaultsValues: (NSMutableDictionary*) dict;
39
40+ (BootFlagsController *)instance;
41
42@end
43

Archive Download this file

Revision: 261