Index: trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 67) +++ trunk/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 68) @@ -19,16 +19,16 @@ IBOutlet NSTextField* mDeviceRdText; IBOutlet NSButton* mArch; - IBOutlet NSTextField* mArchText; + IBOutlet NSComboBox* mArchText; IBOutlet NSButton* mCPU; - IBOutlet NSTextField* mCPUText; + IBOutlet NSComboBox* mCPUText; IBOutlet NSButton* mBusRatio; - IBOutlet NSTextField* mBusRatioText; + IBOutlet NSComboBox* mBusRatioText; IBOutlet NSButton* mDebug; - IBOutlet NSTextField* mDebugText; + IBOutlet NSComboBox* mDebugText; IBOutlet NSButton* mIO; - IBOutlet NSTextField* mIOText; + IBOutlet NSComboBox* mIOText; IBOutlet NSButton* mDisableKextsBlacklisting; IBOutlet NSButton* mDSDTFile; Index: trunk/ChameleonPrefPane/Sources/ChameleonPropertyList.h =================================================================== --- trunk/ChameleonPrefPane/Sources/ChameleonPropertyList.h (revision 67) +++ trunk/ChameleonPrefPane/Sources/ChameleonPropertyList.h (revision 68) @@ -18,6 +18,7 @@ { OptionYesNo=0, // "Yes" or "No" OptionString, // String Content + OptionFileString, // like String but with file dialog caps OptionUnix, // Unix like command option like -x, -v ... OptionKernel, // kernel cmd like "mach_kernel" or "blacklist=0" OptionKernel1 // kernel cmd like "mach_kernel" or "blacklist=0" Index: trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.h =================================================================== --- trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.h (revision 67) +++ trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.h (revision 68) @@ -60,6 +60,12 @@ // Execute a task and wait for the process to terminate - (bool) executeTaskAndWaitForTermination: (NSString*)taskPath; +// Open a file selection modal dialog +- (NSString*) selectFileWithFileTypes:(NSString*) dir withName: (NSString*) name withTypes:(NSArray*) fileTypes; +// Open a file selection modal dialog with a plist predefined type +- (NSString*) selectAnyFile; +- (NSString*) selectPlistFile:(NSString*)name; + - (void) loadPreferences; - (bool) savePreferences; Index: trunk/ChameleonPrefPane/Sources/PeripheralsController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 67) +++ trunk/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 68) @@ -24,13 +24,16 @@ BootProp::instance().addOptionDesc(mLegacyLogo, nil, OptionYesNo, "Legacy Logo", "No"); BootProp::instance().addOptionDesc(mBootBanner, nil, OptionYesNo, "Boot Banner", "Yes"); BootProp::instance().addOptionDesc(mVBIOS, nil, OptionYesNo, "VBIOS", "No"); - BootProp::instance().addOptionDesc(mVideoROM, mVideoROMText, OptionString, "VideoROM", ""); + BootProp::instance().addOptionDesc(mVideoROM, mVideoROMText, OptionFileString, "VideoROM", ""); BootProp::instance().addOptionDesc(mGraphicsMode, mGraphicsModeText, OptionString, "Graphics Mode", ""); BootProp::instance().addOptionDesc(mGraphicsEnabler, nil, OptionYesNo, "GraphicsEnabler", "No"); BootProp::instance().addOptionDesc(mUSBBusFix, nil, OptionYesNo, "USBBusFix", "No"); BootProp::instance().addOptionDesc(mEHCIacquire, nil, OptionYesNo, "EHCIacquire", "No"); BootProp::instance().addOptionDesc(mUHCIreset, nil,OptionYesNo, "UHCIreset", "No"); + BootProp::instance().addOptionDesc(mEthernetBuiltIn, nil, OptionYesNo, "EthernetBuiltIn", "No"); BootProp::instance().addOptionDesc(mPciRoot, mPciRootText, OptionString, "PciRoot", ""); + BootProp::instance().addOptionDesc(mForceHPET, nil, OptionYesNo, "ForceHPET", "No"); + } //-------------------------------------------------------------------------- Index: trunk/ChameleonPrefPane/Sources/BootFlagsController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 67) +++ trunk/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 68) @@ -37,6 +37,7 @@ BootProp::instance().addOptionDesc(mRescanPrompt, nil, OptionYesNo, "Rescan Prompt", "No"); BootProp::instance().addOptionDesc(mRescanSingleDrive, nil, OptionYesNo, "Rescan SingleDrive", "No"); BootProp::instance().addOptionDesc(mUseGUI, nil, OptionYesNo, "GUI", "Yes"); + BootProp::instance().addOptionDesc(mTheme, mThemeText, OptionString, "Theme", ""); } //-------------------------------------------------------------------------- Index: trunk/ChameleonPrefPane/Sources/BootSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 67) +++ trunk/ChameleonPrefPane/Sources/BootSetupController.mm (revision 68) @@ -214,7 +214,15 @@ { int val = [mBootConfigPath intValue]; [mBootConfigPathText setEnabled: val ? true : false]; - [mBootConfigPathText setEditable: val ? true : false]; + [mBootConfigPathText setEditable: val ? true : false]; + + if (val) + { + NSString * f = [self selectPlistFile: @"com.Apple.boot.plist"]; + if(f) [mBootConfigPathText setStringValue:f]; + } + + [[self preferencesFile] setObject: val ? [mBootConfigPathText stringValue] : [[NSString alloc] initWithUTF8String: ""] forKey: keyForceBootConfigPath]; Index: trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 67) +++ trunk/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 68) @@ -29,13 +29,13 @@ BootProp::instance().addOptionDesc(mDebug, mDebugText, OptionString, "debug", ""); BootProp::instance().addOptionDesc(mIO, mIOText, OptionString, "io", ""); BootProp::instance().addOptionDesc(mDisableKextsBlacklisting, nil, OptionString, "blacklist", ""); - BootProp::instance().addOptionDesc(mDSDTFile, mDSDTFileText, OptionString, "DSDT", ""); + BootProp::instance().addOptionDesc(mDSDTFile, mDSDTFileText, OptionFileString, "DSDT", ""); BootProp::instance().addOptionDesc(mDSDTDrop, nil, OptionYesNo, "DropSSDT", "No"); - BootProp::instance().addOptionDesc(mSMBIOSFile,mSMBIOSFileText, OptionString, "SMBIOS", ""); + BootProp::instance().addOptionDesc(mSMBIOSFile,mSMBIOSFileText, OptionFileString, "SMBIOS", ""); BootProp::instance().addOptionDesc(mSMBIOSDefaults, nil, OptionYesNo, "SMBIOSdefaults", "No"); BootProp::instance().addOptionDesc(mWake, nil, OptionYesNo, "Wake", "No"); BootProp::instance().addOptionDesc(mForceWake, nil, OptionYesNo, "ForceWake", "No"); - BootProp::instance().addOptionDesc(mWakeImage, mWakeImageText, OptionString, "WakeImage", ""); + BootProp::instance().addOptionDesc(mWakeImage, mWakeImageText, OptionFileString, "WakeImage", ""); BootProp::instance().addOptionDesc(mSystemId, mSystemIdText, OptionString, "SystemId", ""); BootProp::instance().addOptionDesc(mRestartFix, nil, OptionYesNo, "RestartFix", "Yes"); } Index: trunk/ChameleonPrefPane/Sources/PeripheralsController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/PeripheralsController.h (revision 67) +++ trunk/ChameleonPrefPane/Sources/PeripheralsController.h (revision 68) @@ -20,7 +20,7 @@ IBOutlet NSTextField* mVideoROMText; IBOutlet NSButton* mGraphicsMode; - IBOutlet NSTextField* mGraphicsModeText; + IBOutlet NSComboBox* mGraphicsModeText; IBOutlet NSButton* mGraphicsEnabler; IBOutlet NSButton* mUSBBusFix; @@ -30,6 +30,7 @@ IBOutlet NSButton* mEthernetBuiltIn; IBOutlet NSButton* mPciRoot; IBOutlet NSTextField* mPciRootText; + IBOutlet NSButton* mForceHPET; } - (IBAction) onCheckButtonChange: (NSButton*) sender; Index: trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.mm =================================================================== --- trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.mm (revision 67) +++ trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.mm (revision 68) @@ -159,6 +159,7 @@ [(NSTextField*) bod->contentID setEditable: val ? true : false]; } break; + case OptionFileString: case OptionString: { int val = (s.length()>0 ? 1 : 0 ); @@ -269,6 +270,7 @@ } break; case OptionKernel1: + case OptionFileString: case OptionString: // Avoid populating bootConfig with unnecessary options: if (val == 0 && bod->Type!=OptionKernel1) @@ -327,9 +329,15 @@ switch (bod->Type) { case OptionKernel: case OptionKernel1: + case OptionFileString: case OptionString: [(NSTextField*) bod->contentID setEnabled: state ? true : false]; [(NSTextField*) bod->contentID setEditable: state ? true : false]; + if (state && bod->Type==OptionFileString) + { + NSString* f = [self selectAnyFile ]; + if (f) [(NSTextField*) bod->contentID setStringValue: f]; + } break; default: break; @@ -354,4 +362,39 @@ return (status == 0) ? true : false; } + +- (NSString*) selectPlistFile:(NSString*) name +{ + return [self selectFileWithFileTypes: @"/" withName: name + withTypes: [NSArray arrayWithObjects: @"plist", nil] ]; +} + +- (NSString*) selectAnyFile +{ + return [self selectFileWithFileTypes: @"/" withName: nil withTypes:nil]; +} + +- (NSString*) selectFileWithFileTypes:(NSString*) dir withName: (NSString*) name withTypes:(NSArray*) fileTypes +{ + int result; + NSOpenPanel *oPanel = [NSOpenPanel openPanel]; + [oPanel setAllowsMultipleSelection:NO]; + [oPanel setCanChooseFiles:YES]; + [oPanel setCanChooseDirectories:NO]; + [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"AppleShowAllFiles"]; + + result = [oPanel runModalForDirectory: dir file: name types:fileTypes]; + if (result == NSOKButton) + { + NSArray *filesToOpen = [oPanel filenames]; + int count = [filesToOpen count]; + if(count>0) + { + NSString *aFile = [filesToOpen objectAtIndex:0]; + return aFile; + + } + } + return nil; +} @end Index: trunk/ChameleonPrefPane/Sources/BootFlagsController.h =================================================================== --- trunk/ChameleonPrefPane/Sources/BootFlagsController.h (revision 67) +++ trunk/ChameleonPrefPane/Sources/BootFlagsController.h (revision 68) @@ -29,6 +29,8 @@ IBOutlet NSButton* mRescanPrompt; IBOutlet NSButton* mRescanSingleDrive; IBOutlet NSButton* mUseGUI; + IBOutlet NSButton* mTheme; + IBOutlet NSComboBox* mThemeText; } - (IBAction) onCheckButtonChange: (NSButton*) sender; Index: trunk/ChameleonPrefPane/CHANGES =================================================================== --- trunk/ChameleonPrefPane/CHANGES (revision 67) +++ trunk/ChameleonPrefPane/CHANGES (revision 68) @@ -1,3 +1,7 @@ +- Added a new option type (OptionFileString) that features an open dialog box to open files +- Added few Combo boxes to simplify text inputs +- Added Missing ForceHPET option and Theme options +- Added a new SMBIOS panel only opening a file (in construction) - Added new EFI Injection panel - Added PciRoot, GUI boot options - Added scrax to credits: thx for testing the Chameleon PrefPane! Index: trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj =================================================================== --- trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 67) +++ trunk/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 68) @@ -85,7 +85,7 @@ 019930FD110A0E6F003B056E /* PeripheralsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PeripheralsController.mm; path = Sources/PeripheralsController.mm; sourceTree = ""; }; 01993113110A0EB9003B056E /* AdvancedSetupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AdvancedSetupController.h; path = Sources/AdvancedSetupController.h; sourceTree = ""; }; 01993114110A0EB9003B056E /* AdvancedSetupController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AdvancedSetupController.mm; path = Sources/AdvancedSetupController.mm; sourceTree = ""; }; - 01993198110A2C61003B056E /* string_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = Sources/string_util.h; sourceTree = SOURCE_ROOT; }; + 01993198110A2C61003B056E /* string_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = Sources/string_util.h; sourceTree = ""; }; 019931DB110A37FA003B056E /* PreferencesControllerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PreferencesControllerBase.h; path = Sources/PreferencesControllerBase.h; sourceTree = ""; }; 019931DC110A37FA003B056E /* PreferencesControllerBase.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PreferencesControllerBase.mm; path = Sources/PreferencesControllerBase.mm; sourceTree = ""; }; 01993565110AA9FA003B056E /* ChameleonPropertyList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChameleonPropertyList.h; path = Sources/ChameleonPropertyList.h; sourceTree = ""; }; @@ -138,6 +138,58 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 01E314A9110FF91C0058F210 /* Controllers */ = { + isa = PBXGroup; + children = ( + 01D5DBDF110DA3CD00AAE2C3 /* GroupControllerProtocol.h */, + 019931DB110A37FA003B056E /* PreferencesControllerBase.h */, + 019931DC110A37FA003B056E /* PreferencesControllerBase.mm */, + 019930DF110A0CB4003B056E /* BootSetupController.h */, + 019930E0110A0CB4003B056E /* BootSetupController.mm */, + 019930E6110A0D80003B056E /* BootFlagsController.h */, + 019930E7110A0D80003B056E /* BootFlagsController.mm */, + 019930FC110A0E6F003B056E /* PeripheralsController.h */, + 019930FD110A0E6F003B056E /* PeripheralsController.mm */, + 01993113110A0EB9003B056E /* AdvancedSetupController.h */, + 01993114110A0EB9003B056E /* AdvancedSetupController.mm */, + 013F67EC110F970D0095EC8F /* EfiInjectController.h */, + 013F67ED110F970D0095EC8F /* EfiInjectController.mm */, + 013F67F2110F97580095EC8F /* SmbiosController.h */, + 013F67F3110F97580095EC8F /* SmbiosController.mm */, + ); + name = Controllers; + sourceTree = ""; + }; + 01E314AA110FF9430058F210 /* GUI */ = { + isa = PBXGroup; + children = ( + 01E314A9110FF91C0058F210 /* Controllers */, + 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */, + 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */, + 01001001110EBB2A00221234 /* CustomTableView.h */, + 01001002110EBB2A00221234 /* CustomTableView.mm */, + ); + name = GUI; + sourceTree = ""; + }; + 01E314AB110FF95C0058F210 /* Utilities */ = { + isa = PBXGroup; + children = ( + 01D5D9C5110D723200AAE2C3 /* file_util.h */, + 01993198110A2C61003B056E /* string_util.h */, + 01AF5E68110C1C6800816AA8 /* string_util.cpp */, + 01B0E8111108B85A00ACF21B /* ShellProcess.h */, + 01B0E8101108B85A00ACF21B /* ShellProcess.cpp */, + 01B0E8131108B85A00ACF21B /* PropertyList.h */, + 01B0E8121108B85A00ACF21B /* PropertyList.cpp */, + 01993565110AA9FA003B056E /* ChameleonPropertyList.h */, + 01993566110AA9FA003B056E /* ChameleonPropertyList.cpp */, + 01AF5E6B110C1C9C00816AA8 /* KernOptionsParser.h */, + 01AF5E6A110C1C9C00816AA8 /* KernOptionsParser.cpp */, + ); + name = Utilities; + sourceTree = ""; + }; 089C166AFE841209C02AAC07 /* StartupPrefPane */ = { isa = PBXGroup; children = ( @@ -182,36 +234,8 @@ 08FB77AFFE84173DC02AAC07 /* Classes */ = { isa = PBXGroup; children = ( - 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */, - 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */, - 01D5DBDF110DA3CD00AAE2C3 /* GroupControllerProtocol.h */, - 019931DB110A37FA003B056E /* PreferencesControllerBase.h */, - 019931DC110A37FA003B056E /* PreferencesControllerBase.mm */, - 019930DF110A0CB4003B056E /* BootSetupController.h */, - 019930E0110A0CB4003B056E /* BootSetupController.mm */, - 019930E6110A0D80003B056E /* BootFlagsController.h */, - 019930E7110A0D80003B056E /* BootFlagsController.mm */, - 019930FC110A0E6F003B056E /* PeripheralsController.h */, - 019930FD110A0E6F003B056E /* PeripheralsController.mm */, - 01993113110A0EB9003B056E /* AdvancedSetupController.h */, - 01993114110A0EB9003B056E /* AdvancedSetupController.mm */, - 013F67EC110F970D0095EC8F /* EfiInjectController.h */, - 013F67ED110F970D0095EC8F /* EfiInjectController.mm */, - 013F67F2110F97580095EC8F /* SmbiosController.h */, - 013F67F3110F97580095EC8F /* SmbiosController.mm */, - 01001001110EBB2A00221234 /* CustomTableView.h */, - 01001002110EBB2A00221234 /* CustomTableView.mm */, - 01D5D9C5110D723200AAE2C3 /* file_util.h */, - 01993198110A2C61003B056E /* string_util.h */, - 01AF5E68110C1C6800816AA8 /* string_util.cpp */, - 01B0E8111108B85A00ACF21B /* ShellProcess.h */, - 01B0E8101108B85A00ACF21B /* ShellProcess.cpp */, - 01B0E8131108B85A00ACF21B /* PropertyList.h */, - 01B0E8121108B85A00ACF21B /* PropertyList.cpp */, - 01993565110AA9FA003B056E /* ChameleonPropertyList.h */, - 01993566110AA9FA003B056E /* ChameleonPropertyList.cpp */, - 01AF5E6B110C1C9C00816AA8 /* KernOptionsParser.h */, - 01AF5E6A110C1C9C00816AA8 /* KernOptionsParser.cpp */, + 01E314AA110FF9430058F210 /* GUI */, + 01E314AB110FF95C0058F210 /* Utilities */, ); name = Classes; sourceTree = ""; Index: trunk/ChameleonPrefPane/bin/OSX105/Chameleon.zip =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/ChameleonPrefPane/bin/OSX106/Chameleon.zip =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/ChameleonPrefPane/bin/version =================================================================== --- trunk/ChameleonPrefPane/bin/version (revision 67) +++ trunk/ChameleonPrefPane/bin/version (revision 68) @@ -1 +1 @@ -2.0.b7 +2.0.b8 Index: trunk/ChameleonPrefPane/Resources/Chameleon.icns =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: trunk/ChameleonPrefPane/English.lproj/Chameleon.xib =================================================================== --- trunk/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 67) +++ trunk/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 68) @@ -12,7 +12,7 @@ YES - + YES @@ -617,7 +617,7 @@ 3 2 - + 6 System gridColor @@ -1047,7 +1047,7 @@ 12 - {{152, 24}, {422, 22}} + {{152, 26}, {456, 21}} 2 YES @@ -1055,7 +1055,11 @@ 611450433 272630784 - + + LucidaGrande + 12 + 16 + YES @@ -1117,7 +1121,7 @@ 12 - {{21, 73}, {116, 23}} + {{21, 102}, {116, 23}} YES @@ -1139,7 +1143,7 @@ 12 - {{312, 73}, {170, 23}} + {{312, 102}, {170, 23}} YES @@ -1161,7 +1165,7 @@ 12 - {{312, 41}, {133, 23}} + {{312, 70}, {133, 23}} YES @@ -1183,7 +1187,7 @@ 12 - {{21, 41}, {92, 23}} + {{21, 70}, {92, 23}} YES @@ -1202,27 +1206,10 @@ 25 - - - 12 - {{143, 41}, {33, 22}} - - YES - - -1536033215 - 272630784 - - - - YES - - - - 12 - {{21, 12}, {100, 23}} + {{21, 41}, {100, 23}} YES @@ -1244,7 +1231,7 @@ 12 - {{145, 12}, {125, 23}} + {{141, 41}, {125, 23}} YES @@ -1266,7 +1253,7 @@ 12 - {{312, 12}, {59, 23}} + {{312, 41}, {59, 23}} YES @@ -1288,7 +1275,7 @@ 268 - {{141, 75}, {109, 18}} + {{141, 104}, {109, 18}} YES @@ -1310,7 +1297,7 @@ 12 - {{410, 12}, {72, 23}} + {{410, 41}, {72, 23}} YES @@ -1329,12 +1316,205 @@ 25 + + + 268 + {{143, 68}, {46, 26}} + + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + + + + 274 + {13, 210} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + + + + + + 12 + {{21, 12}, {116, 23}} + + YES + + 67239424 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{143, 12}, {134, 26}} + + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 210} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + + + - {{1, 1}, {510, 115}} + {{1, 1}, {510, 144}} - {{66, 118}, {512, 131}} + {{66, 100}, {512, 160}} {0, 0} @@ -1504,7 +1684,7 @@ 12 - {{16, 14}, {116, 23}} + {{16, 13}, {116, 23}} YES @@ -1523,27 +1703,10 @@ 25 - - - 12 - {{138, 14}, {151, 22}} - - YES - - -1536033215 - 272630784 - - - - YES - - - - 268 - {{316, 13}, {134, 23}} + {{316, 42}, {134, 23}} YES @@ -1565,7 +1728,7 @@ 268 - {{240, 42}, {72, 23}} + {{541, 42}, {59, 23}} YES @@ -1587,7 +1750,7 @@ 268 - {{420, 42}, {178, 22}} + {{420, 12}, {178, 22}} YES @@ -1626,7 +1789,7 @@ 268 - {{316, 44}, {98, 18}} + {{316, 15}, {98, 18}} YES @@ -1645,6 +1808,93 @@ 25 + + + 268 + {{138, 11}, {175, 26}} + + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + YES + + YES + 800x600x32 + 1024x768x32 + 1280x800x32 + 1280x1024x32 + 1440x900x32 + 1680x1050x32 + 1920x1080x32 + 1920x1200x32 + + + + + 274 + {13, 168} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5OQA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + + + {{1, 1}, {610, 76}} @@ -1683,7 +1933,7 @@ 268 - {{254, 12}, {101, 23}} + {{317, 13}, {101, 23}} YES @@ -1727,7 +1977,7 @@ 268 - {{134, 12}, {103, 23}} + {{169, 13}, {103, 23}} YES @@ -1806,7 +2056,7 @@ 268 - {{165, 12}, {81, 23}} + {{169, 12}, {69, 23}} YES @@ -1828,7 +2078,7 @@ 12 - {{252, 14}, {25, 22}} + {{244, 14}, {25, 22}} YES @@ -1842,6 +2092,28 @@ + + + 268 + {{318, 12}, {93, 23}} + + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + {{1, 1}, {610, 43}} @@ -1894,7 +2166,7 @@ 12 - {{258, 75}, {50, 23}} + {{437, 48}, {50, 23}} YES @@ -1916,7 +2188,7 @@ 268 - {{16, 12}, {69, 23}} + {{14, 12}, {63, 23}} YES @@ -1938,7 +2210,7 @@ 12 - {{16, 78}, {69, 23}} + {{14, 84}, {63, 23}} YES @@ -1960,7 +2232,7 @@ 12 - {{310, 77}, {158, 22}} + {{478, 50}, {135, 22}} YES @@ -1977,7 +2249,7 @@ 268 - {{154, 12}, {42, 23}} + {{162, 12}, {34, 23}} YES @@ -1999,7 +2271,7 @@ 12 - {{91, 79}, {151, 22}} + {{83, 85}, {177, 22}} YES @@ -2016,7 +2288,7 @@ 268 - {{160, 47}, {52, 18}} + {{162, 51}, {52, 18}} YES @@ -2038,7 +2310,7 @@ 268 - {{258, 43}, {74, 23}} + {{297, 48}, {74, 23}} YES @@ -2060,7 +2332,7 @@ 268 - {{258, 12}, {79, 23}} + {{273, 86}, {79, 18}} YES @@ -2079,35 +2351,44 @@ 25 - + 268 - {{91, 48}, {57, 22}} + {{14, 48}, {63, 23}} YES - - -1536033215 - 272630784 - + + 67239424 + 0 + arch - - YES - - + + 1211912703 + 2 + + + + + 200 + 25 - + 268 - {{16, 45}, {69, 23}} + {{437, 15}, {157, 18}} YES - + 67239424 0 - arch - - + Disable kext blacklist + + LucidaGrande + 13 + 16 + + 1211912703 2 @@ -2118,149 +2399,461 @@ 25 - + - 268 - {{91, 13}, {50, 22}} + 12 + {{353, 86}, {260, 19}} YES - - -1536033215 + + 611450433 272630784 - - + + LucidaGrande + 11 + 16 + + YES - + 268 - {{198, 14}, {44, 22}} + {{297, 15}, {90, 18}} YES - - 611450433 + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{83, 46}, {76, 26}} + + YES + + 343014976 272630784 - + YES - + + 5 + YES + + YES + X86_64 + i386 + + + + + 274 + {13, 42} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + - + 268 - {{218, 45}, {24, 22}} + {{377, 46}, {54, 26}} YES - - -1536033215 + + 343014976 272630784 - + YES - + + 5 + YES + + YES + 20 + 21 + + + + + 274 + {13, 42} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + - + 268 - {{353, 45}, {30, 22}} + {{227, 46}, {59, 26}} YES - - 611450433 + + 343014976 272630784 - + YES - + + 5 + YES + + YES + 1 + 2 + 4 + + + + + 274 + {13, 63} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + - + 268 - {{474, 45}, {136, 18}} + {{83, 11}, {76, 23}} YES - - 67239424 - 0 - Disable kext blacklist - + + 343014976 + 272630784 + + LucidaGrande - 11 + 10 16 - - 1211912703 - 2 - - - - - 200 - 25 + + YES + + + 5 + YES + + YES + 0x12A + 0x144 + 0x14E + + + + + 274 + {13, 51} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + - + - 12 - {{353, 18}, {255, 19}} + 268 + {{200, 10}, {86, 26}} YES - - 611450433 + + 343014976 272630784 - - + + YES - - - - - - 268 - {{474, 78}, {136, 18}} - - YES - - 67239424 - 0 - Restart Fix - - LucidaGrande - 12 - 16 + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF - - 1211912703 - 2 - - - - - 200 - 25 + + + + 274 + {13, 34} + + + YES + + YES + + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + - {{1, 1}, {626, 111}} + {{1, 1}, {626, 117}} - {{6, 140}, {628, 127}} + {{6, 134}, {628, 133}} {0, 0} @@ -2356,7 +2949,7 @@ - {{6, 74}, {304, 62}} + {{7, 68}, {304, 62}} {0, 0} @@ -2452,7 +3045,7 @@ - {{312, 74}, {322, 62}} + {{313, 68}, {322, 62}} {0, 0} @@ -2570,7 +3163,7 @@ - {{6, 11}, {628, 59}} + {{7, 5}, {628, 59}} {0, 0} @@ -2617,7 +3210,7 @@ 268 - {{16, 215}, {132, 18}} + {{16, 209}, {132, 18}} YES @@ -2636,18 +3229,18 @@ 25 - + 268 - {{422, 210}, {141, 27}} + {{430, 205}, {141, 27}} YES - + -2080244224 134217728 Current Gfx Injection - + -2033434369 162 @@ -2656,28 +3249,28 @@ 75 - + 268 YES - - + + 2304 YES - - + + 268 {536, 506} - + YES - + -1805517311 272629760 - + YES @@ -2685,47 +3278,49 @@ {{1, 1}, {536, 173}} - - - + {{0, 175}, {536, 173}} + + + 4 - - + + 256 {{537, 1}, {15, 173}} - + YES - + _doScroller: + 0.52552552552552556 0.34189723320158105 - - + + -2147483392 {{-100, -100}, {536, 15}} - + 1 - + _doScroller: 0.50602412223815918 - {{10, 22}, {553, 175}} + {{18, 17}, {553, 175}} - + 82 - - - + + + - {{1, 1}, {572, 246}} + {{1, 1}, {589, 246}} - {{34, 5}, {574, 262}} + {{26, 5}, {591, 262}} {0, 0} @@ -2752,25 +3347,25 @@ - + Item 6 - + 256 YES - - + + 268 - {{484, 9}, {145, 32}} - + {{479, 9}, {155, 32}} + YES - + 67239424 134217728 - Edit smbios.plist + Open smbios.plist - + -2038284033 129 @@ -2779,18 +3374,18 @@ 25 - - + + 268 {{145, 137}, {404, 17}} - + YES - + 68288064 272630784 - In construction. More options In Future Developments... + In construction. More options In Future Versions... - + @@ -2859,7 +3454,7 @@ {1.79769e+308, 1.79769e+308} - + 256 YES @@ -2868,7 +3463,6 @@ 268 {{245, 218}, {38, 17}} - YES 68288064 @@ -2888,7 +3482,6 @@ 268 {{182, 218}, {52, 17}} - YES 68288064 @@ -2905,7 +3498,6 @@ 268 {{46, 20}, {373, 183}} - YES -1805517311 @@ -2925,8 +3517,6 @@ {464, 255} - - {{0, 0}, {1920, 1058}} {1.79769e+308, 1.79769e+308} @@ -2949,7 +3539,7 @@ EfiInjectController - + SmbiosController @@ -3142,14 +3732,6 @@ - mTimeOutText - - - - 620 - - - mSingleUser @@ -3246,14 +3828,6 @@ - mGraphicsModeText - - - - 634 - - - mGraphicsEnabler @@ -3366,14 +3940,6 @@ - mArchText - - - - 649 - - - mCPU @@ -3382,14 +3948,6 @@ - mCPUText - - - - 651 - - - mBusRatio @@ -3398,14 +3956,6 @@ - mBusRatioText - - - - 653 - - - mDebug @@ -3414,14 +3964,6 @@ - mDebugText - - - - 655 - - - mIO @@ -3430,14 +3972,6 @@ - mIOText - - - - 657 - - - mDisableKextsBlacklisting @@ -3550,14 +4084,6 @@ - onTextFiedChange: - - - - 672 - - - onCheckButtonChange: @@ -3822,46 +4348,6 @@ - onTextFiedChange: - - - - 711 - - - - onTextFiedChange: - - - - 712 - - - - onTextFiedChange: - - - - 713 - - - - onTextFiedChange: - - - - 714 - - - - onTextFiedChange: - - - - 715 - - - onCheckButtonChange: @@ -4022,14 +4508,6 @@ - onTextFiedChange: - - - - 737 - - - onCheckButtonChange: @@ -4176,7 +4654,7 @@ mCurrentGfxInjection - + 796 @@ -4184,7 +4662,7 @@ onCheckButtonChange: - + 797 @@ -4192,7 +4670,7 @@ mEfiInjectText - + 824 @@ -4200,26 +4678,186 @@ onTextFiedChange: - + 825 mEditSmbios - - + + 835 onCheckButtonChange: - - + + 836 + + + mGraphicsModeText + + + + 841 + + + + onTextFiedChange: + + + + 842 + + + + mArchText + + + + 845 + + + + onTextFiedChange: + + + + 846 + + + + mBusRatioText + + + + 849 + + + + onTextFiedChange: + + + + 850 + + + + mCPUText + + + + 853 + + + + onTextFiedChange: + + + + 854 + + + + mTimeOutText + + + + 857 + + + + onTextFiedChange: + + + + 858 + + + + onCheckButtonChange: + + + + 861 + + + + mForceHPET + + + + 862 + + + + mDebugText + + + + 865 + + + + onTextFiedChange: + + + + 866 + + + + onCheckButtonChange: + + + + 871 + + + + onTextFiedChange: + + + + 874 + + + + mThemeText + + + + 875 + + + + mTheme + + + + 876 + + + + mIOText + + + + 877 + + + + onTextFiedChange: + + + + 878 + @@ -4291,7 +4929,7 @@ - + @@ -4516,8 +5154,8 @@ YES + - @@ -4526,16 +5164,18 @@ YES - - + + + + @@ -4594,20 +5234,6 @@ - 306 - - - YES - - - - - - 309 - - - - 313 @@ -4763,9 +5389,9 @@ YES - + @@ -4774,14 +5400,14 @@ YES - + + - - - + + @@ -4814,20 +5440,6 @@ - 451 - - - YES - - - - - - 454 - - - - 457 @@ -4884,9 +5496,9 @@ YES + - @@ -4909,24 +5521,24 @@ YES - - - - - - + + + + + + - + + + - - - - - + + + @@ -5043,20 +5655,6 @@ - 498 - - - YES - - - - - - 501 - - - - 497 @@ -5071,62 +5669,6 @@ - 512 - - - YES - - - - - - 513 - - - YES - - - - - - 514 - - - YES - - - - - - 515 - - - YES - - - - - - 516 - - - - - 517 - - - - - 518 - - - - - 519 - - - - 523 @@ -5184,8 +5726,8 @@ YES + - @@ -5196,6 +5738,7 @@ YES + @@ -5779,9 +6322,9 @@ YES + + - - @@ -5801,105 +6344,245 @@ 794 - + YES - + 795 - - + + 820 - + YES - - - + + + 821 - - + + 822 - - + + 818 - + YES - + - + 819 - - + + 828 - + YES - + 829 - + YES - - + + - + 830 - + YES - + - + 831 - - + + 832 - + YES - + - + 833 - - + + 834 - + + + 839 + + + YES + + + + + + 840 + + + + + 843 + + + YES + + + + + + 844 + + + + + 847 + + + YES + + + + + + 848 + + + + + 851 + + + YES + + + + + + 852 + + + + + 855 + + + YES + + + + + + 856 + + + + + 859 + + + YES + + + + + + 860 + + + + + 863 + + + YES + + + + + + 864 + + + + + 867 + + + YES + + + + + + 868 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + @@ -5961,9 +6644,6 @@ 301.IBPluginDependency 302.IBAttributePlaceholdersKey 302.IBPluginDependency - 306.IBAttributePlaceholdersKey - 306.IBPluginDependency - 309.IBPluginDependency 313.IBPluginDependency 314.IBPluginDependency 315.IBPluginDependency @@ -5997,12 +6677,9 @@ 442.IBPluginDependency 450.IBAttributePlaceholdersKey 450.IBPluginDependency - 451.IBAttributePlaceholdersKey - 451.IBPluginDependency 452.IBAttributePlaceholdersKey 452.IBPluginDependency 453.IBPluginDependency - 454.IBPluginDependency 455.IBPluginDependency 456.IBPluginDependency 457.IBAttributePlaceholdersKey @@ -6037,9 +6714,6 @@ 496.IBPluginDependency 497.IBAttributePlaceholdersKey 497.IBPluginDependency - 498.IBAttributePlaceholdersKey - 498.IBPluginDependency - 501.IBPluginDependency 502.IBPluginDependency 503.IBPluginDependency 504.IBPluginDependency @@ -6050,18 +6724,6 @@ 509.IBPluginDependency 510.IBPluginDependency 511.IBPluginDependency - 512.IBAttributePlaceholdersKey - 512.IBPluginDependency - 513.IBAttributePlaceholdersKey - 513.IBPluginDependency - 514.IBAttributePlaceholdersKey - 514.IBPluginDependency - 515.IBAttributePlaceholdersKey - 515.IBPluginDependency - 516.IBPluginDependency - 517.IBPluginDependency - 518.IBPluginDependency - 519.IBPluginDependency 523.IBPluginDependency 527.IBAttributePlaceholdersKey 527.IBPluginDependency @@ -6188,11 +6850,37 @@ 795.IBPluginDependency 818.IBPluginDependency 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency 830.IBPluginDependency 831.IBPluginDependency 832.IBPluginDependency 833.IBPluginDependency - 834.IBPluginDependency + 839.IBPluginDependency + 840.IBPluginDependency + 843.IBPluginDependency + 844.IBPluginDependency + 847.IBPluginDependency + 848.IBPluginDependency + 851.IBPluginDependency + 852.IBPluginDependency + 855.IBPluginDependency + 856.IBPluginDependency + 859.IBAttributePlaceholdersKey + 859.IBPluginDependency + 860.IBPluginDependency + 863.IBPluginDependency + 864.IBPluginDependency + 867.IBPluginDependency + 868.IBPluginDependency + 869.IBAttributePlaceholdersKey + 869.IBPluginDependency + 870.IBPluginDependency + 872.IBPluginDependency + 873.IBPluginDependency 99.IBAttributePlaceholdersKey 99.IBPluginDependency @@ -6218,9 +6906,9 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - {{413, 83}, {668, 368}} + {{141, 79}, {668, 368}} com.apple.InterfaceBuilder.CocoaPlugin - {{413, 83}, {668, 368}} + {{141, 79}, {668, 368}} {224.664, 10} @@ -6323,14 +7011,6 @@ com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Sets the Time Out in seconds before default partition boots if no key is pressed - - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -6338,8 +7018,6 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip @@ -6419,15 +7097,6 @@ ToolTip ToolTip - - Graphics Mode="WIDTHxHEIGHTxDEPTH@FREQ). Works only if you have a VESA 3.0 compliant card (default= No custom resolution is selected) - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip Show boot banner in GUI mode (default=Yes) @@ -6436,7 +7105,6 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip @@ -6451,7 +7119,7 @@ ToolTip - Inject VBIOS to device-properties (default=No) + NVidia only. Inject Video BIOS to from a file in /Extra/ named [vendorid][devid].rom where vendorid and devid are 4 digits hexadecimal values(default=No) com.apple.InterfaceBuilder.CocoaPlugin @@ -6560,14 +7228,6 @@ com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Kernel architecture boot mode (i386 | x86_64 | ppc). On intel platforms, select either i386 or X86_64 - - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -6579,52 +7239,10 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - - Enable kernel debug mode flags (i.e 0x0144). - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - o filtering mask associated with the debug mode. Warning: some io debug modes can crash your boot. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Force physical cpus count (all cores in all cpus), automatically detected by default. Use this override only if autodetection doesn't work for your cpu. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Force busratio multiplier, such as CPUFreq=FSB freq x busratio (automatically detected by default) - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) @@ -6802,7 +7420,7 @@ ToolTip - Define the GFX card video ROM file that should be loaded at boot + NVidia only. (obsolete) Define the GFX card video ROM file that should be loaded at boot. Superseded by VBIOS com.apple.InterfaceBuilder.CocoaPlugin @@ -6940,11 +7558,10 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - ToolTip - - ToolTip - - Graphics Mode="WIDTHxHEIGHTxDEPTH@FREQ). Works only if you have a VESA 3.0 compliant card (default= No custom resolution is selected) + YES + + + YES com.apple.InterfaceBuilder.CocoaPlugin @@ -6981,10 +7598,50 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip + + Force HPET To Enable in BIOS. Use that options if your bios doesn't provide HPET compatibility. Make sure you tried to fix HPET in your DSDT File before using this option + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip Click on a partition to make it the default boot partition. @@ -7008,7 +7665,7 @@ - 836 + 878 @@ -7065,22 +7722,22 @@ YES NSButton - NSTextField + NSComboBox NSButton - NSTextField + NSComboBox NSButton - NSTextField + NSComboBox NSButton NSButton NSTextField NSButton - NSTextField + NSComboBox NSButton NSTextField NSButton NSButton NSButton - NSTextField + NSComboBox NSButton NSTextField NSButton @@ -7127,6 +7784,8 @@ mRescanSingleDrive mSafeBoot mSingleUser + mTheme + mThemeText mTimeOut mTimeOutText mUseGUI @@ -7144,6 +7803,8 @@ NSButton NSButton NSButton + NSComboBox + NSButton NSTextField NSButton NSButton @@ -7348,6 +8009,7 @@ mBootBanner mEHCIacquire mEthernetBuiltIn + mForceHPET mGraphicsEnabler mGraphicsMode mGraphicsModeText @@ -7367,9 +8029,10 @@ NSButton NSButton NSButton - NSTextField NSButton + NSComboBox NSButton + NSButton NSTextField NSButton NSButton @@ -7503,6 +8166,22 @@ + NSComboBox + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSComboBox.h + + + + NSComboBoxCell + NSTextFieldCell + + IBFrameworkSource + AppKit.framework/Headers/NSComboBoxCell.h + + + NSControl NSView