Index: branches/ErmaC/ChameleonPrefPane/version.plist =================================================================== --- branches/ErmaC/ChameleonPrefPane/version.plist (revision 0) +++ branches/ErmaC/ChameleonPrefPane/version.plist (revision 396) @@ -0,0 +1,16 @@ + + + + + BuildVersion + 1 + CFBundleShortVersionString + 1.1 + CFBundleVersion + 1.1 + ProjectName + PreferencePaneTemplate + SourceVersion + 270000 + + Index: branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.h (revision 396) @@ -0,0 +1,15 @@ +// +// CenterTextField.h +// ChameleonPrefPane +// +// Created by Rekursor on 11/11/11. +// + +#import + + +@interface CenteredTextFieldCell : NSTextFieldCell { + +} + +@end Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.h ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.h (revision 396) @@ -0,0 +1,146 @@ +/* + * ChameleonPropertyList.h + * ChameleonPrefPane + * + * Created by Rekursor on 1/22/10. + * + */ +#ifndef __CHBOOT_PROPERTYLIST_LIST_H +#define __CHBOOT_PROPERTYLIST_LIST_H + +#include "PropertyList.h" +#include + +//-------------------------------------------------------------------------- +// Chameleon Boot options type +//-------------------------------------------------------------------------- +enum BootOptionType +{ + 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" + +} ; + +enum PropertyKind +{ + KindPreferencesFile, + KindBootConfigFile, + KindSmbiosConfigFile +}; + +struct BootOptionDesc; + +typedef bool (*FieldValidator) (BootOptionDesc* bod); + +//-------------------------------------------------------------------------- +// Boot Option descriptor : +// used by all derived class to permit parameters handling automation ... +//-------------------------------------------------------------------------- +struct BootOptionDesc +{ + BootOptionDesc(void* i, void * c, BootOptionType t, const char* n, const char* d, + FieldValidator validator=NULL, PropertyKind kind=KindBootConfigFile) : + ID(i), contentID(c), Type(t), Name(n), Default(d), + Validator(validator), Kind(kind) + { + + } + void* ID; // the corresponding button or textfield in the interface + void* contentID; // the corresponding content ID (i.e: the string content for text fields) + BootOptionType Type; + const char * Name; + FieldValidator Validator; + PropertyKind Kind; + const char * Default; + +} ; + +//-------------------------------------------------------------------------- + +/** + * Specialization of PropertyList with Chameleon Boot Config, fast id key to desc search features + */ +class ChameleonPropertyList : public PropertyList +{ +protected: + ChameleonPropertyList() { } +public: + virtual ~ChameleonPropertyList() { deleteOptionDesc(); } + + // id to map BootOptionDesc handling + void addOptionDesc(void * ID, void* cID, BootOptionType t, const char * szName, const char* szDefault, + FieldValidator validator=NULL, PropertyKind kind=KindBootConfigFile) + + { + if (ID) _idToDescDict[ID] = + new BootOptionDesc(ID, cID, t, szName? szName : "", szDefault ? szDefault : ""); + if (cID) _contentIdToDescDict[cID] = + new BootOptionDesc(ID, cID, t, szName? szName : "", szDefault ? szDefault : ""); + } + + // find the desc corresponding to id: + const BootOptionDesc* findOption(void *ID) const + { + std::map::const_iterator bod; + if (!ID || (bod=_idToDescDict.find(ID))==_idToDescDict.end()) return NULL; + return bod->second; + } + + // find the option bod corresponding to contentID + const BootOptionDesc* findOptionContent(void *cID) const + { + std::map::const_iterator bod; + if (!cID || (bod=_contentIdToDescDict.find(cID))==_contentIdToDescDict.end()) return NULL; + return bod->second; + } + + // opaque enumeration for the map + const BootOptionDesc* firstOption() + { + _bod=_idToDescDict.begin(); + if (_bod!= _idToDescDict.end()) return _bod->second; else return NULL; + } + + const BootOptionDesc* nextOption() + { + if(_bod++ ==_idToDescDict.end()) return NULL; + if (_bod != _idToDescDict.end()) return _bod->second; else return NULL; + } + + + // remove all elements in dict, calls deleteOptionsDesc() + void clearOptionDesc(); + +protected: + void deleteOptionDesc(); + + // dictionary for id -> desc and contentID -> desc association type + std::map _idToDescDict, _contentIdToDescDict; + std::map::const_iterator _bod; +}; + +//-------------------------------------------------------------------------- +// Concrete definition of Chameleon property lists +// implements the Singleton DP +//-------------------------------------------------------------------------- + +class BootProp : public ChameleonPropertyList { +public: + static BootProp& instance() + { + return _instance ? *_instance : *(_instance=new BootProp()); + } + +protected: + BootProp() : ChameleonPropertyList() {} + +private: + static BootProp* _instance; +}; + + +#endif \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.mm (revision 396) @@ -0,0 +1,338 @@ +// +// StartupPrefPanePref.mm +// +// Created by Rekursor on 1/16/10. +// + +#import "ChameleonPrefPane.h" +#import "BootSetupController.h" +#import "BootFlagsController.h" +#import "PeripheralsController.h" +#import "AdvancedSetupController.h" +#import "TableViewsController.h" +#import "PartitionInfoManager.h" +#import "ShellProcess.h" +#import "ChameleonPropertyList.h" +#include + +//-------------------------------------------------------------------------- +// Constants +//-------------------------------------------------------------------------- +static const char * const szBootPaths[]= { + "/", + "/Extra/", + "/Volumes/EFI/Extra/", + "/Volumes/Cham/Extra/", + "/Volumes/BootLoaders/Extra/", + "/Volumes/RX0/Extra/", + "/Library/Preferences/SystemConfiguration/", + NULL +}; + +static const char* const szPropFileName = "org.chameleon.Boot.plist"; +static const int CurrentPreferencesFileVersion = 0x02; // for future back compatibility + +// TODO move table views handling code to a dedicated controller + +//-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- +// Static file variables +//-------------------------------------------------------------------------- +static std::string sCurrentDefaultPartition; + +static ChameleonPrefPane * _prefPaneInstance = NULL; + + +//-------------------------------------------------------------------------- + +@implementation ChameleonPrefPane + ++ (ChameleonPrefPane *)instance { return(_prefPaneInstance);} + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + _prefPaneInstance = self; + + + + + // Retrieve the org.chameleon.prefPane.plist config + return self; +} +- (void)dealloc +{ + // release the colors + [mOptionsDict release]; + [mPartitionsDict release]; + + [super dealloc]; +} + +- (NSMutableDictionary*) preferencesFile { return mOptionsDict; } +- (NSMutableDictionary*) preferencesParts { return mPartitionsDict; } + +//-------------------------------------------------------------------------- +-(bool) savePreferences: (NSDictionary*) dict +{ + + if(dict==nil) return false; + + AuthorizationRef auth = [self isUnlocked] ? [[authView authorization] authorizationRef] : NULL; + if (!auth) return false; + + NSString* tmpPropName = @"/tmp/chamPrefPane.plist"; + BOOL ret = [dict writeToFile:tmpPropName atomically:YES]; + if (!ret) return false; + NSString* args = [NSString stringWithFormat:@"%@ %@", tmpPropName, kPreferencesFilePath]; + const char * cArgs = [args UTF8String]; + ret = executePrivilegedCmd(auth, "/bin/cp", cArgs , NULL); + return ret; +} + +//-------------------------------------------------------------------------- +// SFAuthorization implementation +//-------------------------------------------------------------------------- + +// SFAuthorization delegates +- (void)authorizationViewDidAuthorize:(SFAuthorizationView *)view { + [self selectDefaultPartition]; + [self refreshLockStates]; + +} + +//-------------------------------------------------------------------------- +- (void)authorizationViewDidDeauthorize:(SFAuthorizationView *)view { + [self refreshLockStates]; +} + +//-------------------------------------------------------------------------- +// Setup security for changing boot options +-(void) initAuthorization +{ + AuthorizationItem items = {kAuthorizationRightExecute, 0, NULL, 0}; + AuthorizationRights rights = {1, &items}; + + [authView setAuthorizationRights:&rights]; + authView.delegate = self; + [authView updateStatus:nil]; +} +//-------------------------------------------------------------------------- +- ( AuthorizationRef) auth +{ + return [self isUnlocked] ? [[authView authorization] authorizationRef] : NULL; + +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + [[TableViewsController instance]->mPartitionsTable setEnabled:[self isUnlocked]]; + [mStatusText setEnabled:[self isUnlocked]]; + + // Refresh other panels + [PreferencesControllerBase doForEachGroup: RefreshLockStates withOption: nil]; +} + + +//-------------------------------------------------------------------------- +- (bool)isUnlocked +{ + return [authView authorizationState] == SFAuthorizationViewUnlockedState; +} + +//-------------------------------------------------------------------------- +/** When called here, all outlets references are initialized */ +- (void)awakeFromNib +{ // called more than once, we only need one resource init + static bool ft=true; + if(ft) + { + ft=false; + [self loadPreferences]; + [self initBootConfig]; + } +} + +//-------------------------------------------------------------------------- +- (void) loadPreferences +{ + // test with preferences file already created and when no prefs exists + + id oldGlobalPreferences = [ [NSDictionary dictionaryWithContentsOfFile: + kPreferencesFilePath ] retain]; + + mPartitionsDict = [[NSMutableDictionary alloc] init]; + [mPartitionsDict retain]; + + // Initialize bootConfig desc dict + [PreferencesControllerBase doForEachGroup: AddOptionsDesc withOption: nil]; + + if (oldGlobalPreferences!=nil) + { + mPreferenceFileVersion= [[oldGlobalPreferences objectForKey: keyPreferencesFileVersion] intValue ]; + [PreferencesControllerBase doForEachGroup: LoadPreferencesOptions withOption: oldGlobalPreferences]; + [mPartitionsDict addEntriesFromDictionary: [oldGlobalPreferences objectForKey: keyPartitionsList] ]; + } + else + { // Create a preference plist file with Defaults values + oldGlobalPreferences = [[NSMutableDictionary alloc] init]; + [PreferencesControllerBase doForEachGroup: SetDefaultValues withOption: oldGlobalPreferences]; + + // Initialize defaults + [oldGlobalPreferences setObject: [[NSNumber alloc] initWithInt: CurrentPreferencesFileVersion] + forKey: keyPreferencesFileVersion]; + [oldGlobalPreferences setObject: mPartitionsDict forKey: keyPartitionsList]; + + // Save the preferences file + [ self savePreferences:oldGlobalPreferences ]; + } + + mOptionsDict = [[NSMutableDictionary alloc] init]; + [mOptionsDict addEntriesFromDictionary:oldGlobalPreferences]; + if (mPartitionsDict!=nil) [mPartitionsDict retain]; + [oldGlobalPreferences release]; +} + +//-------------------------------------------------------------------------- +- (void) initBootConfig +{ + static bool ft=true; + + [self initAuthorization]; + + if (!BootProp::instance().isValid()) + { + std::string sPath; + CFStringRef errorString=NULL; + bool cont =true; + + id sForcedPath = [mOptionsDict valueForKey: keyForceBootConfigPath]; + const char * szForcedPath = sForcedPath!=nil ? [sForcedPath UTF8String] : NULL; + if (szForcedPath && *szForcedPath) + { + cont = !BootProp::instance().open(szForcedPath, false, [self auth]); + } + else { + for(int i=0; szBootPaths[i] && cont; i++) + { + sPath = szBootPaths[i]; + sPath += szPropFileName; + cont = !BootProp::instance().open(sPath.c_str(), false, [self auth]); + } + } + if (cont) + { + if(!ft) return; + ft=false; + [mStatusText setTextColor: [NSColor redColor] ]; + if (errorString) + [mStatusText setStringValue:[NSString stringWithFormat: @"Error while parsing org.chameleon.Boot.plist : %@", + errorString] ]; + else + [mStatusText setStringValue: @"Error while searching for org.chameleon.Boot.plist"]; + + } + else + { + [mStatusText setTextColor: [NSColor grayColor] ]; + NSString* ns = [ [NSString alloc] initWithUTF8String:BootProp::instance().propFilePath() ]; + [mStatusText setStringValue: [NSString stringWithFormat: @"bootConfig: %@", ns] ]; + BootSetupController* bsc = [BootSetupController instance]; + [bsc->mBootConfigPathText setStringValue: [[NSString alloc] initWithUTF8String: BootProp::instance().propFilePath()] ]; + [bsc->mBootExtraPathText setStringValue: [[bsc->mBootConfigPathText stringValue] stringByDeletingLastPathComponent] ]; + [bsc->mBootCdbootPathText setStringValue: [[bsc->mBootConfigPathText stringValue] stringByDeletingLastPathComponent]]; + + } + + [PartsInfoMgr resetSwapping]; + + if (BootProp::instance().isValid()) + { + // read options in the plist file + const char *s = BootProp::instance().getStringForKey(kHidePartition) ; + if (s==nil) s = ""; + [PartsInfoMgr hideParts: [NSString stringWithUTF8String: s] ]; + + s = BootProp::instance().getStringForKey(kRenamePartition); + if (s==nil) s = ""; + [PartsInfoMgr renameParts: [NSString stringWithUTF8String: s]]; + + + id val = [mOptionsDict valueForKey: keySwapHD01]; + [[BootSetupController instance]->mSwapHD01 setIntValue: [val intValue] ]; + [[BootSetupController instance] doSwapHD: [val boolValue] save: false src:0 dst:1]; + + val = [mOptionsDict valueForKey: keySwapHD02]; + [[BootSetupController instance]->mSwapHD02 setIntValue: [val intValue] ]; + [[BootSetupController instance] doSwapHD: [val boolValue] save: false src:0 dst:2]; + + // Load all boot Options into the interface components + [PreferencesControllerBase loadOptionsFromBootFile]; + [self selectDefaultPartition]; + + } + + } +} +//-------------------------------------------------------------------------- +- (void) selectDefaultPartition +{ + if(!authView) return; + + [self refreshLockStates]; + + // try to get the current default partition if any + if(BootProp::instance().isValid()) + { + const char *sdp = BootProp::instance().getStringForKey(kDefaultPartition); + sCurrentDefaultPartition = sdp ? sdp : ""; + if (sCurrentDefaultPartition.size()) + { + NSUInteger index=0; + PartitionInfoElement* p = [PartsInfoMgr partWithName:[NSString stringWithUTF8String:sCurrentDefaultPartition.c_str()] outIndex: &index]; + if (p!=nil) + { + [[TableViewsController instance ]->mPartitionsTable selectRowIndexes: [NSIndexSet indexSetWithIndex:index] byExtendingSelection:NO]; + } + } + } + +} + +//-------------------------------------------------------------------------- +// following DieBuch recommendation : using applescript and system events (thanks!): +- (IBAction)onRestart: (id)sender +{ + NSInteger n = NSRunAlertPanel(@"Restarting OS X", + @"Are you sure you want to restart your computer now ?", + @"OK", @"Cancel", nil); + if (n==1) + { + AuthorizationRef auth = [[authView authorization] authorizationRef]; + executePrivilegedCmd(auth,"/usr/bin/osascript","-e 'tell app \"System Events\" to restart'"); + } + +} +//-------------------------------------------------------------------------- +- (IBAction)onShutdown: (id)sender +{ + NSInteger n = NSRunAlertPanel(@"Shutting Down OS X", + @"Are you sure you want to shut down your computer now ?", + @"OK", @"Cancel", /*ThirdButtonHere:*/nil + /*, args for a printf-style msg go here */); + if (n==1) + { + system("/usr/bin/osascript -e 'tell app \"System Events\" to shut down'"); + } +} + +- (IBAction)onSleep: (id)sender +{ + system("/usr/bin/osascript -e 'tell app \"System Events\" to sleep'"); +} + +//-------------------------------------------------------------------------- + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/AboutController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/AboutController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/AboutController.mm (revision 396) @@ -0,0 +1,40 @@ +// +// About.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/27/10. +// + +#import "AboutController.h" + + +@implementation AboutController +- (id) init +{ + [super init]; + + bundle = [NSBundle bundleForClass:[self class]]; + sCredits = [bundle pathForResource: @"CREDITS" ofType: nil ]; + return self; +} + +- (IBAction)onAbout: (id)sender +{ + [mAboutDlg makeKeyAndOrderFront: sender]; +} + +- (NSString *)bundleVersionNumber { + NSString * sVer = [[bundle infoDictionary] valueForKey:@"CFBundleVersion"]; + NSString * info = [[NSString alloc] initWithFormat:@"Version %@", sVer ]; + return info; +} + +- (NSString *)credits +{ + NSString* s = [[NSString alloc] + initWithContentsOfFile:sCredits encoding: NSASCIIStringEncoding error: nil]; + return s ? s : @""; +} + +@end + Index: branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.cpp (revision 396) @@ -0,0 +1,52 @@ +/* + * shell_process.cpp + * + * Created by Rekursor on 1/17/2010. + * + */ + +#include "ShellProcess.h" +#include +#include +#include "string_util.h" + +//---------------------------------------------------------------- +// portable open process: +FILE * ShellProcess::open(const char *cmd, const char *mode) { + _fpt=::popen(cmd,mode); + return _fpt; +} + +//---------------------------------------------------------------- +int ShellProcess::close() { + int ret = ::pclose(_fpt); + _fpt=NULL; + return ret; +} + +//---------------------------------------------------------------- +char * ShellProcess::get_line(char * line, size_t s, const char *matching) +{ + if (_fpt==NULL || line==NULL) return NULL; + char * l = fgets(line, s, _fpt); + + if (matching==NULL || (*matching)=='\0') + return l; // we're done + + // search first line matching substring 'matching' + size_t len = strlen(line); + + for (; l!=NULL && (len >0) ;) + { + if (strstr(line, matching)) + { + return l; + } + + *line = '\0'; + l = fgets(line, s, _fpt); + len = strlen(line); + } + + return l; +} Index: branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.mm (revision 396) @@ -0,0 +1,261 @@ +// +// PartitionInfoManager.mm +// ChameleonPrefPane +// +// Created by Rekursor on 11-11-13. +// + +#import "PartitionInfoManager.h" +#include "ShellProcess.h" + +// Singleton defintion + +static NSMutableArray* sParts = nil; + +@implementation PartsInfoMgr + +-(id) init +{ + [super init]; + + return self; +} + + +static NSString *currentCompare = nil; +static BOOL isPartMatchingNameSpec(PartitionInfoElement* pe, NSUInteger idx, BOOL* stop) +{ + NSString* s = [currentCompare stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: @" \t\""]]; + + if ([ [pe hdString] isEqual:s] + || [ [pe bsdName] isEqual:s] + || [ [pe vName] isEqual:s] + || [ [pe vUUID] isEqual:s] + || [ [pe vAliasName] isEqual: s] + ) + *stop = YES; + + return *stop; +} ++(PartitionInfoElement*) partWithName: (NSString*) nameSpec +{ + return [PartsInfoMgr partWithName:nameSpec outIndex:nil]; +} +/// Retrieve the part that maches the name ++(PartitionInfoElement*) partWithName: (NSString*) nameSpec outIndex:(NSUInteger*) ind +{ + if (nameSpec==nil || [nameSpec length]==0) return nil; + currentCompare = nameSpec; + NSArray * arr = [PartsInfoMgr parts]; + NSUInteger idx = [arr indexOfObjectPassingTest: + ^(id pe, NSUInteger idx, BOOL* stop) {return isPartMatchingNameSpec(pe, idx, stop); } ]; + + PartitionInfoElement* part = nil; + + if (ind!=nil) *ind = idx; + + if (idx!= NSNotFound) + { + part = [arr objectAtIndex: idx]; + } + return part; +} + +/// Singleton definition ++(NSArray*) stringsFromPartSpec: (NSString*) partSpec withCharsFromString:(NSString*) s +{ + if (partSpec == nil || [partSpec length]==0) return nil; + NSArray *chunks = [partSpec componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: s] ]; + return chunks; +} + +/// Retrieve all the partitions ++(NSArray*) parts +{ + if (sParts==nil) + { + //[PartsInfoMgr resetSwapping]; + NSArray* partArr = [PartitionInfoElement createBSDPartitionList]; + sParts = (NSMutableArray*) [PartitionInfoElement extractInfoWithBSDNames: partArr withArray: nil]; + [partArr release]; + } + return [sParts retain]; +} + ++(NSUInteger) count +{ + return [(NSArray*)[PartsInfoMgr parts] count]; +} + ++(PartitionInfoElement*) objectAtIndex:(NSUInteger) index +{ + + PartitionInfoElement* elt = [ [[PartsInfoMgr parts] objectAtIndex:index] retain]; + + + return elt; +} + +static void hideIterateOn(NSString* partSpec, NSString*filter) +{ + for (currentCompare in [PartsInfoMgr stringsFromPartSpec:partSpec withCharsFromString: filter]) + { + PartitionInfoElement * p = (currentCompare!=nil) && [currentCompare length]>0 ? [PartsInfoMgr partWithName: currentCompare] : nil; + if (p!=nil) + { + [p setHidden: true]; + NSLog(@" Found part with name %@ : %@", currentCompare, p); + } + if ((currentCompare!=nil) && [currentCompare length]>0 ) + { + // remove them so that they dont appear in next search + NSMutableString *mut = [NSMutableString stringWithString:partSpec]; + [ mut replaceOccurrencesOfString: currentCompare withString:@"" options: NSCaseInsensitiveSearch range: NSMakeRange(0, [mut length]) ]; + partSpec = mut; + } + } +} + +static NSString *sHideSpec=nil, *sRenSpec=nil; + +/// Update partitions alias with partSpec ++(void) hideParts: (NSString*) hideSpec +{ + if (hideSpec!=nil) { + if (sHideSpec!=nil) [sHideSpec release]; + sHideSpec = [hideSpec copy]; + } + + // first prioritize strings in double quotes + if ([sHideSpec rangeOfString:@"\""].location != NSNotFound) + hideIterateOn(sHideSpec, @"\""); + hideIterateOn(sHideSpec, @"\" \t\n"); +} + + +static bool renIterateOn(NSString* partSpec, NSString*filter) +{ + NSString *first=nil, *second=nil; + + for (NSString* s in [PartsInfoMgr stringsFromPartSpec:partSpec withCharsFromString: filter]) + { + if ([s length]==0) continue; + if (first==nil) + first = s; + else if (second==nil) + { + second = s; + break; + } + } + if (first && second) + { + PartitionInfoElement * p = (first!=nil) && [first length]>0 ? [PartsInfoMgr partWithName: first] : nil; + if (p!=nil) + { + [p setVAliasName: second]; + NSLog(@" Rename part %@ -> %@", [p vName], second); + return true; + } + } + return false; +} + +/// Update partitions hidden property with partSpec ++(void) renameParts: (NSString*) renSpec +{ + if (renSpec!=nil) { + if (sRenSpec!=nil) [sRenSpec release]; + sRenSpec = [renSpec copy]; + } + + NSArray* sPairs = + [sRenSpec componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: @";"] ]; + for (NSString* sPair in sPairs) + { + bool ret=false; + + if ([sPair rangeOfString:@"\""].location != NSNotFound) + ret = renIterateOn(sPair, @"\""); + if(!ret) + renIterateOn(sPair, @" \t\n"); + } +} + ++(void) reload +{ + [PartsInfoMgr reloadWithHideSpec:nil andRenameSpec:nil]; +} + ++(void) reloadWithHideSpec: (NSString*) hideSpec andRenameSpec:(NSString*) renSpec +{ + if (hideSpec!=nil) { + if (sHideSpec!=nil) [sHideSpec release]; + sHideSpec = [hideSpec copy]; + } + + if (renSpec!=nil) { + if (sRenSpec!=nil) [sRenSpec release]; + sRenSpec = [renSpec copy]; + } + + if (sParts!=nil) [sParts release]; + sParts = nil; + + // does auto-generate parts first time + [PartsInfoMgr hideParts:sHideSpec]; + [PartsInfoMgr renameParts:sRenSpec]; +} + ++(void)resetSwapping +{ + for (int i=0; i MAX_HD-1 || dst > MAX_HD-1) return; + PartitionInfoElement.hdRedirTable[src]=dst; + PartitionInfoElement.hdRedirTable[dst]=src; + +} + ++(NSString*) getRenameStringFrom:(NSString*) currentStr andPartition: (PartitionInfoElement*) partInfo +{ + if (partInfo != nil && currentStr!=nil) + { + NSMutableString* ms = [[NSMutableString alloc ] initWithCapacity: 512]; + + NSArray* sPairs = + [currentStr componentsSeparatedByCharactersInSet: + [NSCharacterSet characterSetWithCharactersInString: @";"] ]; + + if ([sPairs count] > 0 ) + { + + for (NSString* s in sPairs) + { + if ( s==nil || [s length] == 0) continue; + + if ( [ s rangeOfString:[partInfo hdString]].location == NSNotFound ) + { + if ([ms length] > 0) [ ms appendString:@";" ]; + [ms appendString: [NSString stringWithFormat:@"%@",s ]]; + } + } + + } + // now filter the case where name eauls alias -> no rename anymore + if ( ![[partInfo vName] isEqual: [partInfo vAliasName]]) + { + if ([ms length] > 0) [ ms appendString:@";" ]; + [ms appendString: [NSString stringWithFormat:@"%@ \"%@\"" , + [partInfo hdString], [partInfo vAliasName] ]]; + } + return ms; + } + + return nil; +} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/string_util.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/string_util.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/string_util.h (revision 396) @@ -0,0 +1,84 @@ +/* + * string_util.h + * ChameleonPrefPane + * + * Created by Rekursor on 1/22/10. + * + */ +#ifndef __CHSTR_UTIL_H +#define __CHSTR_UTIL_H +#include +#include + +/** + * String Tokenizer + * In: src string and separator + * Out: a list of string tokens + */ +std::list tokenize(const std::string& src, const std::string& sep=" "); + +/** 'in place' replace_all occurences of sToFind by sToReplace in a s string, return s */ +std::string& replace_all(std::string &s, const std::string &sToFind, const std::string &sToReplace); + +/** + * trim the space (or any substring) chars on the right of a string + */ +inline std::string trim_right(const std::string &source , const std::string& substr = " ") +{ + std::string str = source; + + return str.erase( str.find_last_not_of(substr) + 1); +} + + +inline std::string trim_label(const std::string &source ) +{ + std::string str = source; + std::string str2 = str.erase( str.find_last_not_of("*") + 1); + return str2.erase( str2.find_last_not_of(" ") + 1); +} + +/** + * trim the space chars (or any substring) on the left of a string + */ +inline std::string trim_left( const std::string& source, const std::string& substr = " ") +{ + std::string str = source; + return str.erase(0 , source.find_first_not_of(substr) ); +} + +/** + * trim the space chars (or any substring) on the left and the right of a string + */ +inline std::string trim(const std::string& source, const std::string& substr = " ") +{ + return trim_left( trim_right( source , substr) , substr ); +} + +// const char* str input versions +inline std::string trim_right(const char* src , const std::string& substr = " ") +{ + std::string str = src ? src : ""; + return str.erase( str.find_last_not_of(substr) + 1); +} + +/** + * trim the space chars (or any substring) on the left of a string + */ +inline std::string trim_left( const char* src, const std::string& substr = " ") +{ + std::string str = src ? src : ""; + return str.erase(0 , str.find_first_not_of(substr) ); +} + +/** + * trim the space chars (or any substring) on the left and the right of a string + */ +inline std::string trim(const char* src, const std::string& substr = " ") +{ + return trim_left( trim_right( src , substr) , substr ); +} + +inline char HexToDec(char nibble) { nibble = toupper(nibble); return (nibble < 'A') ? nibble - '0' : nibble - 'A' +10;} + +#endif Index: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios_decode.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios_decode.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios_decode.cpp (revision 396) @@ -0,0 +1,220 @@ +/* + * A very simple SMBIOS Table decoder, part of the Chameleon Boot Loader Project + * + * Copyright 2010 by Islam M. Ahmed Zaid. All rights reserved. + * + */ + +//#include "libsaio.h" +#include "smbios.h" +#include + +#ifndef DEBUG_SMBIOS +#define DEBUG_SMBIOS 0 +#endif + +#define DBG(x...) printf(x) + +static SMBWord minorVersion; + +extern char *getSMBStringForField(SMBStructHeader *structHeader, uint8_t field); + +//------------------------------------------------------------------------------------------------------------------------- +// BIOSInformation +//------------------------------------------------------------------------------------------------------------------------- +void decodeBIOSInformation(SMBBIOSInformation *structHeader) +{ + DBG("BIOSInformation:\n"); + DBG("\tvendor: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->vendor)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\treleaseDate: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->releaseDate)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// SystemInformation +//------------------------------------------------------------------------------------------------------------------------- +void decodeSystemInformation(SMBSystemInformation *structHeader) +{ + DBG("SystemInformation:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tproductName: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->productName)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + + if (minorVersion < 1 || structHeader->header.length < 25) + return; + uint8_t *uuid = structHeader->uuid; + DBG("\tuuid: %02X%02X%02X%02X-%02X%02X-%02X%02X-%02x%02X-%02X%02X%02X%02X%02X%02X\n", + uuid[0], uuid[1], uuid[2], uuid[3], + uuid[4], uuid[5], + uuid[6], uuid[7], + uuid[8], uuid[9], + uuid[10], uuid[11], uuid[12], uuid[13], uuid[14], uuid[15]); + DBG("\twakeupReason: 0x%x\n", structHeader->wakeupReason); + + if (minorVersion < 4 || structHeader->header.length < 27) + return; + DBG("\tskuNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->skuNumber)); + DBG("\tfamily: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->family)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// BaseBoard +//------------------------------------------------------------------------------------------------------------------------- +void decodeBaseBoard(SMBBaseBoard *structHeader) +{ + DBG("BaseBoard:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tproduct: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->product)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTagNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTagNumber)); + DBG("\tlocationInChassis: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->locationInChassis)); + DBG("\tboardType: 0x%X\n", structHeader->boardType); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// SystemEnclosure +//------------------------------------------------------------------------------------------------------------------------- +void decodeSystemEnclosure(SMBSystemEnclosure *structHeader) +{ + DBG("SystemEnclosure:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\ttype: %d\n", structHeader->type); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTagNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTagNumber)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// ProcessorInformation +//------------------------------------------------------------------------------------------------------------------------- +void decodeProcessorInformation(SMBProcessorInformation *structHeader) +{ + DBG("ProcessorInformation:\n"); + DBG("\tsocketDesignation: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->socketDesignation)); + DBG("\tprocessorType: %d\n", structHeader->processorType); + DBG("\tprocessorFamily: 0x%X\n", structHeader->processorFamily); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tprocessorID: 0x%llX\n", structHeader->processorID); + DBG("\tprocessorVersion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->processorVersion)); + DBG("\texternalClock: %dMHz\n", structHeader->externalClock); + DBG("\tmaximumClock: %dMHz\n", structHeader->maximumClock); + DBG("\tcurrentClock: %dMHz\n", structHeader->currentClock); + + if (minorVersion >= 3 && structHeader->header.length >= 35) + { + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTag: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTag)); + DBG("\tpartNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->partNumber)); + } + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// MemoryDevice +//------------------------------------------------------------------------------------------------------------------------- +void decodeMemoryDevice(SMBMemoryDevice *structHeader) +{ + DBG("MemoryDevice:\n"); + DBG("\tdeviceLocator: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->deviceLocator)); + DBG("\tbankLocator: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->bankLocator)); + DBG("\tmemoryType: %s\n", SMBMemoryDeviceTypes[structHeader->memoryType]); + + if (structHeader->header.length < 27) + return; + DBG("\tmemorySpeed: %dMHz\n", structHeader->memorySpeed); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTag: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTag)); + DBG("\tpartNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->partNumber)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// Apple Specific +//------------------------------------------------------------------------------------------------------------------------- +void decodeOemProcessorType(SMBOemProcessorType *structHeader) +{ + DBG("AppleProcessorType:\n"); + DBG("\tProcessorType: 0x%x\n", ((SMBOemProcessorType *)structHeader)->ProcessorType); + DBG("\n"); +} + +void decodeOemProcessorBusSpeed(SMBOemProcessorBusSpeed *structHeader) +{ + DBG("AppleProcessorBusSpeed:\n"); + DBG("\tProcessorBusSpeed (QPI): %d.%dGT/s\n", + ((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 1000, + (((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 100) % 10); + DBG("\n"); +} +//------------------------------------------------------------------------------------------------------------------------- + + +void decodeSMBIOSTable(uint8_t * ptr, uint8_t* end) +{ + + + DBG("\n"); + for (SMBStructHeader *structHeader = (SMBStructHeader*)ptr; structHeader < (SMBStructHeader*)end ;) + { + // DBG("Type: %d, Length: %d, Handle: 0x%x\n", structHeader->type, structHeader->length, structHeader->handle); + + switch (structHeader->type) + { + case kSMBTypeBIOSInformation: + decodeBIOSInformation((SMBBIOSInformation *)structHeader); + break; + + case kSMBTypeSystemInformation: + decodeSystemInformation((SMBSystemInformation *)structHeader); + break; + + case kSMBTypeBaseBoard: + decodeBaseBoard((SMBBaseBoard *)structHeader); + break; + + case kSMBTypeSystemEnclosure: + decodeSystemEnclosure((SMBSystemEnclosure *)structHeader); + break; + + case kSMBTypeProcessorInformation: + decodeProcessorInformation((SMBProcessorInformation *)structHeader); + break; + + case kSMBTypeMemoryDevice: + decodeMemoryDevice((SMBMemoryDevice *)structHeader); + break; + + case kSMBTypeOemProcessorType: + decodeOemProcessorType((SMBOemProcessorType *)structHeader); + break; + + case kSMBTypeOemProcessorBusSpeed: + decodeOemProcessorBusSpeed((SMBOemProcessorBusSpeed *)structHeader); + break; + + case kSMBTypeEndOfTable: /* Skip, to be added at the end */ + /* Skip all Apple Specific Structures */ + case kSMBTypeFirmwareVolume: + case kSMBTypeMemorySPD: + default: + break; + } + + ptr = (uint8_t*) (((unsigned long)structHeader) + structHeader->length); + for (; ((uint16_t *)ptr)[0] != 0; ptr++); + + if (((uint16_t *)ptr)[0] == 0) + ptr += 2; + + structHeader = (SMBStructHeader *)ptr; + } + DBG("\n"); +} + Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios_decode.cpp ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.h (revision 396) @@ -0,0 +1,474 @@ +/* + * Copyright (c) 1998-2009 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * The contents of this file constitute Original Code as defined in and + * are subject to the Apple Public Source License Version 1.1 (the + * "License"). You may not use this file except in compliance with the + * License. Please obtain a copy of the License at + * http://www.apple.com/publicsource and read it before using this file. + * + * This Original Code and all software distributed under the License are + * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the + * License for the specific language governing rights and limitations + * under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +#ifndef __LIBSAIO_SMBIOS_H +#define __LIBSAIO_SMBIOS_H + +#include +// +// Based on System Management BIOS Reference Specification v2.5 +// + +typedef uint8_t SMBString; +typedef uint8_t SMBByte; +typedef uint16_t SMBWord; +typedef uint32_t SMBDWord; +typedef uint64_t SMBQWord; + + +typedef struct DMIEntryPoint { + SMBByte anchor[5]; + SMBByte checksum; + SMBWord tableLength; + SMBDWord tableAddress; + SMBWord structureCount; + SMBByte bcdRevision; +} __attribute__((packed)) DMIEntryPoint; + +typedef struct SMBEntryPoint { + SMBByte anchor[4]; + SMBByte checksum; + SMBByte entryPointLength; + SMBByte majorVersion; + SMBByte minorVersion; + SMBWord maxStructureSize; + SMBByte entryPointRevision; + SMBByte formattedArea[5]; + DMIEntryPoint dmi; +} __attribute__((packed)) SMBEntryPoint; + +// +// Header common to all SMBIOS structures +// + +typedef struct SMBStructHeader { + SMBByte type; + SMBByte length; + SMBWord handle; +} __attribute__((packed)) SMBStructHeader; + +#define SMB_STRUCT_HEADER SMBStructHeader header; + +typedef struct SMBAnchor +{ + const SMBStructHeader * header; + const uint8_t * next; + const uint8_t * end; +} SMBAnchor; + +#define SMB_ANCHOR_IS_VALID(x) \ + ((x) && ((x)->header) && ((x)->next) && ((x)->end)) + +#define SMB_ANCHOR_RESET(x) \ + bzero(x, sizeof(typedef struct SMBAnchor)); + +// +// SMBIOS structure types. +// + +enum { + kSMBTypeBIOSInformation = 0, + kSMBTypeSystemInformation = 1, + kSMBTypeBaseBoard = 2, + kSMBTypeSystemEnclosure = 3, + kSMBTypeProcessorInformation = 4, + kSMBTypeMemoryModule = 6, + kSMBTypeCacheInformation = 7, + kSMBTypeSystemSlot = 9, + kSMBTypePhysicalMemoryArray = 16, + kSMBTypeMemoryDevice = 17, + kSMBType32BitMemoryErrorInfo = 18, + kSMBType64BitMemoryErrorInfo = 33, + + kSMBTypeEndOfTable = 127, + + /* Apple Specific Structures */ + kSMBTypeFirmwareVolume = 128, + kSMBTypeMemorySPD = 130, + kSMBTypeOemProcessorType = 131, + kSMBTypeOemProcessorBusSpeed = 132 +}; + +// +// BIOS Information (Type 0) +// +typedef struct SMBBIOSInformation { + SMB_STRUCT_HEADER // Type 0 + SMBString vendor; // BIOS vendor name + SMBString version; // BIOS version + SMBWord startSegment; // BIOS segment start + SMBString releaseDate; // BIOS release date + SMBByte romSize; // (n); 64K * (n+1) bytes + SMBQWord characteristics; // supported BIOS functions +} __attribute__((packed)) SMBBIOSInformation; + +// +// System Information (Type 1) +// + +typedef struct SMBSystemInformation { + // 2.0+ spec (8 bytes) + SMB_STRUCT_HEADER // Type 1 + SMBString manufacturer; + SMBString productName; + SMBString version; + SMBString serialNumber; + // 2.1+ spec (25 bytes) + SMBByte uuid[16]; // can be all 0 or all 1's + SMBByte wakeupReason; // reason for system wakeup + // 2.4+ spec (27 bytes) + SMBString skuNumber; + SMBString family; +} __attribute__((packed)) SMBSystemInformation; + +// +// Base Board (Type 2) +// + +typedef struct SMBBaseBoard { + SMB_STRUCT_HEADER // Type 2 + SMBString manufacturer; + SMBString product; + SMBString version; + SMBString serialNumber; + SMBString assetTagNumber; + SMBByte featureFlags; + SMBString locationInChassis; + SMBWord chassisHandle; + SMBByte boardType; + SMBByte numberOfContainedHandles; + // 0 - 255 contained handles go here but we do not include + // them in our structure. Be careful to use numberOfContainedHandles + // times sizeof(SMBWord) when computing the actual record size, + // if you need it. +} __attribute__((packed)) SMBBaseBoard; + +// Values for boardType in Type 2 records +enum { + kSMBBaseBoardUnknown = 0x01, + kSMBBaseBoardOther = 0x02, + kSMBBaseBoardServerBlade = 0x03, + kSMBBaseBoardConnectivitySwitch = 0x04, + kSMBBaseBoardSystemMgmtModule = 0x05, + kSMBBaseBoardProcessorModule = 0x06, + kSMBBaseBoardIOModule = 0x07, + kSMBBaseBoardMemoryModule = 0x08, + kSMBBaseBoardDaughter = 0x09, + kSMBBaseBoardMotherboard = 0x0A, + kSMBBaseBoardProcessorMemoryModule = 0x0B, + kSMBBaseBoardProcessorIOModule = 0x0C, + kSMBBaseBoardInterconnect = 0x0D, +}; + + +// +// System Enclosure (Type 3) +// + +typedef struct SMBSystemEnclosure { + SMB_STRUCT_HEADER // Type 3 + SMBString manufacturer; + SMBByte type; + SMBString version; + SMBString serialNumber; + SMBString assetTagNumber; + SMBByte bootupState; + SMBByte powerSupplyState; + SMBByte thermalState; + SMBByte securityStatus; + SMBDWord oemDefined; +} __attribute__((packed)) SMBSystemEnclosure; + +// +// Processor Information (Type 4) +// + +typedef struct SMBProcessorInformation { + // 2.0+ spec (26 bytes) + SMB_STRUCT_HEADER // Type 4 + SMBString socketDesignation; + SMBByte processorType; // CPU = 3 + SMBByte processorFamily; // processor family enum + SMBString manufacturer; + SMBQWord processorID; // based on CPUID + SMBString processorVersion; + SMBByte voltage; // bit7 cleared indicate legacy mode + SMBWord externalClock; // external clock in MHz + SMBWord maximumClock; // max internal clock in MHz + SMBWord currentClock; // current internal clock in MHz + SMBByte status; + SMBByte processorUpgrade; // processor upgrade enum + // 2.1+ spec (32 bytes) + SMBWord L1CacheHandle; + SMBWord L2CacheHandle; + SMBWord L3CacheHandle; + // 2.3+ spec (35 bytes) + SMBString serialNumber; + SMBString assetTag; + SMBString partNumber; +} __attribute__((packed)) SMBProcessorInformation; + +#define kSMBProcessorInformationMinSize 26 + +// +// Memory Module Information (Type 6) +// Obsoleted since SMBIOS version 2.1 +// + +typedef struct SMBMemoryModule { + SMB_STRUCT_HEADER // Type 6 + SMBString socketDesignation; + SMBByte bankConnections; + SMBByte currentSpeed; + SMBWord currentMemoryType; + SMBByte installedSize; + SMBByte enabledSize; + SMBByte errorStatus; +} __attribute__((packed)) SMBMemoryModule; + +#define kSMBMemoryModuleSizeNotDeterminable 0x7D +#define kSMBMemoryModuleSizeNotEnabled 0x7E +#define kSMBMemoryModuleSizeNotInstalled 0x7F + +// +// Cache Information (Type 7) +// + +typedef struct SMBCacheInformation { + SMB_STRUCT_HEADER // Type 7 + SMBString socketDesignation; + SMBWord cacheConfiguration; + SMBWord maximumCacheSize; + SMBWord installedSize; + SMBWord supportedSRAMType; + SMBWord currentSRAMType; + SMBByte cacheSpeed; + SMBByte errorCorrectionType; + SMBByte systemCacheType; + SMBByte associativity; +} __attribute__((packed)) SMBCacheInformation; + +typedef struct SMBSystemSlot { + // 2.0+ spec (12 bytes) + SMB_STRUCT_HEADER // Type 9 + SMBString slotDesignation; + SMBByte slotType; + SMBByte slotDataBusWidth; + SMBByte currentUsage; + SMBByte slotLength; + SMBWord slotID; + SMBByte slotCharacteristics1; + // 2.1+ spec (13 bytes) + SMBByte slotCharacteristics2; +} __attribute__((packed)) SMBSystemSlot; + +// +// Physical Memory Array (Type 16) +// + +typedef struct SMBPhysicalMemoryArray { + // 2.1+ spec (15 bytes) + SMB_STRUCT_HEADER // Type 16 + SMBByte physicalLocation; // physical location + SMBByte arrayUse; // the use for the memory array + SMBByte errorCorrection; // error correction/detection method + SMBDWord maximumCapacity; // maximum memory capacity in kilobytes + SMBWord errorHandle; // handle of a previously detected error + SMBWord numMemoryDevices; // number of memory slots or sockets +} __attribute__((packed)) SMBPhysicalMemoryArray; + +// Memory Array - Use +enum { + kSMBMemoryArrayUseOther = 0x01, + kSMBMemoryArrayUseUnknown = 0x02, + kSMBMemoryArrayUseSystemMemory = 0x03, + kSMBMemoryArrayUseVideoMemory = 0x04, + kSMBMemoryArrayUseFlashMemory = 0x05, + kSMBMemoryArrayUseNonVolatileMemory = 0x06, + kSMBMemoryArrayUseCacheMemory = 0x07 +}; + +// Memory Array - Error Correction Types +enum { + kSMBMemoryArrayErrorCorrectionTypeOther = 0x01, + kSMBMemoryArrayErrorCorrectionTypeUnknown = 0x02, + kSMBMemoryArrayErrorCorrectionTypeNone = 0x03, + kSMBMemoryArrayErrorCorrectionTypeParity = 0x04, + kSMBMemoryArrayErrorCorrectionTypeSingleBitECC = 0x05, + kSMBMemoryArrayErrorCorrectionTypeMultiBitECC = 0x06, + kSMBMemoryArrayErrorCorrectionTypeCRC = 0x07 +}; + +// +// Memory Device (Type 17) +// + +typedef struct SMBMemoryDevice { + // 2.1+ spec (21 bytes) + SMB_STRUCT_HEADER // Type 17 + SMBWord arrayHandle; // handle of the parent memory array + SMBWord errorHandle; // handle of a previously detected error + SMBWord totalWidth; // total width in bits; including ECC bits + SMBWord dataWidth; // data width in bits + SMBWord memorySize; // bit15 is scale, 0 = MB, 1 = KB + SMBByte formFactor; // memory device form factor + SMBByte deviceSet; // parent set of identical memory devices + SMBString deviceLocator; // labeled socket; e.g. "SIMM 3" + SMBString bankLocator; // labeled bank; e.g. "Bank 0" or "A" + SMBByte memoryType; // type of memory + SMBWord memoryTypeDetail; // additional detail on memory type + // 2.3+ spec (27 bytes) + SMBWord memorySpeed; // speed of device in MHz (0 for unknown) + SMBString manufacturer; + SMBString serialNumber; + SMBString assetTag; + SMBString partNumber; +} __attribute__((packed)) SMBMemoryDevice; + +// +// Firmware Volume Description (Apple Specific - Type 128) +// + +enum { + FW_REGION_RESERVED = 0, + FW_REGION_RECOVERY = 1, + FW_REGION_MAIN = 2, + FW_REGION_NVRAM = 3, + FW_REGION_CONFIG = 4, + FW_REGION_DIAGVAULT = 5, + + NUM_FLASHMAP_ENTRIES = 8 +}; + +typedef struct FW_REGION_INFO +{ + SMBDWord StartAddress; + SMBDWord EndAddress; +} __attribute__((packed)) FW_REGION_INFO; + +typedef struct SMBFirmwareVolume { + SMB_STRUCT_HEADER // Type 128 + SMBByte RegionCount; + SMBByte Reserved[3]; + SMBDWord FirmwareFeatures; + SMBDWord FirmwareFeaturesMask; + SMBByte RegionType[ NUM_FLASHMAP_ENTRIES ]; + FW_REGION_INFO FlashMap[ NUM_FLASHMAP_ENTRIES ]; +} __attribute__((packed)) SMBFirmwareVolume; + +// +// Memory SPD Data (Apple Specific - Type 130) +// + +typedef struct SMBMemorySPD { + SMB_STRUCT_HEADER // Type 130 + SMBWord Type17Handle; + SMBWord Offset; + SMBWord Size; + SMBWord Data[]; +} __attribute__((packed)) SMBMemorySPD; + +static const char * +SMBMemoryDeviceTypes[] = +{ + "RAM", /* 00h Undefined */ + "RAM", /* 01h Other */ + "RAM", /* 02h Unknown */ + "DRAM", /* 03h DRAM */ + "EDRAM", /* 04h EDRAM */ + "VRAM", /* 05h VRAM */ + "SRAM", /* 06h SRAM */ + "RAM", /* 07h RAM */ + "ROM", /* 08h ROM */ + "FLASH", /* 09h FLASH */ + "EEPROM", /* 0Ah EEPROM */ + "FEPROM", /* 0Bh FEPROM */ + "EPROM", /* 0Ch EPROM */ + "CDRAM", /* 0Dh CDRAM */ + "3DRAM", /* 0Eh 3DRAM */ + "SDRAM", /* 0Fh SDRAM */ + "SGRAM", /* 10h SGRAM */ + "RDRAM", /* 11h RDRAM */ + "DDR SDRAM", /* 12h DDR */ + "DDR2 SDRAM", /* 13h DDR2 */ + "DDR2 FB-DIMM", /* 14h DDR2 FB-DIMM */ + "RAM", /* 15h unused */ + "RAM", /* 16h unused */ + "RAM", /* 17h unused */ + "DDR3", /* 18h DDR3, chosen in [5776134] */ +}; + +static const int +kSMBMemoryDeviceTypeCount = sizeof(SMBMemoryDeviceTypes) / + sizeof(SMBMemoryDeviceTypes[0]); + +// +// OEM Processor Type (Apple Specific - Type 131) +// + +typedef struct SMBOemProcessorType { + SMB_STRUCT_HEADER + SMBWord ProcessorType; +} __attribute__((packed)) SMBOemProcessorType; + +// +// OEM Processor Bus Speed (Apple Specific - Type 132) +// +typedef struct SMBOemProcessorBusSpeed { + SMB_STRUCT_HEADER + SMBWord ProcessorBusSpeed; // MT/s unit +} __attribute__((packed)) SMBOemProcessorBusSpeed; +#define SMBIOS_RANGE_START 0x000F0000 +#define SMBIOS_RANGE_END 0x000FFFFF + +#define NOT_AVAILABLE "N/A" + +//---------------------------------------------------------------------------------------------------------- +/* From smbios_getter */ + +typedef enum { + kSMBString, + kSMBByte, + kSMBWord, + kSMBDWord + // kSMBQWord +} SMBValueType; + +typedef union { + const char *string; + uint8_t byte; + uint16_t word; + uint32_t dword; + // uint64_t qword; +} returnType; + + +//---------------------------------------------------------------------------------------------------------- + +/* From Foundation/Efi/Guid/Smbios/SmBios.h */ +/* Modified to wrap Data4 array init with {} */ +#define EFI_SMBIOS_TABLE_GUID {0xeb9d2d31, 0x2d88, 0x11d3, {0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d}} + +#define SMBIOS_ORIGINAL 0 +#define SMBIOS_PATCHED 1 + +#endif /* !__LIBSAIO_SMBIOS_H */ Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.h ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.cpp (revision 396) @@ -0,0 +1,287 @@ +/* + * SMBIOS Table Patcher, part of the Chameleon Boot Loader Project + * + * Copyright 2010 by Islam M. Ahmed Zaid. All rights reserved. + * + */ + + +///#include "boot.h" +//#include "bootstruct.h" +//#include "smbios_getters.h" + +#include "smbios.h" +#include +#include + +#if 0 +typedef unsigned char bool; +#define false 0 +#define true 1 +#endif + +#ifndef DEBUG_SMBIOS +#define DEBUG_SMBIOS 0 +#endif + +#if DEBUG_SMBIOS +#define DBG(x...) printf(x) +#else +#define DBG(x...) msglog(x) +#endif + +#define SMBPlist &bootInfo->smbiosConfig +/* ASSUMPTION: 16KB should be enough for the whole thing */ +#define SMB_ALLOC_SIZE 16384 + + +//------------------------------------------------------------------------------------------------------------------------- +// SMBIOS Plist Keys +//------------------------------------------------------------------------------------------------------------------------- +/* BIOS Information */ +#define kSMBBIOSInformationVendorKey "SMbiosvendor" +#define kSMBBIOSInformationVersionKey "SMbiosversion" +#define kSMBBIOSInformationReleaseDateKey "SMbiosdate" + +/* System Information */ +#define kSMBSystemInformationManufacturerKey "SMmanufacturer" +#define kSMBSystemInformationProductNameKey "SMproductname" +#define kSMBSystemInformationVersionKey "SMsystemversion" +#define kSMBSystemInformationSerialNumberKey "SMserial" +#define kSMBSystemInformationFamilyKey "SMfamily" + +/* Base Board */ +#define kSMBBaseBoardManufacturerKey "SMboardmanufacturer" +#define kSMBBaseBoardProductKey "SMboardproduct" + +/* Processor Information */ +#define kSMBProcessorInformationExternalClockKey "SMexternalclock" +#define kSMBProcessorInformationMaximumClockKey "SMmaximalclock" + +/* Memory Device */ +#define kSMBMemoryDeviceDeviceLocatorKey "SMmemdevloc" +#define kSMBMemoryDeviceBankLocatorKey "SMmembankloc" +#define kSMBMemoryDeviceMemoryTypeKey "SMmemtype" +#define kSMBMemoryDeviceMemorySpeedKey "SMmemspeed" +#define kSMBMemoryDeviceManufacturerKey "SMmemmanufacturer" +#define kSMBMemoryDeviceSerialNumberKey "SMmemserial" +#define kSMBMemoryDevicePartNumberKey "SMmempart" + +/* Apple Specific */ +#define kSMBOemProcessorTypeKey "SMcputype" +#define kSMBOemProcessorBusSpeedKey "SMbusspeed" + +//------------------------------------------------------------------------------------------------------------------------- +// Default SMBIOS Data +//------------------------------------------------------------------------------------------------------------------------- +/* Rewrite: use a struct */ + +#define kDefaultVendorManufacturer "Apple Inc." +#define kDefaultBIOSReleaseDate "11/06/2009" +#define kDefaultSerialNumber "SOMESRLNMBR" +#define kDefaultBoardProduct "Mac-F4208DC8" +#define kDefaultSystemVersion "1.0" + +// defaults for a Mac mini +#define kDefaultMacminiFamily "Macmini" +#define kDefaultMacmini "Macmini1,1" +#define kDefaultMacminiBIOSVersion " MM21.88Z.009A.B00.0903051113" + +// defaults for a MacBook +#define kDefaultMacBookFamily "MacBook" +#define kDefaultMacBook "MacBook4,1" +#define kDefaultMacBookBIOSVersion " MB41.88Z.0073.B00.0903051113" + +// defaults for a MacBook Pro +#define kDefaultMacBookProFamily "MacBookPro" +#define kDefaultMacBookPro "MacBookPro4,1" +#define kDefaultMacBookProBIOSVersion " MBP41.88Z.0073.B00.0903051113" + +// defaults for an iMac +#define kDefaultiMacFamily "iMac" +#define kDefaultiMac "iMac8,1" +#define kDefaultiMacBIOSVersion " IM81.88Z.00C1.B00.0903051113" +// defaults for an iMac11,1 core i3/i5/i7 +#define kDefaultiMacNehalem "iMac11,1" +#define kDefaultiMacNehalemBIOSVersion " IM111.88Z.0034.B00.0903051113" +// defaults for an iMac12,1 +#define kDefaultiMacSandy "iMac12,1" +#define kDefaultiMacSandyBIOSVersion " IM121.88Z.0047.B00.1102091756" + +// defaults for a Mac Pro +#define kDefaultMacProFamily "MacPro" +#define kDefaultMacPro "MacPro3,1" +#define kDefaultMacProBIOSVersion " MP31.88Z.006C.B05.0903051113" +// defaults for a Mac Pro 4,1 core i7/Xeon +#define kDefaultMacProNehalem "MacPro4,1" +#define kDefaultMacProNehalemBIOSVersion " MP41.88Z.0081.B04.0903051113" +// defaults for a Mac Pro 5,1 core i7/Xeon +#define kDefaultMacProWestmere "MacPro5,1" +#define kDefaultMacProWestmereBIOSVersion " MP51.88Z.007F.B00.1008031144" +#define kDefaulMacProWestmereBIOSReleaseDate "08/03/10" +//------------------------------------------------------------------------------------------------------------------------- + + +#define getFieldOffset(struct, field) ((uint8_t)(unsigned long)&(((struct *)0)->field)) + +typedef struct { + SMBStructHeader *orig; + SMBStructHeader *new_header; +} SMBStructPtrs ; + +static struct { + char *vendor; + char *version; + char *releaseDate; +} defaultBIOSInfo; + +static struct { + char *manufacturer; + char *productName; + char *version; + char *serialNumber; + char *family; +} defaultSystemInfo; + +static struct { + char *manufacturer; + char *product; +} defaultBaseBoard; + + +typedef struct { + uint8_t type; + SMBValueType valueType; + uint8_t fieldOffset; + const char *keyString; + bool (*getSMBValue)(returnType *); + char **defaultValue; +} SMBValueSetter; + +SMBValueSetter SMBSetters[] = +{ + //------------------------------------------------------------------------------------------------------------------------- + // BIOSInformation + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, vendor), kSMBBIOSInformationVendorKey, + NULL, &defaultBIOSInfo.vendor }, + + {kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, version), kSMBBIOSInformationVersionKey, + NULL, &defaultBIOSInfo.version }, + + {kSMBTypeBIOSInformation, kSMBString, getFieldOffset(SMBBIOSInformation, releaseDate), kSMBBIOSInformationReleaseDateKey, + NULL, &defaultBIOSInfo.releaseDate }, + + //------------------------------------------------------------------------------------------------------------------------- + // SystemInformation + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, manufacturer), kSMBSystemInformationManufacturerKey, + NULL, &defaultSystemInfo.manufacturer }, + + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, productName), kSMBSystemInformationProductNameKey, + NULL, &defaultSystemInfo.productName }, + + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, version), kSMBSystemInformationVersionKey, + NULL, &defaultSystemInfo.version }, + + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, serialNumber), kSMBSystemInformationSerialNumberKey, + NULL, &defaultSystemInfo.serialNumber }, + + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, skuNumber), NULL, + NULL, NULL }, + + {kSMBTypeSystemInformation, kSMBString, getFieldOffset(SMBSystemInformation, family), kSMBSystemInformationFamilyKey, + NULL, &defaultSystemInfo.family }, + + + //------------------------------------------------------------------------------------------------------------------------- + // BaseBoard + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, manufacturer), kSMBBaseBoardManufacturerKey, + NULL, &defaultBaseBoard.manufacturer }, + + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, product), kSMBBaseBoardProductKey, + NULL, &defaultBaseBoard.product }, + + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, version), NULL, NULL, NULL}, + + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, serialNumber), NULL, NULL, NULL}, + + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, assetTagNumber), NULL, NULL, NULL}, + + {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, locationInChassis), NULL, NULL, NULL}, + + + //------------------------------------------------------------------------------------------------------------------------- + // ProcessorInformation + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, socketDesignation), NULL, NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, manufacturer), NULL, NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, processorVersion), NULL, NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBWord, getFieldOffset(SMBProcessorInformation, externalClock), kSMBProcessorInformationExternalClockKey, + NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBWord, getFieldOffset(SMBProcessorInformation, maximumClock), kSMBProcessorInformationMaximumClockKey, + NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, serialNumber), NULL, NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, assetTag), NULL, NULL, NULL}, + + {kSMBTypeProcessorInformation, kSMBString, getFieldOffset(SMBProcessorInformation, partNumber), NULL, NULL, NULL}, + + //------------------------------------------------------------------------------------------------------------------------- + // Memory Device + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, deviceLocator), kSMBMemoryDeviceDeviceLocatorKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, bankLocator), kSMBMemoryDeviceBankLocatorKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBByte, getFieldOffset(SMBMemoryDevice, memoryType), kSMBMemoryDeviceMemoryTypeKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBWord, getFieldOffset(SMBMemoryDevice, memorySpeed), kSMBMemoryDeviceMemorySpeedKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, manufacturer), kSMBMemoryDeviceManufacturerKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, serialNumber), kSMBMemoryDeviceSerialNumberKey, + NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, assetTag), NULL, NULL, NULL}, + + {kSMBTypeMemoryDevice, kSMBString, getFieldOffset(SMBMemoryDevice, partNumber), kSMBMemoryDevicePartNumberKey, + NULL, NULL}, + + + //------------------------------------------------------------------------------------------------------------------------- + // Apple Specific + //------------------------------------------------------------------------------------------------------------------------- + {kSMBTypeOemProcessorType, kSMBWord, getFieldOffset(SMBOemProcessorType, ProcessorType), kSMBOemProcessorTypeKey, + NULL, NULL}, + + {kSMBTypeOemProcessorBusSpeed, kSMBWord, getFieldOffset(SMBOemProcessorBusSpeed, ProcessorBusSpeed), kSMBOemProcessorBusSpeedKey, + NULL, NULL} +}; + +int numOfSetters = sizeof(SMBSetters) / sizeof(SMBValueSetter); + + +SMBEntryPoint *origeps = 0; +SMBEntryPoint *neweps = 0; + +/* + static uint8_t stringIndex; // increament when a string is added and set the field value accordingly + static uint8_t stringsSize; // add string size + + static SMBWord tableLength = 0; + static SMBWord handle = 0; + static SMBWord maxStructSize = 0; + static SMBWord structureCount = 0; +*/ Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/smbios/smbios.cpp ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.h (revision 396) @@ -0,0 +1,63 @@ +// +// RoundedBox.m +// RoundedBox +// +// Created by Matt Gemmell on 01/11/2005. +// Copyright 2006 Matt Gemmell. http://mattgemmell.com/ +// +// Permission to use this code: +// +// Feel free to use this code in your software, either as-is or +// in a modified form. Either way, please include a credit in +// your software's "About" box or similar, mentioning at least +// my name (Matt Gemmell). A link to my site would be nice too. +// +// Permission to redistribute this code: +// +// You can redistribute this code, as long as you keep these +// comments. You can also redistribute modified versions of the +// code, as long as you add comments to say that you've made +// modifications (keeping these original comments too). +// +// If you do use or redistribute this code, an email would be +// appreciated, just to let me know that people are finding my +// code useful. You can reach me at matt.gemmell@gmail.com +// + +#import +#import + +@interface RoundedBox : NSBox { + float borderWidth; + NSColor *borderColor; + NSColor *titleColor; + NSColor *gradientStartColor; + NSColor *gradientEndColor; + NSColor *backgroundColor; + NSMutableDictionary *titleAttrs; + BOOL drawsFullTitleBar; + BOOL selected; + BOOL drawsGradientBackground; +} + +- (void)setDefaults; +- (NSBezierPath *)titlePathWithinRect:(NSRect)rect cornerRadius:(float)radius titleRect:(NSRect)titleRect; + +- (BOOL)drawsFullTitleBar; +- (void)setDrawsFullTitleBar:(BOOL)value; +- (BOOL)selected; +- (void)setSelected:(BOOL)newSelected; +- (NSColor *)borderColor; +- (void)setBorderColor:(NSColor *)newBorderColor; +- (NSColor *)titleColor; +- (void)setTitleColor:(NSColor *)newTitleColor; +- (NSColor *)gradientStartColor; +- (void)setGradientStartColor:(NSColor *)newGradientStartColor; +- (NSColor *)gradientEndColor; +- (void)setGradientEndColor:(NSColor *)newGradientEndColor; +- (NSColor *)backgroundColor; +- (void)setBackgroundColor:(NSColor *)newBackgroundColor; +- (BOOL)drawsGradientBackground; +- (void)setDrawsGradientBackground:(BOOL)newDrawsGradientBackground; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.h (revision 396) @@ -0,0 +1,57 @@ +// +// TableViewsController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/29/10. +// + +#import +#import "CustomTableView.h" +#import "RoundedBox.h" +#import + +@interface TableViewsController : NSObject { +@public + IBOutlet CustomTableView * mPartitionsTable; + IBOutlet NSTableView * mTabViewPanesSelect; + + int currentRowSel; + + IBOutlet NSTabView * mTabViewPanes; + + IBOutlet NSTabViewItem * mBootFrom; + IBOutlet NSTabViewItem * mBootSetup; + IBOutlet NSTabViewItem * mBootFlags; + IBOutlet NSTabViewItem * mPeripherals; + IBOutlet NSTabViewItem * mAdvanced; + IBOutlet NSTabViewItem * mEfiInject; + IBOutlet NSTabViewItem * mSmbios; + IBOutlet NSTabViewItem * mAbout; + + // Menu selection tv + IBOutlet NSTableColumn * mMenuIcon; + IBOutlet NSTableColumn * mMenuName; + + + // Boot selection tv + IBOutlet NSTableColumn * mHideOrViewColumn; + IBOutlet NSTableColumn * mPartitionImgColumn; + IBOutlet NSTableColumn * mFileSystemColumn; + IBOutlet NSTableColumn * mPartitionNameColumn; + IBOutlet NSTableColumn * mPartitionUIDColumn; + IBOutlet NSTableColumn * mPartitionIDColumn; + +@protected + NSImage* mMacOSXImage; + NSImage* mWindowsImage; + NSImage* mLinuxImage; + NSImage* mUnknownImage; + NSImage* mCDROMImage; + NSString* mOptionsPlistPath; + +} ++ (TableViewsController*) instance; +- (id) getImageResource: (NSString *) str ofType: (NSString*) sType; +- (void)tableViewSelectionDidChange:(NSNotification *)notification; +- (NSTableView*) partitionsTable; +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.mm (revision 396) @@ -0,0 +1,528 @@ +// +// SmbiosExtractor.mm +// ChameleonPrefPane +// +// Created by Rekursor on 11-11-27. +// + +#import "SmbiosExtractor.h" +#import "PreferencesControllerBase.h" +#include "ShellProcess.h" +#include "string_util.h" +#include "smbios.h" +#include "PropertyList.h" +#include "smbios.h" + +#include + +#ifndef DEBUG_SMBIOS +#define DEBUG_SMBIOS 0 +#endif +#if 0 +#define DBG(x...) printf(x) +#else +#define DBG(x...) +#endif +static SMBWord minorVersion; + +static char* getSMBStringForField(SMBStructHeader *structHeader, uint8_t field) +{ + uint8_t *stringPtr = ((uint8_t *)structHeader) + structHeader->length; + static char empty[2] = ""; + if (!field) + return empty; + + for (field--; field != 0 && strlen((char *)stringPtr) > 0; + field--, stringPtr = (uint8_t *)((unsigned long )stringPtr + strlen((char *)stringPtr) + 1)); + + return ( char*) (stringPtr ? (char*) stringPtr : empty); +} + +#define SHVAL(field) [NSString stringWithUTF8String: getSMBStringForField((SMBStructHeader *)structHeader, structHeader->field)] +#define SHVAL2(f,g) SHVAL(f),SHVAL(g) +#define SHVAL3(f,g,h) SHVAL2(f,g),SHVAL(h) +#define SHVAL4(f,g,h,i) SHVAL2(f,g),SHVAL2(h,i) +#define SHVAL5(f,g,h,i,j) SHVAL4(f,g,h,i),SHVAL(j) +#define SHVAL6(f,g,h,i,j,k) SHVAL5(f,g,h,i,j),SHVAL(k) +#define SHVAL7(f,g,h,i,j,k,l) SHVAL6(f,g,h,i,j,k),SHVAL(l) + +#define MHZ(f) [NSString stringWithFormat:@"%d MHZ", (int)structHeader->f] +#define DEC(f) [NSString stringWithFormat:@"%d", (int)structHeader->f] +#define LLX(f) [NSString stringWithFormat:@"%llX", structHeader->f] +#define HEX32(f) [NSString stringWithFormat:@"0x%08X", (int)structHeader->f] +#define HEX16(f) [NSString stringWithFormat:@"0x%04X", (int)structHeader->f] +#define HEX8(f) [NSString stringWithFormat:@"%0x02X", (int)structHeader->f] +#define UUID(f) [NSString stringWithFormat:@"%02X%02X%02X%02X-%02X%02X-%02X%02X-%02x%02X-%02X%02X%02X%02X%02X%02X", \ + f[0], f[1], f[2], f[3], f[4], f[5], f[6], f[7], \ + f[8], f[9], f[10], f[11], f[12], f[13], f[14], f[15] ] + +@implementation SmbiosExtractor + +@synthesize content; +@synthesize smString; +@synthesize bufSize; +-(id) init +{ + self = [super init]; + if (self!=nil) + { + [ self extractSmBios]; + } + + return self; +} + +-(void) cleanup +{ + if (buffer!=nil) + { + delete [] buffer; + buffer = nil; + bufSize=0; + smString = nil; + } + + if (smString!=nil) + { + [smString release]; + smString = nil; + } + + if (content!=nil) + { + [content release]; + content = nil; + } +} + +-(void) dealloc +{ + [self cleanup ]; + [super dealloc]; +} + +-(NSString*) description +{ + return [content description]; +} + +-(NSUInteger) extractSmBios +{ + + const char* SmbiosCmd = "ioreg -lw0 | grep \"\\\"SMBIOS\\\" = <\""; + const char* SmbiosTag = "\"SMBIOS\" = <"; + ShellProcess p(SmbiosCmd); + char line[8192]=""; + const size_t tagLen= strlen(SmbiosTag); + + if (p.get_line(line, sizeof(line)) ) + { + const char * p = strstr(line, SmbiosTag)+ tagLen; + std::string s = trim(p, " \t\r\n>"); + + // NSLog(@"Found SMBIOS (%d) [%s]", s.length(), s.c_str() ); + + [self cleanup]; + + self.content = [NSMutableDictionary dictionaryWithCapacity:32]; + + self.smString = [NSString stringWithUTF8String:s.c_str()]; + bufSize = s.length()/2; + buffer = new UInt8[bufSize]; + + for(size_t pos =0; pos < bufSize; pos++) + { + buffer[pos] = (HexToDec(s[pos*2])*16 + HexToDec(s[pos*2+1])); + } + + [self decodeSMBIOSTableFrom:buffer to: buffer+bufSize]; + } + + return 0; +} + +-(NSString*) stringFrom:(NSUInteger) start withLen:(NSUInteger) len +{ + return [smString substringWithRange: NSMakeRange(start*2, len) ]; +} + +-(UInt8) ByteFrom:(NSUInteger) position +{ + return position < bufSize ? buffer[position]: 0; +} + +-(BOOL) save:(NSString*) path +{ + NSString * error; + id plist = [NSPropertyListSerialization dataFromPropertyList:(id)content + format:NSPropertyListXMLFormat_v1_0 errorDescription:&error]; + NSFileManager* fm = [NSFileManager defaultManager]; + NSError* err; + NSString * dir = [[ path stringByDeletingLastPathComponent] stringByExpandingTildeInPath]; + [fm createDirectoryAtPath:dir withIntermediateDirectories: NO attributes: nil error:&err]; + NSLog(@"Writing Apple SMBIOS to %@", path); + return [plist writeToFile:[path stringByExpandingTildeInPath] atomically:YES]; +} + +#define ADD_HANDLE(text) [content setValue:innerDict forKey: [NSString stringWithFormat:@"%@ (0x%02x)", text, (int) structHeader->header.handle] ] +//------------------------------------------------------------------------------------------------------------------------- +// BIOSInformation +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeBIOSInformation:(SMBBIOSInformation *)structHeader +{ + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL3(vendor, version, releaseDate), nil ] + forKeys: [NSArray arrayWithObjects:@"Vendor", @"Version", @"Release Date", nil]]; + + ADD_HANDLE(@"BIOS Information"); + + DBG("BIOSInformation:\n"); + DBG("\tvendor: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->vendor)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\treleaseDate: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->releaseDate)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// SystemInformation +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeSystemInformation:(SMBSystemInformation *)structHeader +{ + NSMutableDictionary* innerDict = + [NSMutableDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL4(manufacturer, productName, version, serialNumber), nil ] + forKeys: [NSArray arrayWithObjects:@"Manufacturer", @"Product Name", @"Version", @"Serial Number", nil]]; + + + uint8_t *uuid = structHeader->uuid; + if (structHeader->header.length >= 25) + { + NSString * u = UUID(uuid); + [innerDict setObject: u forKey: @"UUID"]; + } + ADD_HANDLE(@"System Information"); + + DBG("SystemInformation:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tproductName: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->productName)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + + if (structHeader->header.length >= 25) + { + DBG("\n"); + return; + } + + DBG("\tuuid: %02X%02X%02X%02X-%02X%02X-%02X%02X-%02x%02X-%02X%02X%02X%02X%02X%02X\n", + uuid[0], uuid[1], uuid[2], uuid[3], + uuid[4], uuid[5], + uuid[6], uuid[7], + uuid[8], uuid[9], + uuid[10], uuid[11], uuid[12], uuid[13], uuid[14], uuid[15]); + + DBG("\twakeupReason: 0x%x\n", structHeader->wakeupReason); + + if (minorVersion < 4 || structHeader->header.length < 27) + { + DBG("\n"); + return; + } + DBG("\tskuNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->skuNumber)); + DBG("\tfamily: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->family)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// BaseBoard +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeBaseBoard:(SMBBaseBoard *) structHeader +{ + NSDictionary* innerDict = + [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL7(manufacturer, product, version, serialNumber, assetTagNumber, locationInChassis, boardType), nil ] + forKeys: [NSArray arrayWithObjects:@"Manufacturer", @"Product", @"Version", @"Serial Number", + @"Asset Tag Number", @"Location In Chassis", @"Board Type", nil]]; + + ADD_HANDLE(@"Base Board"); + + DBG("BaseBoard:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tproduct: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->product)); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTagNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTagNumber)); + DBG("\tlocationInChassis: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->locationInChassis)); + DBG("\tboardType: 0x%X\n", structHeader->boardType); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// SystemEnclosure +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeSystemEnclosure:(SMBSystemEnclosure *) structHeader +{ + NSDictionary* innerDict = + [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL5(manufacturer, type, version, serialNumber, assetTagNumber), nil ] + forKeys: [NSArray arrayWithObjects:@"Manufacturer", @"Type", @"Version", @"Serial Number", @"Asset Tag Number", nil]]; + + ADD_HANDLE(@"System Enclosure"); + + DBG("SystemEnclosure:\n"); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\ttype: %d\n", structHeader->type); + DBG("\tversion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTagNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTagNumber)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// ProcessorInformation +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeProcessorInformation:(SMBProcessorInformation *) structHeader +{ + NSDictionary* clockDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: MHZ(externalClock), MHZ(maximumClock), MHZ(currentClock), nil ] + forKeys: [NSArray arrayWithObjects:@"External", @"Maximum", @"Current", nil]]; + + NSDictionary* procDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL(socketDesignation), DEC(processorType), HEX16(processorFamily), SHVAL(manufacturer), + LLX(processorID), SHVAL(processorVersion), nil ] + forKeys: [NSArray arrayWithObjects:@"Socket", @"Type", @"Family", @"Manufacturer", @"ID", @"Version", nil]]; + + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: procDict, clockDict, nil ] + forKeys: [NSArray arrayWithObjects:@"Processor", @"Clock", nil]]; + + ADD_HANDLE(@"Processor Information"); + + DBG("ProcessorInformation:\n"); + DBG("\tsocketDesignation: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->socketDesignation)); + DBG("\tprocessorType: %d\n", structHeader->processorType); + DBG("\tprocessorFamily: 0x%X\n", structHeader->processorFamily); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tprocessorID: 0x%llX\n", structHeader->processorID); + DBG("\tprocessorVersion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->processorVersion)); + DBG("\texternalClock: %dMHz\n", structHeader->externalClock); + DBG("\tmaximumClock: %dMHz\n", structHeader->maximumClock); + DBG("\tcurrentClock: %dMHz\n", structHeader->currentClock); + + if (minorVersion >= 3 && structHeader->header.length >= 35) + { + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTag: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTag)); + DBG("\tpartNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->partNumber)); + } + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// MemoryDevice +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeMemoryDevice:(SMBMemoryDevice *) structHeader +{ + NSDictionary* memDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: SHVAL2(deviceLocator, bankLocator), + [NSString stringWithUTF8String: SMBMemoryDeviceTypes[structHeader->memoryType]], nil ] + forKeys: [NSArray arrayWithObjects:@"Device Locator", @"Bank Locator", @"Memory Type", nil]]; + + NSDictionary* extmemDict = (structHeader->header.length < 27) ? nil : + [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: MHZ(memorySpeed), SHVAL4(manufacturer, serialNumber, assetTag, partNumber), nil ] + forKeys: [NSArray arrayWithObjects:@"Memory Speed", @"Manufacturer", @"Serial Number", @"Asset Tag", @"Part Number", nil]]; + + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: memDict, extmemDict, nil ] + forKeys: [NSArray arrayWithObjects:@"Information", @"More Information", nil]]; + ADD_HANDLE(@"Memory Device"); + + DBG("MemoryDevice:\n"); + DBG("\tdeviceLocator: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->deviceLocator)); + DBG("\tbankLocator: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->bankLocator)); + DBG("\tmemoryType: %s\n", SMBMemoryDeviceTypes[structHeader->memoryType]); + + if (structHeader->header.length < 27) + { + DBG("\n"); + return; + } + + DBG("\tmemorySpeed: %dMHz\n", structHeader->memorySpeed); + DBG("\tmanufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); + DBG("\tserialNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tassetTag: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTag)); + DBG("\tpartNumber: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->partNumber)); + DBG("\n"); +} + +//------------------------------------------------------------------------------------------------------------------------- +// Apple Specific +//------------------------------------------------------------------------------------------------------------------------- +-(void) decodeOemProcessorType:(SMBOemProcessorType *)structHeader +{ + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: SHVAL(ProcessorType), nil ] + forKeys: [NSArray arrayWithObjects:@"Processor Type", nil]]; + ADD_HANDLE(@"Apple Processor Type"); + + DBG("AppleProcessorType:\n"); + DBG("\tProcessorType: 0x%x\n", ((SMBOemProcessorType *)structHeader)->ProcessorType); + DBG("\n"); +} + +-(void) decodeOemProcessorBusSpeed:(SMBOemProcessorBusSpeed *)structHeader +{ + NSString * qpi = [NSString stringWithFormat:@"%d.%d GT/s", + ((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 1000, + (((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 100) % 10]; + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: + [NSArray arrayWithObjects: qpi, nil ] forKeys: [NSArray arrayWithObjects:@"Bus Speed (QPI)", nil]]; + ADD_HANDLE(@"Apple Processor Bus Speed"); + + DBG("AppleProcessorBusSpeed:\n"); + DBG("\tProcessorBusSpeed (QPI): %d.%dGT/s\n", + ((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 1000, + (((SMBOemProcessorBusSpeed *)structHeader)->ProcessorBusSpeed / 100) % 10); + DBG("\n"); +} +//------------------------------------------------------------------------------------------------------------------------- + + +-(void) decodeSMBIOSTableFrom:(uint8_t *) ptr to: (uint8_t*) end +{ + DBG("\n"); + for (SMBStructHeader *structHeader = (SMBStructHeader*)ptr; structHeader < (SMBStructHeader*)end ;) + { + // DBG("Type: %d, Length: %d, Handle: 0x%x\n", structHeader->type, structHeader->length, structHeader->handle); + switch (structHeader->type) + { + case kSMBTypeBIOSInformation: + [self decodeBIOSInformation: (SMBBIOSInformation *) structHeader]; + break; + + case kSMBTypeSystemInformation: + [self decodeSystemInformation: (SMBSystemInformation *)structHeader]; + break; + + case kSMBTypeBaseBoard: + [self decodeBaseBoard: (SMBBaseBoard *)structHeader]; + break; + + case kSMBTypeSystemEnclosure: + [self decodeSystemEnclosure:(SMBSystemEnclosure *)structHeader]; + break; + + case kSMBTypeProcessorInformation: + [self decodeProcessorInformation:(SMBProcessorInformation *)structHeader]; + break; + + case kSMBTypeMemoryDevice: + [self decodeMemoryDevice:(SMBMemoryDevice *)structHeader]; + break; + + case kSMBTypeOemProcessorType: + [self decodeOemProcessorType:(SMBOemProcessorType *)structHeader]; + break; + + case kSMBTypeOemProcessorBusSpeed: + [self decodeOemProcessorBusSpeed:(SMBOemProcessorBusSpeed *)structHeader]; + break; + + case kSMBTypeEndOfTable: /* Skip, to be added at the end */ + /* Skip all Apple Specific Structures */ + case kSMBTypeFirmwareVolume: + case kSMBTypeMemorySPD: + default: + { +/* + NSDictionary* innerDict = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: nil ] forKeys: [NSArray arrayWithObjects:nil]]; + NSString* title = [NSString stringWithFormat:@"Type %d Len=%d (0x%02x)", (int) structHeader->type, structHeader->length, structHeader->handle]; + [dict setValue:innerDict forKey: title ]; + */ + } + break; + } + + ptr = (uint8_t*) (((unsigned long)structHeader) + structHeader->length); + for (; ((uint16_t *)ptr)[0] != 0; ptr++); + + if (((uint16_t *)ptr)[0] == 0) + ptr += 2; + + structHeader = (SMBStructHeader *)ptr; + } + DBG("\n"); +} + +//------------------------------------------------------------------------------------------- +// Outline view datasource methods +//------------------------------------------------------------------------------------------- +- (int)outlineView:(NSOutlineView *)ov numberOfChildrenOfItem:(id)item +{ + // this is called with item == nil when asking how many root items there are + if (item == nil) + return [self.content count]; // return the number of A's we have + + // Here, item will be an A, so we return the count of A's items + return [[item subitems] count]; +} + +//------------------------------------------------------------------------------------------- +- (BOOL)outlineView:(NSOutlineView *)ov isItemExpandable:(id)item +{ + // this is called to ask if a particular item has any child items + // to determine this, we need to know if it is an A which might have some, + // or a B, which doesn't have any. This will be called to see if numberOfChildrenOfItem + // should be called on the item passed in to determine how many. + + // Ours, only A's are potentially expandable. They also have to have some subitems + return [item isKindOfClass:[NSDictionary class]] && [[item subitems] count] > 0; +} + +//------------------------------------------------------------------------------------------- +- (id)outlineView:(NSOutlineView *)ov child:(int)index ofItem:(id)item +{ + // Here, the outline view is asking for the whole child item. Not values + // within it yet. In our case, both the single root item (nil) and A's have + // childs. This is called after asking numberOfChildrenOfItem. We return + // the children themselves here. When passed nil for item, the outline view + // is asking for the root level items + + // Asking for A's + if (item == nil) + return content; + + // Here, item is an A, and it's asking for our B child item at the index + if ([item isKindOfClass:[NSDictionary class]]) + return [[item subitems] objectAtIndex:index]; + + // shouldn't get here + return nil; +} + +//------------------------------------------------------------------------------------------- +- (id)outlineView:(NSOutlineView *)ov +objectValueForTableColumn:(NSTableColumn *)tc + byItem:(id)item +{ + // Finally, as the last step, this method is called to get the actual + // values (or display items) for a instance of A or B + // You can do special cases based on whether you are passed an A or B + // or simply make this a one liner by calling return [item valueForKey:[tc identifier]], + // but both A and B have to have the supporting interfaces implemented the same. + + // if there is some difference, or you want to trap different things depending on + // which class you are passed as item, you can also check here... + + if ([item isKindOfClass:[NSDictionary class]]) + { + // Do something special for A's here to calculate value + // (I'm getting lazy though) + return [item valueForKey:[tc identifier]]; + } + + // won't get here + return item; +} +@end Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.mm ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.cpp (revision 396) @@ -0,0 +1,389 @@ +/* + * property_list.cpp + * + * Created by Rekursor on 1/17/10. + * + */ + +#import "ChameleonPropertyList.h" +#include "file_util.h" +#include +#include + + +//-------------------------------------------------------------------------- +// Simple parsing and splitting args function, does handle env. vars +//-------------------------------------------------------------------------- +static void parseArgs(const char * args, const char* argv[], int argvlen) +{ + // Create a list of args fron the space delimited args parameters + int n=0; + if (args && *args) + { + bool skipSpaces = true; + bool prevCharwasDelim =false; + char * buf = strdup(args); + char lastPriorityDelim=' '; + + printf("Parsing <%s>\n", args); + + int k=0; + for (int i=0; i< strlen(args); i++) + { + switch (args[i]) + { + case ' ': case '\t': + if(!skipSpaces) { + buf[k++]=args[i]; + } + else { + prevCharwasDelim = true; // // keep a track of delim to further split tokens + } + break; + case '\0': + case '\'': + case '"': + if (!skipSpaces &&lastPriorityDelim!=args[i]) + { // consider the imbricated delim as a simple char + buf[k++]=args[i]; + break; + } + + if (!skipSpaces) // end of priority substr + { + skipSpaces = true; + lastPriorityDelim=' '; + buf[k]='\0'; + argv[n++]=strdup(buf); // copy the priority substr + k=0; // reset the buf index for next token + buf[0]='\0'; + } + else + { // start of priority substr + skipSpaces=false; + lastPriorityDelim=args[i]; + if(k>0) // previous string to store first + { + buf[k++]='\0'; // finish the substr + argv[n++]=strdup(buf); // copy the substr + k=0; // rest the index for next token + buf[0]='\0'; + } + //if (args[i] !='\0') buf[k++] = args[i]; // start the new priority substr + } + break; + default: // non delimiters chars + if(skipSpaces && prevCharwasDelim) + { + if(k>0) // a previous substr was before the space + { // store previous token + buf[k++]='\0'; // finish the substr + argv[n++]=strdup(buf); // copy the substr + k=0; // rest the index for next token + buf[0]='\0'; + } + } + prevCharwasDelim = false; + buf[k++]=args[i]; + break; + } + } + + if(*buf) + { + buf[k]='\0'; + argv[n++]=strdup(buf); // copy the last buffer + } + free((void*) buf); + } + argv[n]=NULL; +} + +//-------------------------------------------------------------------------- +// Execute a priviledge shell command : will wait for execution termination +// by calling wait() +//-------------------------------------------------------------------------- + bool executePrivilegedCmd(AuthorizationRef auth, + const char* pathToTool, + const char* args, + AuthorizationFlags flags) +{ + const char * argv[16]; + + parseArgs(args, argv, sizeof(argv)/sizeof(const char*)); + + // Execute Cmd + OSStatus status = AuthorizationExecuteWithPrivileges(auth, pathToTool,flags, (char**)argv, NULL); + // Wait for the child process of AEWP to terminate: + int wait_status=0; + /* pid_t pid = */ + wait(&wait_status); + // usleep(10000); // 10 ms + // Cleanup mem + for (int i=0; argv[i]; i++) free ((void*) argv[i]); + + return status ? false : true; +} + +//-------------------------------------------------------------------------- +// Execute priviledged chmod for accessing system files +//-------------------------------------------------------------------------- +bool PropertyList::chmodFile(const char * path, const char * chmodMask, + AuthorizationRef auth, AuthorizationFlags flags) +{ + if (!path || !*path) return false; + + if (auth) + { // give write temporary write rights to the file + std::string args = chmodMask; + args += ' '; + args += path; + struct stat st; + if (stat(path,&st)!=0) + executePrivilegedCmd(auth, "/usr/bin/touch", path, flags); + if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str(), flags)) + return false; + } + return true; + +} + +//-------------------------------------------------------------------------- +// Write a property list from a file +//-------------------------------------------------------------------------- +bool WritePropertyListToFile( CFPropertyListRef propertyList, CFURLRef fileURL ) +{ + CFDataRef xmlData; + Boolean status; + SInt32 errorCode; + + // Convert the property list into XML data. + xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList ); + + // Write the XML data to the file. + status = CFURLWriteDataAndPropertiesToResource ( + fileURL, // URL to use + xmlData, // data to write + NULL, + &errorCode); + CFRelease(xmlData); + + return status ? true: false; +} + +//-------------------------------------------------------------------------- +// Read a property list from a file +//-------------------------------------------------------------------------- +static CFPropertyListRef CreatePropertyListFromFile( CFURLRef fileURL, + const std::string& filePath, + CFStringRef * errorString, + bool createIfNotExist) { + CFPropertyListRef propertyList; + CFDataRef resourceData; + Boolean status; + SInt32 errorCode; + // + if (!fileExists(filePath)) + { + if (createIfNotExist) + { + CFMutableDictionaryRef dict = + CFDictionaryCreateMutable( kCFAllocatorDefault, 0, + &kCFTypeDictionaryKeyCallBacks, + &kCFTypeDictionaryValueCallBacks ); + WritePropertyListToFile(dict, fileURL); + } + + } + // Read the XML file. + status = CFURLCreateDataAndPropertiesFromResource( + kCFAllocatorDefault, + fileURL, + &resourceData, // place to put file data + NULL, + NULL, + &errorCode); + if (!status) return NULL; + + // Reconstitute the dictionary using the XML data. + propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault, + resourceData, + kCFPropertyListMutableContainersAndLeaves, + errorString); + + + CFRelease( resourceData ); + return propertyList; +} + +//-------------------------------------------------------------------------- +// Always return a valid static const string, +// if the CFSTR is not valid, then we return "" +//-------------------------------------------------------------------------- +static const char * CfsToCs(CFStringRef inRef) +{ + static char *buffer=NULL; + CFIndex len = CFStringGetLength(inRef); + if (buffer) { + delete[] buffer; + } + buffer = new char[len+1]; + if(CFStringGetFileSystemRepresentation (inRef, buffer, len+1)) + return buffer; + return ""; +} + +//-------------------------------------------------------------------------- +// Destruct a PropertyList Instance +//-------------------------------------------------------------------------- +PropertyList::~PropertyList() +{ + cleanup(); +} + +//-------------------------------------------------------------------------- +// Cleanup a PropertyList Instance +//-------------------------------------------------------------------------- +void PropertyList::cleanup() +{ + if (_CFURLRef) + { + CFRelease(_CFURLRef); + _CFURLRef = NULL; + } + + if (_proplistRef) + { + CFRelease(_proplistRef); + _proplistRef = NULL; + } + _propFilePath = ""; +} + +//-------------------------------------------------------------------------- +// Open a property list from a path name with auth +//-------------------------------------------------------------------------- +bool PropertyList::open(const char * path, bool createIfNotExist, AuthorizationRef auth, AuthorizationFlags flags) +{ + bool ret = false; + + cleanup(); + + if (!path || !*path || !(createIfNotExist || fileExists(path)) ) + return false; + + _propFilePath = path; + CFStringRef cfPath = CFStringCreateWithCString (kCFAllocatorDefault, path, kCFStringEncodingUTF8); + CFURLRef inURL = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, + cfPath, + kCFURLPOSIXPathStyle, // interpret as POSIX path + false ); // is it a directory? + CFRelease(cfPath); + if (_CFURLRef) CFRelease(_CFURLRef); + _CFURLRef = inURL; + + if (_CFURLRef) + { + CFRetain(_CFURLRef); + + // give write temporary write rights to the file + if (!chmodFile(path,"0777", auth, flags)) return false; + + _proplistRef = CreatePropertyListFromFile(inURL, _propFilePath, &_errorString, createIfNotExist); + + // restore rights + ret= chmodFile(path,"0644", auth, flags); + + if (_proplistRef) { + CFRetain(_proplistRef); + ret= true; + } + } + + return ret; +} + +//-------------------------------------------------------------------------- +// Save the current property list +//-------------------------------------------------------------------------- +bool PropertyList::save(AuthorizationRef auth, AuthorizationFlags flags) +{ + bool ret=false; + if (auth) + { // give write temporary write rights to the file + std::string args = " 0777 "+ _propFilePath; + if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str(), flags)) + return false; + } + if (_proplistRef && _CFURLRef) + ret= WritePropertyListToFile(_proplistRef,_CFURLRef); + if (auth) + { // give write temporary write rights to the file + std::string args = " 0644 "+ _propFilePath; + if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str(), flags)) + return false; + } + return ret; +} + +//-------------------------------------------------------------------------- +// Get a string value from a property list key, +// value returned is not owned by caller, copy it necessary. +//-------------------------------------------------------------------------- +const char * PropertyList::getStringForKey(const char *key) +{ + if (!_proplistRef) return NULL; + CFStringRef cfKey = CFStringCreateWithCString (kCFAllocatorDefault, key, kCFStringEncodingUTF8); + CFStringRef myString; + + if (_proplistRef && CFDictionaryGetValueIfPresent((CFMutableDictionaryRef)_proplistRef, + cfKey, (const void **) &myString)) + { + CFRelease(cfKey); + return CfsToCs(myString); + } + + if(cfKey) CFRelease(cfKey); + return NULL; +} + +//-------------------------------------------------------------------------- +// Replace or add a string value from a property list key, +// value returned is not owned by caller, copy it necessary. +//-------------------------------------------------------------------------- +bool PropertyList::setStringForKey(const char *key, const char * value) +{ + if (!_proplistRef) return false; + bool ret = false; + CFStringRef cfKey = CFStringCreateWithCString (kCFAllocatorDefault, key, kCFStringEncodingUTF8); + CFStringRef myString = CFStringCreateWithCString (kCFAllocatorDefault, value, kCFStringEncodingUTF8); + CFMutableDictionaryRef myDict = (CFMutableDictionaryRef) _proplistRef; + + if (myDict) + { + CFDictionarySetValue(myDict, cfKey, myString); + ret=true; + } + if(cfKey) CFRelease(cfKey); + if(myString) CFRelease(myString); + return ret; +} + +//-------------------------------------------------------------------------- +// Delete a key and its value from the dictionary +//-------------------------------------------------------------------------- +bool PropertyList::removeKeyAndValue(const char *key) +{ + if (!_proplistRef) return false; + bool ret = false; + + CFStringRef cfKey = CFStringCreateWithCString (kCFAllocatorDefault, key, kCFStringEncodingUTF8); + + if (_proplistRef) { + CFDictionaryRemoveValue((CFMutableDictionaryRef) _proplistRef, cfKey); + ret=true; + } + if(cfKey) CFRelease(cfKey); + return ret; +} + Index: branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.mm (revision 396) @@ -0,0 +1,24 @@ +// +// CenterTextField.mm +// ChameleonPrefPane +// +// Created by Rekursor on 11/10/11. +// + +#import "CenterTextFieldCell.h" + +//-------------------------------------------------------------------------- +@implementation CenteredTextFieldCell +//-------------------------------------------------------------------------- +- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView +{ + NSSize contentSize = [self cellSize]; + cellFrame.origin.y += (cellFrame.size.height - contentSize.height) / 2.0; + cellFrame.size.height = contentSize.height; + + [super drawInteriorWithFrame:cellFrame inView:controlView]; +} + +@end + + Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/CenterTextFieldCell.mm ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.mm (revision 396) @@ -0,0 +1,77 @@ +// +// AdvancedSetupController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "AdvancedSetupController.h" + +static AdvancedSetupController *gInstance = NULL; + +@implementation AdvancedSetupController + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +- (void) addOptionsDesc +{ + BootProp::instance().addOptionDesc(mKernel, mKernelText, OptionKernel1, "Kernel", "mach_kernel"); // empty field for 1 field only "i.e: mach_kernel" syntax + BootProp::instance().addOptionDesc(mDeviceRd, mDeviceRdText, OptionKernel, "rd", ""); + BootProp::instance().addOptionDesc(mArch, mArchText, OptionKernel, "arch", ""); + BootProp::instance().addOptionDesc(mCPU, mCPUText, OptionKernel, "cpus", ""); + BootProp::instance().addOptionDesc(mBusRatio, mBusRatioText, OptionKernel, "busratio", ""); + BootProp::instance().addOptionDesc(mDebug, mDebugText, OptionKernel, "debug", ""); + BootProp::instance().addOptionDesc(mIO, mIOText, OptionString, "io", ""); + BootProp::instance().addOptionDesc(mDisableKextsBlacklisting, nil, OptionUnix, "blacklist=0", ""); + BootProp::instance().addOptionDesc(mDSDTFile, mDSDTFileText, OptionFileString, "DSDT", ""); + BootProp::instance().addOptionDesc(mDSDTDrop, nil, OptionYesNo, "DropSSDT", "No"); + BootProp::instance().addOptionDesc(mSMBIOSFile,mSMBIOSFileText, OptionFileString, "SMBIOS", ""); + BootProp::instance().addOptionDesc(mSMBIOSDefaults, nil, OptionYesNo, "SMBIOSdefaults", "Yes"); + BootProp::instance().addOptionDesc(mWake, nil, OptionYesNo, "Wake", "No"); + BootProp::instance().addOptionDesc(mForceWake, nil, OptionYesNo, "ForceWake", "No"); + BootProp::instance().addOptionDesc(mWakeImage, mWakeImageText, OptionFileString, "WakeImage", ""); + BootProp::instance().addOptionDesc(mSystemId, mSystemIdText, OptionString, "SystemId", ""); + BootProp::instance().addOptionDesc(mSystemType, mSystemTypeText, OptionString, "SystemType", ""); + BootProp::instance().addOptionDesc(mRestartFix, nil, OptionYesNo, "RestartFix", "Yes"); + BootProp::instance().addOptionDesc(mGeneratePStates, nil, OptionYesNo, "GeneratePStates", "No"); + BootProp::instance().addOptionDesc(mGenerateCStates, nil, OptionYesNo, "GenerateCStates", "No"); +} + +//-------------------------------------------------------------------------- +-(void) setDefaultsValues: (NSMutableDictionary*) dict +{ +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + // automatic, nothing to do +} + +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + +} + +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + [self handleSender: sender]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + [self handleSender: sender]; +} + ++ (AdvancedSetupController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPrefPane.h (revision 396) @@ -0,0 +1,74 @@ +// +// ChameleonPrefPane.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/16/10. +// + +#import +#import +#import +#import "CustomTableView.h" +#import "RoundedBox.h" + + +// Constants definition +#define keyForceBootConfigPath @"forceBootConfigPath" +#define keyCdBootPath @"CdBootPath" +#define keySwapHD01 @"swapHD01" +#define keySwapHD02 @"swapHD02" +#define keyUseFrozenParts @"useFrozenParts" +#define keyPartitionsList @"partitionsList" +#define kPreferencesFilePath @"/Library/Preferences/org.chameleon.prefPane.plist" +#define keyPreferencesFileVersion @"version" // for future back compatibility + +// Interface + +@interface ChameleonPrefPane : NSPreferencePane +{ +@public + IBOutlet SFAuthorizationView *authView; + + IBOutlet RoundedBox * box; + IBOutlet RoundedBox * footer; + IBOutlet NSColorWell *gradientStartColorWell; + IBOutlet NSColorWell *gradientEndColorWell; + IBOutlet NSColorWell *backgroundColorWell; + IBOutlet NSColorWell *borderColorWell; + IBOutlet NSView *mainView; + +@private + // Objects corresponding to the interface mapping: + IBOutlet NSButton * mSleepButton; + IBOutlet NSButton * mShutDownButton; + IBOutlet NSButton * mRestartButton; + IBOutlet NSTextField* mStatusText; + IBOutlet NSBox* mOptions; + + + NSMutableDictionary* mOptionsDict; + NSMutableDictionary* mPartitionsDict; + + int mPreferenceFileVersion; +} + ++ (ChameleonPrefPane*) instance; // return the current instance +- (void) loadPreferences; +- (bool) savePreferences: (NSDictionary*) dict; +- (NSMutableDictionary*) preferencesFile; +- (NSMutableDictionary*) preferencesParts; + +- (IBAction)onRestart: (id)sender; +- (IBAction)onShutdown: (id)sender; +- (IBAction)onSleep: (id)sender; + +- (void)awakeFromNib; +- (void)initBootConfig; +- (void) selectDefaultPartition; + +- (bool)isUnlocked; +- (void) refreshLockStates; +- ( AuthorizationRef) auth; + + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/file_util.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/file_util.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/file_util.h (revision 396) @@ -0,0 +1,26 @@ +/* + * file_util.h + * ChameleonPrefPane + * + * Created by Rekursor on 1/24/10. + * + */ +#ifndef __CHFILE_UTIL_H +#define __CHFILE_UTIL_H +#include +#include + +/** + * Check whether file exists: + */ +inline bool fileExists(const char * str) +{ + struct stat stFileInfo; + if((stat(str,&stFileInfo)) == 0) return true; + else return false; +} + +inline bool fileExists(std::string str) {return fileExists(str.c_str());} + + +#endif Index: branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.h (revision 396) @@ -0,0 +1,17 @@ +// +// CustomTableView.h +// ChameleonPrefPane +// +// Created by Rekursor on 11/10/11. +// + +#import + + +@interface CustomTableView : NSTableView { + NSColor * mHighlightColorInFocusView; + NSColor * mHighlightColorOutOfFocusView; + +} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.m =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.m (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/RoundedBox.m (revision 396) @@ -0,0 +1,378 @@ +// +// RoundedBox.m +// RoundedBox +// +// Created by Matt Gemmell on 01/11/2005. +// Copyright 2006 Matt Gemmell. http://mattgemmell.com/ +// +// Permission to use this code: +// +// Feel free to use this code in your software, either as-is or +// in a modified form. Either way, please include a credit in +// your software's "About" box or similar, mentioning at least +// my name (Matt Gemmell). A link to my site would be nice too. +// +// Permission to redistribute this code: +// +// You can redistribute this code, as long as you keep these +// comments. You can also redistribute modified versions of the +// code, as long as you add comments to say that you've made +// modifications (keeping these original comments too). +// +// If you do use or redistribute this code, an email would be +// appreciated, just to let me know that people are finding my +// code useful. You can reach me at matt.gemmell@gmail.com +// + +#import "RoundedBox.h" + + +@implementation RoundedBox + + +- (id)initWithFrame:(NSRect)frame { + self = [super initWithFrame:frame]; + if (self) { + [self setDefaults]; + } + return self; +} + + +- (void)dealloc +{ + [borderColor release]; + [titleColor release]; + [gradientStartColor release]; + [gradientEndColor release]; + [backgroundColor release]; + [titleAttrs release]; + + [super dealloc]; +} + + +- (void)setDefaults +{ + borderWidth = 2.0; + [self setBorderColor:[NSColor colorWithCalibratedRed:0.38 green:0.48 blue:0.68 alpha: 1.0]]; + [self setTitleColor:[NSColor whiteColor]]; + [self setGradientStartColor:[NSColor colorWithCalibratedWhite:0.93 alpha:1.0]]; + [self setGradientEndColor:[NSColor colorWithCalibratedWhite:0.82 alpha:1.0]]; + [self setBackgroundColor:[NSColor colorWithCalibratedWhite:0.90 alpha:1.0]]; + [self setTitleFont:[NSFont boldSystemFontOfSize:[NSFont systemFontSizeForControlSize:NSSmallControlSize]]]; + + // Set up text attributes for drawing + NSMutableParagraphStyle *paragraphStyle; + paragraphStyle = [[NSMutableParagraphStyle alloc] init]; + [paragraphStyle setParagraphStyle:[NSParagraphStyle defaultParagraphStyle]]; + [paragraphStyle setAlignment:NSLeftTextAlignment]; + [paragraphStyle setLineBreakMode:NSLineBreakByTruncatingTail]; + + titleAttrs = [[NSMutableDictionary dictionaryWithObjectsAndKeys: + [self titleFont], NSFontAttributeName, + [self titleColor], NSForegroundColorAttributeName, + [paragraphStyle autorelease], NSParagraphStyleAttributeName, + nil] retain]; + + [self setDrawsFullTitleBar:YES]; + [self setSelected:NO]; + [self setDrawsGradientBackground:YES]; +} + + +- (void)awakeFromNib +{ + // For when we've been created in a nib file + [self setDefaults]; + +} + + +- (BOOL)preservesContentDuringLiveResize +{ + // NSBox returns YES for this, but doing so would screw up the gradients. + return NO; +} + + +- (void)drawRect:(NSRect)rect { + + // Construct rounded rect path + NSRect boxRect = [self bounds]; + NSRect bgRect = NSInsetRect(boxRect, borderWidth / 2.0, borderWidth / 2.0); + bgRect = NSIntegralRect(bgRect); + bgRect.origin.x += 0.5; + bgRect.origin.y += 0.5; + int minX = NSMinX(bgRect); + int midX = NSMidX(bgRect); + int maxX = NSMaxX(bgRect); + int minY = NSMinY(bgRect); + int midY = NSMidY(bgRect); + int maxY = NSMaxY(bgRect); + float radius = 4.0; + NSBezierPath *bgPath = [NSBezierPath bezierPath]; + + // Bottom edge and bottom-right curve + [bgPath moveToPoint:NSMakePoint(midX, minY)]; + [bgPath appendBezierPathWithArcFromPoint:NSMakePoint(maxX, minY) + toPoint:NSMakePoint(maxX, midY) + radius:radius]; + + // Right edge and top-right curve + [bgPath appendBezierPathWithArcFromPoint:NSMakePoint(maxX, maxY) + toPoint:NSMakePoint(midX, maxY) + radius:radius]; + + // Top edge and top-left curve + [bgPath appendBezierPathWithArcFromPoint:NSMakePoint(minX, maxY) + toPoint:NSMakePoint(minX, midY) + radius:radius]; + + // Left edge and bottom-left curve + [bgPath appendBezierPathWithArcFromPoint:NSMakePoint(minX, minY) + toPoint:NSMakePoint(midX, minY) + radius:radius]; + [bgPath closePath]; + + + // Draw background + + if ([self drawsGradientBackground]) { + // Draw gradient background + NSGraphicsContext *nsContext = [NSGraphicsContext currentContext]; + [nsContext saveGraphicsState]; + [bgPath addClip]; + NSGradient *gradient = [[[NSGradient alloc] + initWithStartingColor:[self gradientStartColor] + endingColor:[self gradientEndColor]] autorelease]; + NSRect gradientRect = [bgPath bounds]; + [gradient drawInRect:gradientRect angle:270.0]; + [nsContext restoreGraphicsState]; + } else { + // Draw solid color background + [backgroundColor set]; + [bgPath fill]; + } + + + // Create drawing rectangle for title + + float titleHInset = borderWidth + 4.0; + float titleVInset = borderWidth; + NSSize titleSize = [[self title] sizeWithAttributes:titleAttrs]; + NSRect titleRect = NSMakeRect(boxRect.origin.x + titleHInset, + boxRect.origin.y + boxRect.size.height - titleSize.height - (titleVInset * 2.0), + titleSize.width + borderWidth, + titleSize.height); + titleRect.size.width = MIN(titleRect.size.width, boxRect.size.width - (2.0 * titleHInset)); + + if ([self selected]) { + [[NSColor alternateSelectedControlColor] set]; + // We use the alternate (darker) selectedControlColor since the regular one is too light. + // The alternate one is the highlight color for NSTableView, NSOutlineView, etc. + // This mimics how Automator highlights the selected action in a workflow. + } else { + [borderColor set]; + } + + + // Draw title background + //NSRectFill(titleRect); + [[self titlePathWithinRect:bgRect cornerRadius:radius titleRect:titleRect] fill]; + + + // Draw rounded rect around entire box + if (borderWidth > 0.0) { + [bgPath setLineWidth:borderWidth]; + [bgPath stroke]; + } + + + // Draw title text + [[self title] drawInRect:titleRect withAttributes:titleAttrs]; + //[[self titleCell] setTextColor:[self titleColor]]; + //[[self titleCell] drawWithFrame:titleRect inView:self]; +} + + +- (NSBezierPath *)titlePathWithinRect:(NSRect)rect cornerRadius:(float)radius titleRect:(NSRect)titleRect +{ + // Construct rounded rect path + + NSRect bgRect = rect; + int minX = NSMinX(bgRect); + int maxX = minX + titleRect.size.width + ((titleRect.origin.x - rect.origin.x) * 2.0); + int maxY = NSMaxY(bgRect); + int minY = NSMinY(titleRect) - (maxY - (titleRect.origin.y + titleRect.size.height)); + float titleExpansionThreshold = 20.0; + // i.e. if there's less than 20px space to the right of the short titlebar, just draw the full one. + + NSBezierPath *path = [NSBezierPath bezierPath]; + + [path moveToPoint:NSMakePoint(minX, minY)]; + + if (bgRect.size.width - titleRect.size.width >= titleExpansionThreshold && ![self drawsFullTitleBar]) { + // Draw a short titlebar + [path appendBezierPathWithArcFromPoint:NSMakePoint(maxX, minY) + toPoint:NSMakePoint(maxX, maxY) + radius:radius]; + [path lineToPoint:NSMakePoint(maxX, maxY)]; + } else { + // Draw full titlebar, since we're either set to always do so, or we don't have room for a short one. + [path lineToPoint:NSMakePoint(NSMaxX(bgRect), minY)]; + [path appendBezierPathWithArcFromPoint:NSMakePoint(NSMaxX(bgRect), maxY) + toPoint:NSMakePoint(NSMaxX(bgRect) - (bgRect.size.width / 2.0), maxY) + radius:radius]; + } + + [path appendBezierPathWithArcFromPoint:NSMakePoint(minX, maxY) + toPoint:NSMakePoint(minX, minY) + radius:radius]; + + [path closePath]; + + return path; +} + + +- (void)setTitle:(NSString *)newTitle +{ + [super setTitle:newTitle]; + [self setNeedsDisplay:YES]; +} + + +- (BOOL)drawsFullTitleBar +{ + return drawsFullTitleBar; +} + + +- (void)setDrawsFullTitleBar:(BOOL)newDrawsFullTitleBar +{ + drawsFullTitleBar = newDrawsFullTitleBar; + [self setNeedsDisplay:YES]; +} + + +- (BOOL)selected +{ + return selected; +} + + +- (void)setSelected:(BOOL)newSelected +{ + selected = newSelected; + [self setNeedsDisplay:YES]; +} + + +- (NSColor *)borderColor +{ + return borderColor; +} + + +- (void)setBorderColor:(NSColor *)newBorderColor +{ + [newBorderColor retain]; + [borderColor release]; + borderColor = newBorderColor; + [self setNeedsDisplay:YES]; +} + +- (void)setBorderWidth:(CGFloat)newBorderWidth +{ + borderWidth = newBorderWidth; + [self setNeedsDisplay:YES]; +} + +- (NSColor *)titleColor +{ + return titleColor; +} + + +- (void)setTitleColor:(NSColor *)newTitleColor +{ + [newTitleColor retain]; + [titleColor release]; + titleColor = newTitleColor; + + [titleAttrs setObject:titleColor forKey:NSForegroundColorAttributeName]; + + [self setNeedsDisplay:YES]; +} + + +- (NSColor *)gradientStartColor +{ + return gradientStartColor; +} + + +- (void)setGradientStartColor:(NSColor *)newGradientStartColor +{ + // Must ensure gradient colors are in NSCalibratedRGBColorSpace, or Core Image gets angry. + NSColor *newCalibratedGradientStartColor = [newGradientStartColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace]; + [newCalibratedGradientStartColor retain]; + [gradientStartColor release]; + gradientStartColor = newCalibratedGradientStartColor; + if ([self drawsGradientBackground]) { + [self setNeedsDisplay:YES]; + } +} + + +- (NSColor *)gradientEndColor +{ + return gradientEndColor; +} + + +- (void)setGradientEndColor:(NSColor *)newGradientEndColor +{ + // Must ensure gradient colors are in NSCalibratedRGBColorSpace, or Core Image gets angry. + NSColor *newCalibratedGradientEndColor = [newGradientEndColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace]; + [newCalibratedGradientEndColor retain]; + [gradientEndColor release]; + gradientEndColor = newCalibratedGradientEndColor; + if ([self drawsGradientBackground]) { + [self setNeedsDisplay:YES]; + } +} + + +- (NSColor *)backgroundColor +{ + return backgroundColor; +} + + +- (void)setBackgroundColor:(NSColor *)newBackgroundColor +{ + [newBackgroundColor retain]; + [backgroundColor release]; + backgroundColor = newBackgroundColor; + if (![self drawsGradientBackground]) { + [self setNeedsDisplay:YES]; + } +} + + +- (BOOL)drawsGradientBackground +{ + return drawsGradientBackground; +} + + +- (void)setDrawsGradientBackground:(BOOL)newDrawsGradientBackground +{ + drawsGradientBackground = newDrawsGradientBackground; + [self setNeedsDisplay:YES]; +} + + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/AboutController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/AboutController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/AboutController.h (revision 396) @@ -0,0 +1,22 @@ +// +// About.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/27/10. +// + +#import + + +@interface AboutController : NSObject { + IBOutlet NSPanel* mAboutDlg; + + NSBundle* bundle; + NSString* sCredits; +} + +- (IBAction)onAbout: (id)sender; +- (NSString *)bundleVersionNumber; +- (NSString *)credits; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoManager.h (revision 396) @@ -0,0 +1,38 @@ +// +// PartitionInfoManager.h +// ChameleonPrefPane +// +// Encapsulate the handling & interfacing of all disk partitions +// Implements: Singleton DP +// +// Created by Rekursor on 11-11-13. +// + +#import +#import "PartitionInfoElement.h" + +@interface PartsInfoMgr : NSObject { + +} + ++(NSArray*)parts; ++(NSUInteger) count; ++(PartitionInfoElement*) objectAtIndex:(NSUInteger) index; + ++(void) hideParts: (NSString*) partSpec; ++(void) renameParts: (NSString*) partSpec; + ++(PartitionInfoElement*) partWithName: (NSString*) nameSpec; ++(PartitionInfoElement*) partWithName: (NSString*) nameSpec outIndex:(NSUInteger*) ind; + ++(void) reload; ++(void) reloadWithHideSpec: (NSString*) hideSpec andRenameSpec:(NSString*) renSpec; + +// Partitions swapping mgt ++(void)resetSwapping; ++(void)swapHD:(NSUInteger) src with:(NSUInteger) dst; + ++(NSString*) getRenameStringFrom:(NSString*) currentStr andPartition: (PartitionInfoElement*) partInfo; + + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.mm (revision 396) @@ -0,0 +1,108 @@ +// +// EfiInject.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/26/10. +// + +#import "SmbiosController.h" +#import +#import "SmbiosExtractor.h" +#import "PreferencesControllerBase.h" +static SmbiosController *gInstance = NULL; + +@implementation SmbiosController +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +- (void) addOptionsDesc +{ + // Add future smbios options here + // BootProp::instance().addOptionDesc(mEfiInject, mEfiInjectText, OptionString, "device-properties", ""); +} + +//-------------------------------------------------------------------------- +-(void) setDefaultsValues: (NSMutableDictionary*) dict +{ +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + [PreferencesControllerBase refreshLockState: mEditSmbios]; + // [PreferencesControllerBase refreshLockState: mExtractACPITables ]; +} + +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + +} +- (const char *) getSmbiosFilePath +{ + static std::string path; + if (fileExists("/Extra/smbios.plist")) + return "/Extra/smbios.plist"; + else if (fileExists("/smbios.plist")) + return "/smbios.plist"; + + return ""; //not found +} + +- (const char *) getAppleSmbiosFilePath +{ + SmbiosExtractor* smbe = [[[SmbiosExtractor alloc] init] autorelease]; + NSString* path = [NSString stringWithFormat:@"%@/%@", [kChameleonUserRootDir stringByExpandingTildeInPath],kAppleSmbiosFileName]; + [smbe save:path ]; + return [path UTF8String]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + if(sender == mEditSmbios) + { + std::string smbiosPath = [self getSmbiosFilePath ]; + AuthorizationRef auth = [[self chameleon] auth ]; + if (smbiosPath.length()==0 || auth==nil) return; + + std::string cmd = "/usr/bin/open " + smbiosPath; + system(cmd.c_str()); + + } + else if(sender == mAppleSmbios) + { + std::string smbiosPath = [self getAppleSmbiosFilePath ]; + if (smbiosPath.length()==0) return; + std::string cmd = "/usr/bin/open " + smbiosPath; + system(cmd.c_str()); + + } + else if(sender == mExtractACPITables) + { + std::string cmd = "/bin/bash "; + + std::string path = [[self getResourcePath:@"extractAcpi" ofType:@"sh"] UTF8String]; + cmd += path; +// [self executeTaskAndWaitForTermination: [[NSString alloc] initWithUTF8String:path.c_str()] ]; + cmd += " && /usr/bin/open ${HOME}/Desktop/Chameleon/ACPI"; + system(cmd.c_str()); + } + else + [self handleSender: sender]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + [self handleSender: sender]; +} + ++ (SmbiosController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/GroupControllerProtocol.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/GroupControllerProtocol.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/GroupControllerProtocol.h (revision 396) @@ -0,0 +1,37 @@ +// +// GroupControllerProtocol.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/25/10. +// Copyright 2010 __MyCompanyName__. All rights reserved. +// + +#import + + +// Defintion of the required protocol for any derived classes of PreferencesControllerBase +@protocol GroupControllerProtocol + +@required +// must be implemented in all derived classes + +// Called by all buttons of each group in therface +- (IBAction) onCheckButtonChange: (NSButton*) sender; + +// Called by all text fields of each group in therface +- (IBAction) onTextFiedChange: (NSTextField*) sender; + +// Add the boot config options descriptors to the consolidated dictionary +- (void) addOptionsDesc; + +// Permit to each group to customize his default settings +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + +// Set refresh all group states {enabled | disabled} depending on the authorizations state +- (void) refreshLockStates; + +// load the corresponding pref filer options from the interface +- (void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict; + +@end + Index: branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.mm (revision 396) @@ -0,0 +1,488 @@ +// +// PreferencesControllerBase.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "PreferencesControllerBase.h" +#import "KernOptionsParser.h" +#include +#include +#include +#include + +//-------------------------------------------------------------------------- +static std::list< id > groupList; + +// for unix-like options types +static std::map IdToUCmdList; +static KernOptionsParser kernelFlags; + +//-------------------------------------------------------------------------- + + +@implementation PreferencesControllerBase + +-(ChameleonPrefPane*) chameleon { return [ChameleonPrefPane instance]; } + + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + + [PreferencesControllerBase registerPreferencesGroup: self]; + + return self; +} +//-------------------------------------------------------------------------- +- (id) getResourcePath: (NSString *) str ofType: (NSString*) sType +{ + if(!str) return nil; + NSBundle * b = [NSBundle bundleForClass:[self class]]; + id sRes = [b pathForResource: str ofType:sType ]; + return sRes; +} + + +//-------------------------------------------------------------------------- +// get authorisation from main panel lock +- (AuthorizationRef) getAuthorization +{ + AuthorizationRef auth= [[self chameleon] isUnlocked] ? + [[ [self chameleon]->authView authorization] authorizationRef] : NULL; + return auth; +} +//-------------------------------------------------------------------------- ++ (void) registerPreferencesGroup:(id) myGroup +{ + groupList.push_back(myGroup); +} + +- (void) synchronizeTextContent:(const BootOptionDesc*) bod withValue:(int) val +{ + if(!bod || !bod->contentID) return; + id item = (id) bod->contentID; + if ( [item isKindOfClass: [NSTextField class]] || + [item isKindOfClass: [NSComboBox class]]) + { + [item setEnabled: val]; + [item setEditable: val]; + } + +} +//-------------------------------------------------------------------------- ++ (void) refreshLockState: (id) item +{ + const BootOptionDesc * bod = BootProp::instance().findOption(item); + if(!bod) bod=BootProp::instance().findOptionContent(item); + if(bod) [PreferencesControllerBase refreshBodLockState: bod]; + else [item setEnabled: [[ChameleonPrefPane instance] isUnlocked]]; +} +//-------------------------------------------------------------------------- ++ (void) refreshBodLockState: (const BootOptionDesc*) bod +{ + if (!bod) return; + bool isUnlocked = [[ChameleonPrefPane instance] isUnlocked]; + if (bod->ID) [(id) bod->ID setEnabled: isUnlocked]; + int val = bod->ID ? [(id) bod->ID intValue] : 0; + if ( [(id) bod->contentID isKindOfClass: [NSTextField class]] || + [(id) bod->contentID isKindOfClass: [NSComboBox class]]) + { + [(id) bod->contentID setEnabled: (isUnlocked && val) ]; + [(id) bod->contentID setEditable: (isUnlocked && val) ]; + } + else + [(id) bod->contentID setEnabled: isUnlocked]; +} + +//-------------------------------------------------------------------------- ++ (void) refreshLockStates +{ + for (const BootOptionDesc* bod=BootProp::instance().firstOption(); + bod; + bod=BootProp::instance().nextOption()) + { + [self refreshLockState: (id) bod->ID ]; + if (bod->contentID) [self refreshLockState: (id) bod->contentID ]; + } + +} +//-------------------------------------------------------------------------- ++ (void) doForEachGroup: (GroupAction) action withOption:(id) option +{ + std::list< id >::iterator it; + for (it=groupList.begin(); it!=groupList.end(); it++) + { + switch (action) { + case SetDefaultValues: + [*it setDefaultsValues: option]; + break; + case RefreshLockStates: + [*it refreshLockStates ]; + [PreferencesControllerBase refreshLockStates]; + break; + case LoadPreferencesOptions: + [*it loadOptionsFromPreferencesFile: option]; + break; + case LoadBootConfigOptions: + [PreferencesControllerBase loadOptionsFromBootFile]; + break; + case AddOptionsDesc: + [*it addOptionsDesc]; + break; + case SaveBootConfigOptions: + break; + default: + break; + } + } +} + +//-------------------------------------------------------------------------- ++ (void) loadOptionsFromBootFile +{ + // parse unix like command string: + kernelFlags.parseOptions(BootProp::instance().getStringForKey(kKernelFlags)); + + for (const BootOptionDesc* bod=BootProp::instance().firstOption(); + bod; + bod=BootProp::instance().nextOption()) + { + [PreferencesControllerBase loadOptionFromBootFile:(id)bod->ID ]; + } +} + +//-------------------------------------------------------------------------- + ++ (void) loadOptionFromBootFile:(id) optionID +{ + const BootOptionDesc* bod = BootProp::instance().findOption(optionID); + if (!bod) + { + NSRunAlertPanel(@"Error Parsing Option",@"loadOptionFromBootFile failed",@"OK", nil, nil); + return; + } + + const char * stringForKey = BootProp::instance().getStringForKey(bod->Name); + std::string s = stringForKey ? trim(stringForKey) : ""; + std::string def = trim(bod->Default ? bod->Default : ""); + + switch (bod->Type) + { + case OptionYesNo: + if (s.length()>0) + [(NSButton*)optionID setIntValue: (toupper(s[0])=='Y' ? 1 : 0 ) ]; + else + [(NSButton*)optionID setIntValue: (toupper(def[0])=='Y' ? 1 : 0 ) ]; + break; + + case OptionKernel1: + { + int val = (s.length()>0 ? 1 : 0 ); + [(NSButton*)optionID setIntValue: val ]; + [(NSTextField*) bod->contentID setStringValue: + [[NSString alloc] initWithUTF8String: s.c_str()] ]; + [(NSTextField*) bod->contentID setEnabled: val ? true : false]; + [(NSTextField*) bod->contentID setEditable: val ? true : false]; + } + break; + case OptionFileString: + case OptionString: + { + int val = (s.length()>0 ? 1 : 0 ); + [(NSButton*)optionID setIntValue: val ]; + [(NSTextField*) bod->contentID setStringValue: + [[NSString alloc] initWithUTF8String: s.c_str()] ]; + [(NSTextField*) bod->contentID setEnabled: val ? true: false]; + [(NSTextField*) bod->contentID setEditable: val ? true : false]; + } + break; + + case OptionUnix: + case OptionKernel: + { + std::string s = kernelFlags.stringFromKey(bod->Name); + if (s.length()>0) + { + [(NSButton*)optionID setIntValue: 1 ]; + if(bod->Type==OptionKernel) + { + [(NSTextField*) bod->contentID setStringValue: + [[NSString alloc] initWithUTF8String: + kernelFlags.rightMember(s).c_str()] ]; + [(NSTextField*) bod->contentID setEnabled: true]; + [(NSTextField*) bod->contentID setEditable: true]; + } + + } + else + { // set the default for thiso option + [(NSButton*)optionID setIntValue: (bod->Default[0] ? 1 :0) ]; + if(bod->Type==OptionKernel) + { + [(NSTextField*) bod->contentID setEnabled: false]; + [(NSTextField*) bod->contentID setEditable: false]; + } + + } + } + break; + default: + break; + } + +} + +//-------------------------------------------------------------------------- +- (void) loadPreferences +{ + [ [ChameleonPrefPane instance] loadPreferences]; +} + +//-------------------------------------------------------------------------- +- (bool) savePreferences +{ + return [ [ChameleonPrefPane instance] savePreferences: [self preferencesFile] ]; + +} +//-------------------------------------------------------------------------- +// update the boot Config with one option change and its associated desc +- (bool) saveBootConfig: (id) sender withBootOptionDesc: (BootOptionDesc*) bod +{ + if(!bod) + { + return false; + } + // load boot config file so that we don't risk to loose + // externally modified parameters + + int val = [(NSButton*) sender intValue ]; + std::string sDefaultValue = trim(bod->Default ? bod->Default : ""); + bool status = false; + std::string name = trim(bod->Name); + + switch (bod->Type) { + case OptionYesNo: + { + std::string sVal = val ? "Yes" : "No"; + if (sDefaultValue.length()==0) sDefaultValue = "No"; + // Avoid populating bootConfig with unnecessary options: + if (sVal == sDefaultValue) + status = BootProp::instance().removeKeyAndValue(name.c_str()); + else + status = BootProp::instance().setStringForKey(name, sVal.c_str()); + } + break; + case OptionUnix: + if (!val) kernelFlags.removeFlag(name); + else kernelFlags.addFlag(name); + BootProp::instance().setStringForKey(kKernelFlags,kernelFlags.options()); + status = true; + break; + case OptionKernel: + { + std::string contentValue = trim( + [ [(NSTextField*) bod->contentID stringValue] UTF8String ]); + kernelFlags.removeFlag(kernelFlags.stringFromKey(bod->Name)); + if(val && contentValue.length()>0) + { + std::string concat = trim(name); + concat+= "="; + concat+= trim(contentValue); + + kernelFlags.addFlag(concat); + } + BootProp::instance().setStringForKey(kKernelFlags,kernelFlags.options()); + status = true; + } + break; + case OptionKernel1: + case OptionFileString: + case OptionString: + // Avoid populating bootConfig with unnecessary options: + if (val == 0 && bod->Type!=OptionKernel1) + status = BootProp::instance().removeKeyAndValue(bod->Name); + else + { + std::string contentValue = + [ [(NSTextField*) bod->contentID stringValue] UTF8String ]; + if (contentValue.length()>0) + status = BootProp::instance().setStringForKey(bod->Name, contentValue.c_str()); + else { + return false; // no content to save so don't save it + } + + } + break; + default: + break; + } + + // Now save the bootConfig + AuthorizationRef auth = [self getAuthorization ]; + if (status) status = BootProp::instance().save(auth); + + return status; +} +//-------------------------------------------------------------------------- +-(NSMutableDictionary*) preferencesFile +{ + return [[ChameleonPrefPane instance] preferencesFile]; +} + +//-------------------------------------------------------------------------- +-(NSMutableDictionary*) preferencesParts +{ + return [[ChameleonPrefPane instance] preferencesParts]; +} + +//-------------------------------------------------------------------------- +- (bool) handleSender: (id) sender +{ + + const BootOptionDesc * bod = BootProp::instance().findOption(sender); + + if (!bod) { + bod = BootProp::instance().findOptionContent(sender); + NSTextField* textField = (NSTextField*) sender; + std::string content = [[textField stringValue] UTF8String ]; + if(bod->ID!=nil) sender = (id) bod->ID; + } + else + { + + int state = [sender intValue]; + + 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]; + [f release]; + } + } + [self synchronizeTextContent: bod withValue: state]; + break; + default: + break; + } + } + if(![self saveBootConfig: sender withBootOptionDesc: (BootOptionDesc*) bod] && !bod->contentID ) + { // Couldn't save, so warn user ... + NSRunAlertPanel(@"Error saving bootConfig", @"Could not save org.chameleon.Boot.plist", + @"OK", nil, nil); + } + return true; +} + +- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath +{ + return [ self executeTaskAndWaitForTermination:taskPath withArgs:nil ]; +} + +- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath withArgs:(NSArray*) args +{ + NSTask *task = [[NSTask alloc] init]; + [task setLaunchPath:taskPath]; + if (args) [task setArguments: args]; + [task launch]; + + [task waitUntilExit]; // wait for process termination + int status = [task terminationStatus]; + + return (status == 0) ? true : false; +} + +-(NSString*) selectDirectory:(NSString*) dirName +{ + NSOpenPanel *oPanel = [NSOpenPanel openPanel]; + [oPanel setAllowsMultipleSelection:NO]; + [oPanel setCanChooseFiles:NO]; + [oPanel setCanChooseDirectories:YES]; + [oPanel setDirectoryURL:[NSURL fileURLWithPath:dirName isDirectory: YES] ]; + + BOOL result = [oPanel runModal]; + if (result == NSOKButton) + { + NSArray *dirToOpen = [oPanel filenames]; + int count = [dirToOpen count]; + if(count>0) + { + NSString *aDir = [dirToOpen objectAtIndex:0]; + return aDir; + } + } + return nil; +} + +- (NSString*) selectPlistFile:(NSString*) name +{ + NSArray* fileTypes = [NSArray arrayWithObjects: @"plist", nil]; + NSString * s= [self selectFileWithFileTypes: @"/" withName: name + withTypes: fileTypes]; + [fileTypes release]; + return s; +} + +- (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]; + [oPanel setAllowedFileTypes: fileTypes]; + if (dir!=nil && [dir length] > 0 ) + [oPanel setDirectoryURL:[NSURL fileURLWithPath:dir isDirectory: YES] ]; + [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"AppleShowAllFiles"]; + + result = [oPanel runModal]; + if (result == NSOKButton) + { + NSArray *filesToOpen = [oPanel filenames]; + int count = [filesToOpen count]; + if(count>0) + { + NSString *aFile = [filesToOpen objectAtIndex:0]; + return aFile; + + } + } + + return nil; +} + +-(void) msgBoxInfo:(NSString*) msg +{ + NSAlert *alert = [[NSAlert alloc] init]; + [alert setAlertStyle: NSInformationalAlertStyle]; + [alert setMessageText:msg ]; + [alert runModal]; + [alert release]; +} + +-(void) msgBoxError:(NSString*) msg +{ + NSAlert *alert = [[NSAlert alloc] init]; + [alert setAlertStyle: NSCriticalAlertStyle]; + [alert setMessageText: msg ]; + [alert runModal]; + [alert release]; +} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.mm (revision 396) @@ -0,0 +1,65 @@ +// +// EfiInject.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/26/10. +// + +#import "EfiInjectController.h" + + +static EfiInjectController *gInstance = NULL; + +@implementation EfiInjectController +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +- (void) addOptionsDesc +{ + BootProp::instance().addOptionDesc(mEfiInject, mEfiInjectText, OptionString, "device-properties", ""); +} + +//-------------------------------------------------------------------------- +-(void) setDefaultsValues: (NSMutableDictionary*) dict +{ +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + // automatic, nothing to do + [PreferencesControllerBase refreshLockState: mCurrentGfxInjection ]; +} + +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + +} + +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + if(sender == mCurrentGfxInjection) + { // using nohan script from Lizard here: + NSString* pathTask = [self getResourcePath:@"getDevProp" ofType:@"sh"]; + [self executeTaskAndWaitForTermination: pathTask]; + } + else + [self handleSender: sender]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + [self handleSender: sender]; +} + ++ (EfiInjectController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ChameleonPropertyList.cpp (revision 396) @@ -0,0 +1,29 @@ +/* + * ChameleonPropertyList.cpp + * ChameleonPrefPane + * + * Created by Rekursor on 1/22/10. + * + */ + +#include "ChameleonPropertyList.h" + +BootProp* BootProp::_instance = NULL; + +void ChameleonPropertyList::deleteOptionDesc() +{ + // delete all alloc'ed pointers + std::map::iterator bod; + for (bod=_idToDescDict.begin(); bod!=_idToDescDict.end(); bod++) + if(bod->second) delete bod->second; + for (bod=_contentIdToDescDict.begin(); bod!=_contentIdToDescDict.end(); bod++) + if(bod->second) delete bod->second; +} + +void ChameleonPropertyList::clearOptionDesc() +{ + deleteOptionDesc(); + _idToDescDict.clear(); // now clear the pairs + _contentIdToDescDict.clear(); // now clear the pairs +} + Index: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.h (revision 396) @@ -0,0 +1,28 @@ +// +// SmbiosExtractor.h +// ChameleonPrefPane +// +// Created by Rekursor on 11-11-27. +// + +#import + + +@interface SmbiosExtractor : NSTreeController { + UInt8* buffer; + NSUInteger bufSize; + NSString* smString; + NSMutableDictionary* content; +} + +@property (retain) NSMutableDictionary* content; +@property (retain) NSString* smString; +@property NSUInteger bufSize; + +-(NSUInteger) extractSmBios; +-(void) decodeSMBIOSTableFrom:(uint8_t *) ptr to: (uint8_t*) end; + +-(NSString*) stringFrom:(NSUInteger) start withLen:(NSUInteger) len; +-(UInt8) ByteFrom:(NSUInteger) position; +-(BOOL) save:(NSString*) path; +@end Property changes on: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosExtractor.h ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.h (revision 396) @@ -0,0 +1,37 @@ +/* + * KernOptionsParser.h + * ChameleonPrefPane + * + * Created by Rekursor on 1/23/10. + */ +#include +#include + +class KernOptionsParser +{ +public: + KernOptionsParser() {} + + // extract from the string all kern options + bool parseOptions(const char* options); + + // get the corresponding kern option "xxxx=yyyy" + const std::string& stringFromKey(const std::string& key) const; + + // get the left member of kern option "xxxx=yyyy" + const std::string& leftMember(const std::string& expression) const; + + // get the right member of kern option "xxxx=yyyy" + const std::string& rightMember(const std::string& expression) const; + + // add / remove a kernel Flags in the string + void addFlag(const std::string& flag); + void removeFlag(const std::string& flag); + + const std::string& options() const { return _options;} + +private: + bool _status; + std::string _options; + std::list _optionsList; +}; \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/AdvancedSetupController.h (revision 396) @@ -0,0 +1,61 @@ +// +// AdvancedSetupController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import +#import + + + +// TabView subpane controller definition +@interface AdvancedSetupController : PreferencesControllerBase +{ + IBOutlet NSButton* mKernel; + IBOutlet NSTextField* mKernelText; + IBOutlet NSButton* mDeviceRd; + IBOutlet NSTextField* mDeviceRdText; + + IBOutlet NSButton* mArch; + IBOutlet NSComboBox* mArchText; + IBOutlet NSButton* mCPU; + IBOutlet NSComboBox* mCPUText; + IBOutlet NSButton* mBusRatio; + IBOutlet NSComboBox* mBusRatioText; + IBOutlet NSButton* mSystemType; + IBOutlet NSComboBox* mSystemTypeText; + + IBOutlet NSButton* mDebug; + IBOutlet NSComboBox* mDebugText; + IBOutlet NSButton* mIO; + IBOutlet NSComboBox* mIOText; + IBOutlet NSButton* mDisableKextsBlacklisting; + + IBOutlet NSButton* mDSDTFile; + IBOutlet NSTextField* mDSDTFileText; + IBOutlet NSButton* mDSDTDrop; + + IBOutlet NSButton* mSMBIOSFile; + IBOutlet NSTextField* mSMBIOSFileText; + IBOutlet NSButton* mSMBIOSDefaults; + + IBOutlet NSButton* mWake; + IBOutlet NSButton* mForceWake; + IBOutlet NSButton* mWakeImage; + IBOutlet NSTextField* mWakeImageText; + IBOutlet NSButton* mSystemId; + IBOutlet NSTextField* mSystemIdText; + IBOutlet NSButton* mRestartFix; + IBOutlet NSButton* mGeneratePStates; + IBOutlet NSButton* mGenerateCStates; +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + ++ (AdvancedSetupController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/TableViewsController.mm (revision 396) @@ -0,0 +1,335 @@ +// +// TableViewsController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/29/10. +// + +#import "ChameleonPrefPane.h" +#import "ChameleonPropertyList.h" +#import "PreferencesControllerBase.H" +#import "TableViewsController.h" +#import "BootSetupController.h" +#import "ShellProcess.h" +#import "CenterTextFieldCell.h" +#import "PartitionInfoManager.h" + +#import +#import +#include +#include + +//-------------------------------------------------------------------------- +// MenuEntry definitions +//-------------------------------------------------------------------------- +typedef enum { + PaneBootFrom, PaneBootSetup, PaneBootFlags, PanePeripherals, + PaneAdvanced, PaneEfiInject, PaneSmbios, PaneAbout +} MenuEntryPane; + +struct MenuEntry +{ + NSString* title; + MenuEntryPane pane; + NSImage** img; +}; + + +static NSImage* mImgPaneBootFrom; +static NSImage* mImgPaneBootSetup; +static NSImage* mImgPaneBootFlags; +static NSImage* mImgPanePeripherals; +static NSImage* mImgPaneAdvanced; +static NSImage* mImgPaneEfiInject; +static NSImage* mImgPaneSmbios; +static NSImage* mImgPaneAbout; + + +static const MenuEntry sMenuList[] = +{ + {@"Boot_From", PaneBootFrom, &mImgPaneBootFrom}, + {@"Boot_Setup", PaneBootSetup, &mImgPaneBootSetup}, + {@"Boot_Flags", PaneBootFlags, &mImgPaneBootFlags}, + {@"Peripherals", PanePeripherals, &mImgPanePeripherals}, + {@"Efi_Inject", PaneEfiInject, &mImgPaneEfiInject}, + {@"Bios", PaneSmbios, &mImgPaneSmbios}, + {@"Advanced", PaneAdvanced, &mImgPaneAdvanced}, + {@"About", PaneAbout, &mImgPaneAbout} +}; +const int iMenuListSize = sizeof(sMenuList)/ sizeof(MenuEntry); + +static TableViewsController* _instance; // Singleton DP def. + + +//-------------------------------------------------------------------------- +@implementation TableViewsController +//-------------------------------------------------------------------------- +- (id) init +{ + [super init]; + _instance = self; + + currentRowSel = -1; + // set the image to display the current file being played + mMacOSXImage = [self getImageResource: @"MacOSX" ofType: @"png"]; + mWindowsImage = [self getImageResource: @"Windows" ofType: @"png"]; + mLinuxImage = [self getImageResource: @"Linux" ofType: @"png"]; + mCDROMImage = [self getImageResource: @"CDROM" ofType: @"png"]; + mUnknownImage = [self getImageResource: @"Chameleon" ofType: @"tiff"]; + + mImgPaneBootFrom = [self getImageResource:@"disk" ofType:@"png"]; + mImgPaneBootSetup = [self getImageResource:@"wrench" ofType:@"png"]; + mImgPaneBootFlags = [self getImageResource:@"flag" ofType:@"png"]; + mImgPanePeripherals = [self getImageResource:@"plug" ofType:@"png"]; + mImgPaneAdvanced = [self getImageResource:@"advanced" ofType:@"png"]; + mImgPaneEfiInject = [self getImageResource:@"syringe" ofType:@"png"]; + mImgPaneSmbios = [self getImageResource:@"chip" ofType:@"png"]; + mImgPaneAbout = [self getImageResource:@"chamsmall" ofType:@"png"]; + + return self; +} + +//-------------------------------------------------------------------------- +// Singleton impl ++ (TableViewsController*) instance +{ + return _instance; +} +//-------------------------------------------------------------------------- ++ (bool) isUnlocked +{ + return [[ChameleonPrefPane instance] isUnlocked]; +} + +//-------------------------------------------------------------------------- ++ (AuthorizationRef) authorization +{ + return [TableViewsController isUnlocked] ? + [ [ [ChameleonPrefPane instance]->authView authorization] authorizationRef] : NULL; +} +//-------------------------------------------------------------------------- +- (NSTableView*) partitionsTable +{ + return mPartitionsTable; +} +//-------------------------------------------------------------------------- +- (id) getImageResource: (NSString *) str ofType: (NSString*) sType +{ + NSImage * img=nil; + if(!str) return nil; + NSBundle * b = [NSBundle bundleForClass:[self class]]; + NSString* sRes = [b pathForResource: str ofType:sType ]; + img = [[NSImage alloc] initWithContentsOfFile: sRes]; + return img; +} +//-------------------------------------------------------------------------- +- (BOOL)tableView:(NSTableView *)tv shouldSelectRow:(NSInteger)row +{ + if (tv!= mPartitionsTable) + return YES; + + PartitionInfoElement* partInfo = [PartsInfoMgr objectAtIndex:row]; + BOOL ret = (partInfo != nil && [partInfo hidden]== false) ? YES : NO; + [partInfo release]; + + return ret; +} + +- (BOOL)tableView:(NSTableView *)tv shouldSelectTableColumn:(NSInteger)col +{ + if (tv!= mPartitionsTable) + return YES; + return NO; +} + +//-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- +- (void)tableViewSelectionDidChange:(NSNotification *)notification { + + NSTableView* tv= [notification object]; + if (tv == mPartitionsTable) + { + if ([tv selectedRow] != currentRowSel) + { + currentRowSel = [tv selectedRow]; + if (currentRowSel>=0) + { + PartitionInfoElement* partInfo = [PartsInfoMgr objectAtIndex:currentRowSel]; + NSString* s; + +#if 0 + // Chameleon is difficult for now to synchronize with uuid + // because windows partitions have a different uuid format than osx ones in the booter ... + // we'll address that interfacing problem later, probably in chameleon itself first. + if ( [partInfo vUUID].length>>0) + s = [partInfo vUUID]; + else +#endif + s = [partInfo hdString]; + + AuthorizationRef auth= [TableViewsController authorization]; + if(BootProp::instance().setStringForKey(kDefaultPartition, [s UTF8String])) + BootProp::instance().save(auth); + [ PreferencesControllerBase loadOptionsFromBootFile]; + [partInfo release]; + } + else + { // no line selected + BootProp::instance().removeKeyAndValue(kDefaultPartition); + [ PreferencesControllerBase loadOptionsFromBootFile]; + + } + } + } + else if (tv == mTabViewPanesSelect) + { + int selected = [tv selectedRow]; + if(selected>=0) + { + switch (sMenuList[selected].pane) + { + case PaneBootFrom: + [mTabViewPanes selectTabViewItem: mBootFrom]; + break; + case PaneBootSetup: + [mTabViewPanes selectTabViewItem: mBootSetup]; + break; + case PaneBootFlags: + [mTabViewPanes selectTabViewItem: mBootFlags]; + break; + case PanePeripherals: + [mTabViewPanes selectTabViewItem: mPeripherals]; + break; + case PaneEfiInject: + [mTabViewPanes selectTabViewItem: mEfiInject]; + break; + case PaneAdvanced: + [mTabViewPanes selectTabViewItem: mAdvanced]; + break; + case PaneSmbios: + [mTabViewPanes selectTabViewItem: mSmbios]; + break; + case PaneAbout: + [mTabViewPanes selectTabViewItem: mAbout]; + break; + default: + break; + } + [mTabViewPanes setNeedsDisplay: true ]; + } + } +} + +//-------------------------------------------------------------------------- +- (void) tableView:(NSTableView*) tableView setObjectValue:(id) object + forTableColumn:(NSTableColumn*) tableColumn row:(NSInteger) row +{ + if (object == nil) return; + PartitionInfoElement* partInfo = [PartsInfoMgr objectAtIndex:row]; + + if (tableColumn == mHideOrViewColumn) + { + [partInfo setHidden: ([object intValue] ? false : true) ]; + } + else if (tableColumn == mPartitionNameColumn) + { + [partInfo setVAliasName: (object==nil || [object length] == 0) ? [partInfo vName] : object]; + const char * sCur = BootProp::instance().getStringForKey(kRenamePartition); + NSString * currentStr = [NSString stringWithUTF8String: sCur ? sCur : ""] ; + NSString* renStr = [PartsInfoMgr getRenameStringFrom:(NSString*) currentStr + andPartition: (PartitionInfoElement*) partInfo]; + if (renStr!=nil && + BootProp::instance().setStringForKey(kRenamePartition, [renStr UTF8String]) + ) + { + AuthorizationRef auth= [TableViewsController authorization]; + BootProp::instance().save(auth); + [ PreferencesControllerBase loadOptionsFromBootFile]; + } + + } + + [partInfo release]; + + NSLog(@"object at column %@ row %ld Set %@", [[tableColumn headerCell] stringValue], (long) row, object); +} +//-------------------------------------------------------------------------- +- (NSInteger) numberOfRowsInTableView:(NSTableView *)tableView +{ + int size=0; + if (tableView == mPartitionsTable) + size = [PartsInfoMgr count]; + else + size = iMenuListSize; + return size; +} + +//-------------------------------------------------------------------------- +- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row +{ + id ret=nil; + if (tableView == mPartitionsTable) + { + PartitionInfoElement* partInfo = [PartsInfoMgr objectAtIndex:row]; + + if (tableColumn == mHideOrViewColumn) + { + ret = [NSNumber numberWithInt:(int) [partInfo hidden] ? 0 : 1]; + } + else if (tableColumn == mPartitionUIDColumn) + { + ret = [partInfo vUUID ]; + } + else if (tableColumn == mPartitionImgColumn) + { + switch( [partInfo imageIndexFromFs]) + { + case 0: + ret = mMacOSXImage; + break; + case 1: + ret = mWindowsImage; + break; + case 2: + ret = mLinuxImage; + break; + default: + ret = mUnknownImage; + break; + + } + } + else if (tableColumn == mFileSystemColumn) + { + ret = [partInfo vKind]; + } + else if (tableColumn == mPartitionNameColumn) + { + ret = [partInfo vAliasName]; // vAliasName is vName if no alias + } + else if (tableColumn == mPartitionIDColumn) + { + ret= [partInfo hdString]; + } + + [partInfo release]; + } + else if (tableView == mTabViewPanesSelect) + { + // menu tv handling + if (tableColumn == mMenuName) + { + NSBundle * b = [NSBundle bundleForClass:[self class]]; + ret = NSLocalizedStringFromTableInBundle(sMenuList[row].title, nil, b, @"comment"); + } + else if (tableColumn == mMenuIcon) + { + ret = *sMenuList[row].img; + } + } + + return ret; +} +//-------------------------------------------------------------------------- + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/string_util.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/string_util.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/string_util.cpp (revision 396) @@ -0,0 +1,49 @@ +/* + * string_util.cpp + * ChameleonPrefPane + * + * Created by Rekursor on 1/23/10. + */ + +#include "string_util.h" + +/* + * String Tokenizer + * In: src string and separator + * Out: a list of string tokens + */ +std::list tokenize(const std::string& src, const std::string& sep) +{ + std::list ret; + if (src.length()==0) return ret; + + std::string::size_type left=0, right=0; + std::string token; + std::string::size_type len = sep.length(); + + for (left=0; (right = src.find(sep, left)) != std::string::npos; left = right + len ) + { + token = src.substr (left, right-left); + if (token.length()>0) ret.push_back (token); + } + token = src.substr(left); + if (token.length()>0) ret.push_back (token); + + return ret; +} + +std::string& replace_all(std::string &s, const std::string &sToFind, const std::string &sToReplace) +{ + if(sToReplace.empty()) return s; + + std::string::size_type b = 0; + for (;;) + { + b = s.find(sToFind, b); + if (b == s.npos) break; + s.replace(b, sToFind.size(), sToReplace); + b += sToReplace.size(); + } + return s; +} + Index: branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/CustomTableView.mm (revision 396) @@ -0,0 +1,33 @@ +// +// CustomTableView.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/25/10. +// + +#import "CustomTableView.h" + + +@implementation CustomTableView + +- (void)awakeFromNib +{ + // highlight colors + mHighlightColorInFocusView = [[NSColor colorWithCalibratedRed:.38 green:.48 blue:.68 alpha:1] retain]; + mHighlightColorOutOfFocusView = [[NSColor colorWithCalibratedRed:.38 green:.48 blue:.68 alpha:0.5] retain]; +} +- (id)_highlightColorForCell:(NSCell *)cell +{ + return [self isEnabled] ? mHighlightColorInFocusView : mHighlightColorOutOfFocusView; + +} + +- (void)dealloc +{ + // release the colors + [mHighlightColorInFocusView release]; + [mHighlightColorOutOfFocusView release]; + + [super dealloc]; +} +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.h (revision 396) @@ -0,0 +1,66 @@ +// +// PartitionInfoElement.h +// ChameleonPrefPane +// +// Created by Rekursor on 11-11-12. +// + +#import + +@interface PartitionInfoElement : NSObject { + NSString* bsdName; + NSString *vUUID, *vName, *vKind, *mediaPath, *devProtocol; + bool devInternal, mediaRemovable; + NSDictionary* descDict; + + NSString *vAliasName; // for rename partition purpose + bool hidden; // for hide partition purpose + int err; // non zero if problem occurred during info extraction + int diskNum, partNum; +} + +// Partition information properties +@property (retain) NSDictionary* descDict; +@property (retain) NSString* bsdName; +@property (retain) NSString* vUUID; +@property (retain) NSString* vKind; +@property (retain) NSString* vName; +@property (retain) NSString* mediaPath; +@property (retain) NSString* devProtocol; + +@property (assign) bool devInternal; +@property (assign) bool mediaRemovable; + +@property (retain) NSString* vAliasName; +@property (assign) bool hidden; + ++(NSArray*) createBSDPartitionList; ++(NSUInteger*) hdRedirTable; + +-(id) initWithBSDName: (NSString*) bsdName; +-(id) initWithBSDName: (NSString*) bsdName withinSession: (DASessionRef) session; +-(void) cleanup; + +-(int) extractInfoWithBSDName: (NSString*) bsdName; +-(int) extractInfoWithBSDName: (NSString*) bsdName withinSession:(DASessionRef) session; + ++(NSMutableArray*) extractInfoWithBSDNames: (NSArray*) bsdNames; ++(NSMutableArray*) extractInfoWithBSDNames: (NSArray*) bsdNames withArray:(NSMutableArray*) arr; + +-(bool) isValid; + +// Get any DA attribute from dict +-(NSString*) createStringValueWithKey: (NSString*) key; + +-(int) diskNumber; +-(int) partitionNumber; +-(void) setDiskNumber:(int) d; +-(void) setPartitionNumber:(int)p; +-(NSString*) hdString; + +-(NSString*) description; +-(bool) isBootable; +-(int) imageIndexFromFs; ++(NSString*) removesSpacesFromLabel:(NSString*) label; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PreferencesControllerBase.h (revision 396) @@ -0,0 +1,86 @@ +// +// PreferencesControllerBase.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import +#import "ChameleonPrefPane.h" +#import "ChameleonPropertyList.h" +#import "ShellProcess.h" +#import "string_util.h" +#import "GroupControllerProtocol.h" + + +#define kChameleonUserRootDir @"~/Desktop/Chameleon" + +//-------------------------------------------------------------------------- +const char * const kKernelFlags = "Kernel Flags"; + +//-------------------------------------------------------------------------- +enum GroupAction +{ + SetDefaultValues, + RefreshLockStates, + LoadPreferencesOptions, + LoadBootConfigOptions, + AddOptionsDesc, + SaveBootConfigOptions +}; + + + +// ENHANCE ME: remove this globals and integrate them in ChameleonPrefPane or at least +// add function accessor entry points + +// Define common expected behavior for all derived controllers +@interface PreferencesControllerBase : NSObject +{ +} + +// Register the Group panel for further automatic iteration matters ++ (void) registerPreferencesGroup:(id) myGroup; + +// Iterate and execute action for each register group ++ (void) doForEachGroup: (GroupAction) action withOption:(id) option; + +// Set refresh state {enabled | disabled} depending on the authorizations state ++ (void) refreshBodLockState: (const BootOptionDesc*) bod; ++ (void) refreshLockState: (id) item; + +// Unitary Method for Load One option of any type ++ (void) loadOptionsFromBootFile; + +// Method for loading all registred options components in the interface ++ (void) loadOptionFromBootFile:(id) optionID; + +// Get the resource in the pref pane, needed because the bundle get resource api wont work +// as it would return the SystemPreferences application resource +- (id) getResourcePath: (NSString *) str ofType: (NSString*) sType; + +// Execute a task and wait for the process to terminate +- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath; +- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath withArgs:(NSArray*) args; + +// 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; +-(NSString*) selectDirectory:(NSString*) dirName; + +-(void) msgBoxInfo:(NSString*) msg; +-(void) msgBoxError:(NSString*) msg; + +- (void) loadPreferences; +- (bool) savePreferences; + +- (bool) handleSender: (id) sender; + +-(NSMutableDictionary*) preferencesFile; +-(NSMutableDictionary*) preferencesParts; + +-(ChameleonPrefPane*) chameleon; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/SmbiosController.h (revision 396) @@ -0,0 +1,29 @@ +// +// EfiInject.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/26/10. +// + +#import +#import + + +const NSString* kAppleSmbiosFileName = @"appleSmbios.plist"; + + +// TabView subpane controller definitions +@interface SmbiosController : PreferencesControllerBase +{ + IBOutlet NSButton* mEditSmbios; + IBOutlet NSButton* mAppleSmbios; + IBOutlet NSButton* mExtractACPITables; +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + ++ (SmbiosController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.mm (revision 396) @@ -0,0 +1,70 @@ +// +// PeripheralsController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "PeripheralsController.h" + +static PeripheralsController *gInstance = NULL; + +@implementation PeripheralsController + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +- (void) addOptionsDesc +{ + 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(mAtiVideoROM, nil, OptionYesNo, "UseAtiROM", "No"); + BootProp::instance().addOptionDesc(mNvidiaVideoROM, nil, OptionYesNo, "UseNvidiaROM", "No"); + 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"); + +} + +//-------------------------------------------------------------------------- +-(void) setDefaultsValues: (NSMutableDictionary*) dict +{ +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + // automatic, nothing to do +} + +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + +} +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + [self handleSender: sender]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + [self handleSender: sender]; +} + ++ (PeripheralsController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/EfiInjectController.h (revision 396) @@ -0,0 +1,28 @@ +// +// EfiInject.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/26/10. +// + +#import +#import + + + + +// TabView subpane controller definitions +@interface EfiInjectController : PreferencesControllerBase +{ + IBOutlet NSButton* mEfiInject; + IBOutlet NSTextField* mEfiInjectText; + IBOutlet NSButton* mCurrentGfxInjection; +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + ++ (EfiInjectController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.mm (revision 396) @@ -0,0 +1,73 @@ +// +// BootFlagsController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "BootFlagsController.h" + +// Constants + +// File static variables +static BootFlagsController *gInstance = NULL; + + +@implementation BootFlagsController + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +-(void) addOptionsDesc +{ + BootProp::instance().addOptionDesc(mVerbose, nil, OptionUnix, "-v", ""); + BootProp::instance().addOptionDesc(mSafeBoot, nil, OptionUnix, "-x", ""); + BootProp::instance().addOptionDesc(mIgnoreBootConfig, nil, OptionUnix, "-F", ""); + BootProp::instance().addOptionDesc(mSingleUser, nil, OptionUnix, "-s", ""); + BootProp::instance().addOptionDesc(mTimeOut, mTimeOutText, OptionString,"Timeout", "5"); + BootProp::instance().addOptionDesc(mQuietBoot, nil, OptionYesNo, "Quiet Boot", "No"); + BootProp::instance().addOptionDesc(mInstantMenu, nil, OptionYesNo, "Instant Menu", "No"); + BootProp::instance().addOptionDesc(mWait, nil, OptionYesNo, "Wait", "No"); + BootProp::instance().addOptionDesc(mRescan, nil, OptionYesNo, "Rescan", "No"); + 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", ""); +} + +//-------------------------------------------------------------------------- +-(void) setDefaultsValues: (NSMutableDictionary*) dict +{ +} +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + // automatic, nothing to do +} + +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + +} + +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + [self handleSender: sender]; +} + +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + [self handleSender: sender]; +} + ++ (BootFlagsController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/ShellProcess.h (revision 396) @@ -0,0 +1,70 @@ +/* + * shell_process.h + * + * Created by Rekursor on 1/17/2010. + * + */ +#ifndef __CHSHELL_PROCESS_H +#define __CHSHELL_PROCESS_H + +#include +#include +#include +#include +#include +#include +#include +#include "file_util.h" +//---------------------------------------------------------------- +const int MAX_HD = 32; + +//---------------------------------------------------------------- +class ShellProcess +{ +public: + // construction / destruction + ShellProcess() { init(); } + ShellProcess(const char * cmd, const char * mode = "r") { init(); open(cmd, mode); } + ~ShellProcess() { dealloc(); } + + /// Run the cmd and stores output for further parsing + FILE * open (const char *cmd, const char *mode="r"); + + /// Close the file + int close(); + + /// Get the output file desc + FILE * desc() const { return _fpt;} // non null if file is open + + /// Get the next line in the output, optionally skip lines until matching line is found + char * get_line(char * line, size_t s, const char *matching=NULL); + + /// encapsulates seek to beginning of file with optional relative offset + bool seek_start(long offset=0L ) + { + return (_fpt && fseek(_fpt, offset, SEEK_SET)==0); + } + + /// true if output file desc is valid + bool is_valid() const { return _fpt!=NULL;} + +protected: + FILE * _fpt; + +private: + void init() + { + _fpt= NULL; + } + + void dealloc() + { + if (_fpt) + { + close(); + _fpt = NULL; + } + } +}; + +#endif Index: branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.mm (revision 396) @@ -0,0 +1,386 @@ +// +// BootSetupController.mm +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import "BootSetupController.h" +#import "ChameleonPrefPane.h" +#import "TableViewsController.h" +#import "ShellProcess.h" +#import "PartitionInfoManager.h" +#include "ChameleonPropertyList.h" + +static const char cPartDescSep = ';'; // partition descriptor separator + +static BootSetupController *gInstance = NULL; + +@implementation BootSetupController + +//-------------------------------------------------------------------------- +- (id) init +{ + self = [super init]; + return (gInstance = self); +} + +//-------------------------------------------------------------------------- +- (void) addOptionsDesc +{ + BootProp::instance().addOptionDesc(mDefaultPartition, mDefaultPartitionText, OptionString, "Default Partition", ""); + BootProp::instance().addOptionDesc(mHidePartition , mHidePartitionText, OptionString, "Hide Partition", ""); + BootProp::instance().addOptionDesc(mRenamePartition , mRenamePartitionText, OptionString, "Rename Partition", ""); +} + +//-------------------------------------------------------------------------- +- (void) refreshLockStates +{ + // non boot config options (not automatized) + [PreferencesControllerBase refreshLockState: mSwapHD01 ]; + [PreferencesControllerBase refreshLockState: mSwapHD02 ]; + [PreferencesControllerBase refreshLockState: mFreezeParts ]; + [PreferencesControllerBase refreshLockState: mInjectFrozenParts ]; + [PreferencesControllerBase refreshLockState: mBootConfigPath ]; + [PreferencesControllerBase refreshLockState: mBootConfigPathText ]; +} + +//-------------------------------------------------------------------------- +- (void) setDefaultsValues: (NSMutableDictionary*) dict +{ + [dict setObject: [[NSNumber alloc] initWithBool: false] forKey: keySwapHD01]; + [dict setObject: [[NSNumber alloc] initWithBool: false] forKey: keySwapHD02]; + [dict setObject:[[NSNumber alloc] initWithBool: false] forKey: keyUseFrozenParts]; + [dict setObject:[[NSNumber alloc] initWithBool: false] forKey: keyUseFrozenParts]; + [dict setObject:[[NSString alloc] initWithString: @""] forKey: keyForceBootConfigPath]; +} +//-------------------------------------------------------------------------- +-(void) loadOptionsFromPreferencesFile: (NSMutableDictionary*) dict +{ + [mSwapHD01 setIntValue: [[dict objectForKey: keySwapHD01] intValue]]; + [mSwapHD02 setIntValue: [[dict objectForKey: keySwapHD02] intValue]]; + [mFreezeParts setIntValue: [[dict objectForKey: keyUseFrozenParts] intValue] ]; + id obj = [dict objectForKey: keyForceBootConfigPath]; + [mBootConfigPathText setStringValue: obj ? obj : @"" ]; + int val = (obj && [[mBootConfigPathText stringValue] length] >0 ? 1 : 0); + [mBootConfigPath setIntValue: val]; + [dict setObject:[[NSString alloc] initWithString: [mBootConfigPathText stringValue]] + forKey: keyForceBootConfigPath]; + [mBootConfigPathText setEnabled: val ? true : false]; + [mBootConfigPathText setEditable: val ? true : false]; + [mBootExtraPathText setStringValue: [[mBootConfigPathText stringValue] stringByDeletingLastPathComponent]]; + [mBootCdbootPathText setStringValue: [[mBootConfigPathText stringValue] stringByDeletingLastPathComponent]]; +} + +//-------------------------------------------------------------------------- +- (void) loadFrozenParts +{ + // iterate for all entries to add + char keyPartN[32] = ""; + int k=0; + + NSMutableArray* partList = (NSMutableArray*) [PartsInfoMgr parts]; + [partList removeAllObjects]; + + for (int i=0; i< [[self preferencesParts] count]; i++) + { + // get the key + snprintf(keyPartN, sizeof(keyPartN)-1, "partition%02d",i); + NSString* obj = [[self preferencesParts] objectForKey: [[NSString alloc] initWithUTF8String: keyPartN] ]; + // assign this key if valid + if (obj!=nil && [obj length]>0) + { + PartitionInfoElement* p = [[PartitionInfoElement alloc] init]; + // parse string + NSArray* words = [obj componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: @";"]]; + k=0; + int diskNum=0, partNum=0; + for (NSString * word in words) + { + switch (k) { + case 0: // disk number + diskNum = [word intValue] ; + [ p setDiskNumber:diskNum]; + break; + case 1: // partition number + partNum = [word intValue] ; + [ p setPartitionNumber: partNum]; + break; + case 2: // volume label + [p setVName: word]; + [p setVAliasName: word]; + break; + case 3: // fstype + [p setVKind: word]; + break; + case 4: // vUUID + [p setVUUID: word]; + break; + default: + break; + } + k++; + } + + [partList addObject:p]; + } + } + // for mgr to refresh hide and rename attributes + [PartsInfoMgr hideParts:nil]; + [PartsInfoMgr renameParts:nil]; + +} + +//-------------------------------------------------------------------------- +- (void) swapDisks: (bool) bSwap src: (int) iSrc dst: (int) iDst; +{ + //if(!BootProp::instance().isValid()) return; + if ([mFreezeParts intValue]==0) + [PartsInfoMgr reload]; + else + [self loadFrozenParts ]; + + if (bSwap) + { + [PartsInfoMgr swapHD:iSrc with: iDst ]; + } + + [ [self chameleon] selectDefaultPartition]; + +} + +//-------------------------------------------------------------------------- +- (void) doSwapHD: (int) val save: (bool) doSave src: (int) isrc dst: (int) idst +{ + + if( val>0 && ![[BootSetupController instance]->mFreezeParts intValue]) //on + { + [self swapDisks: true src:isrc dst:idst ]; + } + else + { + [self swapDisks: false src:isrc dst:idst ]; + } + + if(doSave) + { + if (isrc==0 && idst==1) + [[self preferencesFile] setObject: [NSNumber numberWithBool: val ? true : false] forKey: keySwapHD01]; + if (isrc==0 && idst==2) + [[self preferencesFile] setObject: [NSNumber numberWithBool: val ? true : false] forKey: keySwapHD02]; + [ [self chameleon] savePreferences:[self preferencesFile] ]; + } + + [[[TableViewsController instance] partitionsTable] reloadData]; + [[[TableViewsController instance] partitionsTable] scrollRowToVisible: 0]; + //[self tableViewSelectionDidChange: nil]; + +} + + +//-------------------------------------------------------------------------- +- (IBAction)onInjectPartsToFreeze: (id)sender +{ + int size = [[PartsInfoMgr parts] count ]; + if (!size) + { // nothing to inject + NSRunAlertPanel(@"Inject Partitions to Freeze Configuration", + @"No current partitions to inject, did you check boot config file ?",@"OK", nil,nil); + return; + } + // generate the parts list in preferences proplist + NSInteger n = NSRunAlertPanel(@"Inject Partitions to Freeze Configuration", + @"Are you sure you want to overwrite your Freeze settings with current partition list ?", + @"OK", @"Cancel",nil); + if (n==1) + { + // populate the dictionary with the current partitions + + // empty dictionary and update key in parent: + [[self preferencesFile] removeObjectForKey: keyPartitionsList]; + [[self preferencesParts] removeAllObjects ]; + + // iterate for all entries to add + char partDesc[256]=""; + char keyPartN[32] = ""; + for (int i=0; i< size; i++) + { + + PartitionInfoElement* p = [PartsInfoMgr objectAtIndex:i]; + + // format the partition key and descriptor string + snprintf(keyPartN, sizeof(keyPartN)-1, "partition%02d",i); + + snprintf(partDesc, sizeof(partDesc)-1, "%d%c%d%c%s%c%s%c%s", + [p diskNumber], cPartDescSep, + [p partitionNumber], cPartDescSep, + [[p vAliasName] UTF8String], cPartDescSep, + [[p vKind] UTF8String], cPartDescSep, + [[p vUUID] UTF8String]); + + // write it to the dictionary + NSString * key = [[NSString alloc] initWithUTF8String: keyPartN]; + NSString * desc = [[NSString alloc] initWithUTF8String: partDesc]; + [[self preferencesParts] setObject: desc forKey: key]; + + [p release]; + } + [[self preferencesFile] setObject: [self preferencesParts] forKey: keyPartitionsList]; + [self savePreferences ]; + } +} + +//-------------------------------------------------------------------------- +- (IBAction) onForceBootConfigPath: (id) sender +{ + if (sender == mBootConfigPath) + { + int val = [mBootConfigPath intValue]; + [mBootConfigPathText setEnabled: val ? true : false]; + [mBootConfigPathText setEditable: val ? true : false]; + + if (val) + { + NSString * f = [self selectPlistFile: @"org.chameleon.Boot.plist"]; + if(f) + { + [mBootConfigPathText setStringValue:f]; + [mBootExtraPathText setStringValue: [f stringByDeletingLastPathComponent] ]; + [mBootCdbootPathText setStringValue: [[mBootConfigPathText stringValue] stringByDeletingLastPathComponent]]; + + [f release]; + } + } + + + [[self preferencesFile] setObject: + val ? [mBootConfigPathText stringValue] : [[NSString alloc] initWithUTF8String: ""] + forKey: keyForceBootConfigPath]; + + } + else + [[self preferencesFile] setObject: [mBootConfigPathText stringValue] forKey: keyForceBootConfigPath]; + [self savePreferences ]; + BootProp::instance().cleanup(); + [[ChameleonPrefPane instance ] initBootConfig]; +} +//-------------------------------------------------------------------------- +-(IBAction) onCheckButtonChange: (NSButton*) sender +{ + // IMPROVE ME: Should automatize the callback/load/save mechanism + // for the preferences file like the bootConfig file + if (sender == mSwapHD01 || sender == mSwapHD02) + { + [PartsInfoMgr resetSwapping]; + [self doSwapHD: [mSwapHD01 intValue] save:true src:0 dst:1]; + [self doSwapHD: [mSwapHD02 intValue] save:true src:0 dst:2]; + } + else if (sender == mFreezeParts) + { + bool val = !![sender intValue]; + [[self preferencesFile] setObject: [NSNumber numberWithBool: val] forKey: keyUseFrozenParts]; + [[self chameleon] savePreferences: [self preferencesFile]]; + [ self onCheckButtonChange: mSwapHD01]; + } + else if (sender == mInjectFrozenParts) + { + [self onInjectPartsToFreeze: mInjectFrozenParts]; + } + else if (sender == mDefaultPartition || sender == mHidePartition + || sender == mRenamePartition ) + { // sync with other panels + [self handleSender:sender]; + } + else if (sender == mBootConfigPath || (NSTextField*)sender == mBootConfigPathText) + { // sync with other panels + [self onForceBootConfigPath: sender]; + } + else if (sender == mBootExtraPath || (NSTextField*)sender == mBootExtraPathText) + { // sync with other panels + [self onForceBootConfigPath: sender]; + } + else if (sender == mBootCdbootPath || (NSTextField*)sender == mBootCdbootPathText) + { // sync with other panels + [self onForceBootConfigPath: sender]; + } + // Handle BootOptions generically: + else + [self handleSender:sender]; +} +//-------------------------------------------------------------------------- +-(IBAction) onTextFiedChange: (NSTextField*) sender +{ + if ( sender == mDefaultPartitionText || sender == mHidePartitionText || + sender == mRenamePartitionText ) + { + [self handleSender:sender]; + + [PreferencesControllerBase loadOptionsFromBootFile ]; + [PartsInfoMgr reloadWithHideSpec: [mHidePartitionText stringValue] andRenameSpec: [mRenamePartitionText stringValue] ]; + + [self doSwapHD: [mSwapHD01 intValue] save:true src:0 dst:1]; + [self doSwapHD: [mSwapHD02 intValue] save:true src:0 dst:2]; + } + else if (sender == mBootConfigPathText) + { + [self onForceBootConfigPath: sender]; + } +} +//-------------------------------------------------------------------------- +- (IBAction) onCdBootConfigPath: (id) sender +{ + if ( sender == mBootCdbootPath) + { + NSString * dir = [self selectDirectory:@"/"]; + if (dir!=nil) + [mBootCdbootPathText setStringValue: dir]; + } + +} +//-------------------------------------------------------------------------- +- (IBAction) onExtraConfigPath: (id) sender +{ + if ( sender == mBootExtraPath) + { + NSString * dir = [self selectDirectory:@"/"]; + if (dir!=nil) + [mBootExtraPathText setStringValue: dir]; + } +} + +//-------------------------------------------------------------------------- +- (IBAction) onCreateBootCD: (id) sender +{ + // using rek modified rohan script from Lizard boot cd creator: + NSString* destination = @"~/Desktop/Chameleon"; + NSString* pathTask = [self getResourcePath:@"cdBootCreator" ofType:@"sh"]; + NSString* pathExtra = [mBootExtraPathText stringValue]; + NSString* pathCdboot = [mBootCdbootPathText stringValue]; + NSMutableArray* arr = [[NSMutableArray alloc] init]; + bool result; + + if ( + pathTask!=nil && [pathTask length] > 0 + && pathExtra !=nil && [pathExtra length] > 0 + && pathCdboot !=nil && [pathCdboot length] > 0 + ) + { + [arr addObject: pathExtra]; + [arr addObject: pathCdboot]; + result = [self executeTaskAndWaitForTermination: pathTask withArgs: arr]; + if (result) + { + [self msgBoxInfo: + [NSString stringWithFormat:@"Boot cd creator script successfully executed. BootCD.iso created in %@.", + destination]]; + } + else + [self msgBoxError:@"ERROR: Couldn't execute boot cd creator script successfully!"]; + } + + [arr release]; +} +//-------------------------------------------------------------------------- ++ (BootSetupController *)instance { return(gInstance);} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PropertyList.h (revision 396) @@ -0,0 +1,89 @@ +/* + * property_list.h + * + * Created by Rekursor on 1/17/10. + * + */ +#ifndef __CHPROPERTYLIST_LIST_H +#define __CHPROPERTYLIST_LIST_H + +#include +#include +#include +#include + +//---------------------------------------------------------------------------- + +static const bool CreateIfNotExist = true; +static const bool DontCreate = false; + + +//---------------------------------------------------------------------------- +/// Run priviledged command for cmds like property chmods and restard command +//---------------------------------------------------------------------------- +bool executePrivilegedCmd(AuthorizationRef auth, + const char* pathToTool, + const char* args=NULL, + AuthorizationFlags flags=kAuthorizationFlagDefaults); + + +//---------------------------------------------------------------------------- +/// Simple PropertyList Abstraction +//---------------------------------------------------------------------------- +class PropertyList +{ + +public: + // Create a property list + PropertyList() : _proplistRef(0), _CFURLRef(0) { } + virtual ~PropertyList(); + + /// Tell if a valid property list successfully opened + bool isValid() const { return _proplistRef!=NULL;} + /// release the current proplist if it exists + void cleanup(); + + /// Open a property list + bool open(const char *propListPath, bool createIfNotExist, + AuthorizationRef auth=NULL, + AuthorizationFlags flags=kAuthorizationFlagDefaults); + + /// Save a property list + bool save(AuthorizationRef auth=NULL, + AuthorizationFlags flags=kAuthorizationFlagDefaults); + + /// Return last error status, used in open() + CFStringRef lastError() const { return _errorString;} + + /// Get a corresponding string content from a key spec + const char * getStringForKey(const char *key); + const char * getStringForKey(const std::string& key) + { + std::string str= key; + return getStringForKey(str.c_str()); + } + + /// Set a content from a string, at specified key + bool setStringForKey(const char* key, const char* value); + bool setStringForKey(const std::string& key, const std::string& value) + { + return setStringForKey(key.c_str(), value.c_str()); + } + + /// Remove a key from the Proplist + bool removeKeyAndValue(const char *key); + + /// Get the property list path + const char * propFilePath() const { return _propFilePath.c_str(); } + + /// permit to execute a priviledge chmod to access system files + static bool chmodFile(const char * path, const char * chmodMask, + AuthorizationRef auth, AuthorizationFlags flags=kAuthorizationFlagDefaults); +protected: + CFPropertyListRef _proplistRef; + CFURLRef _CFURLRef; + std::string _propFilePath; // keep a track of the proplist filename + CFStringRef _errorString; +}; + +#endif Index: branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PartitionInfoElement.mm (revision 396) @@ -0,0 +1,313 @@ +// +// PartitionInfoElement.mm +// ChameleonPrefPane +// +// Powerful Partition Info class utility +// +// Created by Rekursor on 11-11-12. +// + +#import "PartitionInfoElement.h" +#import "ShellProcess.h" + +static NSUInteger sHdRedirTable[MAX_HD]; + +@implementation PartitionInfoElement + +@synthesize descDict, bsdName, vUUID, vKind, vName, mediaPath, mediaRemovable, devInternal, devProtocol; +@synthesize vAliasName, hidden; + +/// Create a list of all bsd partitions ++(NSArray*) createBSDPartitionList +{ + NSMutableArray* arr = [[NSMutableArray alloc] init]; + + char line[256]; + ShellProcess p; + + p.open("ls -1 /dev/disk*"); + while( p.get_line(line, sizeof(line)-1)) + { + size_t l = strlen(line); + if (l==0 || strstr(line, "ls:")!=NULL) continue; + if (line[l-1]) line[l-1]='\0'; + const char * p = strstr(line, "disk"); + NSString* s = [[NSString stringWithUTF8String: p] retain]; + [arr addObject: s]; + + } + p.close(); + + return arr; +} + +/// redirection table for disk swapping ++(NSUInteger*) hdRedirTable +{ + return sHdRedirTable; +} + +/// redirection table for disk swapping +/// extract disk number from bsdname spec +-(int) diskNumber +{ + int newDiskNum = (diskNum>=0 && diskNum 0) + { + DASessionRef session = DASessionCreate(NULL); + for (NSString* part in partArr) + { + PartitionInfoElement* elt = + [[PartitionInfoElement alloc] initWithBSDName: part withinSession: session]; + if (elt!=nil && [[elt vName] length] >0 && [elt isValid] ) + [arr addObject:elt]; + } + if (session!=nil) CFRelease(session); + } + [partArr release]; + return arr; +} + +- (int) extractInfoWithBSDName: (NSString*) name +{ + return [self extractInfoWithBSDName:name withinSession: nil]; +} + +-(bool) isBootable +{ + bool bootable = false; + NSFileManager* mgr = [NSFileManager defaultManager]; + NSString *fmt = @"/Volumes/%@%s"; + // that Windows is the name of WIN32 bootable disk dir ... + if( + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/System/Library/Extensions" ]] || + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/ntldr" ]] || + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/bootmgr" ]] || + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/boot/bcd" ]] || + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/pagefile.sys" ]] || + [mgr fileExistsAtPath: [NSString stringWithFormat: fmt, vName, "/hiberfil.sys" ]] + ) + bootable=true; + else if ([vName rangeOfString:@"ext"].location != NSNotFound) // linux ? + bootable = true; + return bootable; +} + +/// Return the partition image index according to its file system +-(int) imageIndexFromFs +{ + + if ( [[self vKind] rangeOfString:@"hfs"].location != NSNotFound ) + return 0; // Mac + if ( [[self vKind] rangeOfString:@"fat"].location != NSNotFound || + [[self vKind] rangeOfString:@"ntfs"].location != NSNotFound || + [[self vKind] rangeOfString:@"dos"].location != NSNotFound ) + return 1; // Windows + if ( [[self vKind] rangeOfString:@"ext"].location != NSNotFound ) + return 2; // Linux + + return 10; // unknown +} + +/// Volume label trimming utility function ++(NSString*) removesSpacesFromLabel:(NSString*) label +{ + if (label == nil || [label length]==0) return label; + return [label stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; +} + +/// make the object description available for NSLog() debug purpose +-(NSString*) description +{ + NSString* format = + @"(\n" + " bsdName %@\n deviceProtocol %@\n deviceInternal %i\n" + " volumeName %@\n volumeKind %@\n volumeUUID %@\n" + " mediaPath %@\n mediaRemovable %i\n" + ")"; + NSString* value = [NSString stringWithFormat: format, + self.bsdName, self.devProtocol, self.devInternal, + self.vName, self.vKind, self.vUUID, + self.mediaPath, self.mediaRemovable ]; + return value; +} + + +/// initialize a partition element with DA partition info +-(id) initWithBSDName:(NSString*) name +{ + [super init]; + diskNum = partNum = -1; + err = [self extractInfoWithBSDName: name withinSession: nil]; + return self; +} + +/// initialize a partition element with DA partition info and an optional opened session +-(id) initWithBSDName:(NSString*) name withinSession:(DASessionRef) session +{ + [super init]; + diskNum = partNum = -1; + err = [self extractInfoWithBSDName: name withinSession: session]; + + return self; +} + +-(void) cleanup +{ + + if (descDict != nil) CFRelease(descDict); + if (bsdName != nil) [bsdName release]; + if (vUUID != nil) [vUUID release]; + if (vKind != nil) [vKind release]; + if (vName != nil) [vName release]; + if (mediaPath != nil) [mediaPath release]; + if (devProtocol != nil) [devProtocol release]; + if (vAliasName != nil) [vAliasName release]; + bsdName = vUUID = vKind = vName = mediaPath = devProtocol = vAliasName = nil; + descDict = nil; +} + +/// release created objects +-(void) dealloc +{ + [self cleanup]; + [super dealloc]; +} + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/PeripheralsController.h (revision 396) @@ -0,0 +1,42 @@ +// +// PeripheralsController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import +#import + + +// TabView subpane controller definition +@interface PeripheralsController : PreferencesControllerBase +{ + + IBOutlet NSButton* mLegacyLogo; + IBOutlet NSButton* mBootBanner; + IBOutlet NSButton* mVBIOS; + IBOutlet NSButton* mAtiVideoROM; + IBOutlet NSButton* mNvidiaVideoROM; + + IBOutlet NSButton* mGraphicsMode; + IBOutlet NSComboBox* mGraphicsModeText; + IBOutlet NSButton* mGraphicsEnabler; + + IBOutlet NSButton* mUSBBusFix; + IBOutlet NSButton* mEHCIacquire; + IBOutlet NSButton* mUHCIreset; + + IBOutlet NSButton* mEthernetBuiltIn; + IBOutlet NSButton* mPciRoot; + IBOutlet NSTextField* mPciRootText; + IBOutlet NSButton* mForceHPET; +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + ++ (PeripheralsController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.cpp =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.cpp (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/KernOptionsParser.cpp (revision 396) @@ -0,0 +1,76 @@ +/* + * KernOptionsParser.cpp + * ChameleonPrefPane + * + * Created by Rekursor on 1/23/10. + */ + +#include "KernOptionsParser.h" +#include "string_util.h" + +bool KernOptionsParser::parseOptions(const char* options) +{ + _options = options ? trim(options) : ""; + std::string token, temp=_options; + + // first remove spaces around '=' to simplify parsing + std::string::size_type found = std::string::npos; + while ((found=_options.find(" =")) != std::string::npos) _options.replace(found, 3,"="); + while ((found=_options.find("= ")) != std::string::npos) _options.replace(found, 3,"="); + + // then tokenize the string + _optionsList = tokenize(_options); + + return true; +} + +static const std::string sEmpty=""; + +// get the corresponding kern option "xxxx=yyyy" +const std::string& KernOptionsParser::stringFromKey(const std::string& key) const +{ + for (std::list::const_iterator it=_optionsList.begin(); it!=_optionsList.end(); it++) + if (it->find(key)!=std::string::npos) return *it; + + return sEmpty; +} + +// get the left member of kern option "xxxx=yyyy" +const std::string& KernOptionsParser::leftMember(const std::string& expression) const +{ + static std::string sLeft; + std::string::size_type pos = expression.find('='); + + if (pos!=std::string::npos) + return (sLeft = expression.substr(0, pos)); + return expression; +} + +// get the right member of kern option "xxxx=yyyy" +const std::string& KernOptionsParser::rightMember(const std::string& expression) const +{ + static std::string sLeft; + std::string::size_type pos = expression.find('='); + + if (pos!=std::string::npos) + return (sLeft = expression.substr(pos+1)); + return expression; +} +// remove a flag in the string +void KernOptionsParser::removeFlag(const std::string& flag) +{ + std::string::size_type found = _options.find(flag); + if (found==std::string::npos) return; + _options.erase(found, found+flag.length()); + _options = trim(_options); +} + +// remove a flag in the string +void KernOptionsParser::addFlag(const std::string& flag) +{ + std::string::size_type found = _options.find(flag); + if (found!=std::string::npos) return; + _options = " " + _options; + _options = flag + _options; + _options = trim(_options); +} Index: branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/BootFlagsController.h (revision 396) @@ -0,0 +1,42 @@ +// +// BootFlagsController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import +#import "PreferencesControllerBase.h" + + +// TabView subpane controller definition +@interface BootFlagsController : PreferencesControllerBase +{ + + IBOutlet NSButton* mVerbose; + IBOutlet NSButton* mSafeBoot; + IBOutlet NSButton* mIgnoreBootConfig; + + IBOutlet NSButton* mTimeOut; + IBOutlet NSTextField* mTimeOutText; + IBOutlet NSButton* mSingleUser; + + IBOutlet NSButton* mQuietBoot; + IBOutlet NSButton* mInstantMenu; + IBOutlet NSButton* mWait; + + IBOutlet NSButton* mRescan; + IBOutlet NSButton* mRescanPrompt; + IBOutlet NSButton* mRescanSingleDrive; + IBOutlet NSButton* mUseGUI; + IBOutlet NSButton* mTheme; + IBOutlet NSComboBox* mThemeText; +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + ++ (BootFlagsController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.h =================================================================== --- branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.h (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Sources/BootSetupController.h (revision 396) @@ -0,0 +1,57 @@ +// +// PartitionsSetupController.h +// ChameleonPrefPane +// +// Created by Rekursor on 1/22/10. +// + +#import +#import "PreferencesControllerBase.h" + +// Constants definitions +static const char* const kDefaultPartition = "Default Partition"; +static const char* const kHidePartition = "Hide Partition"; +static const char* const kRenamePartition = "Rename Partition"; + +// TabView subpane controller definition +@interface BootSetupController : PreferencesControllerBase +{ +@public + IBOutlet NSButton * mSwapHD01; + IBOutlet NSButton * mSwapHD02; + IBOutlet NSButton * mFreezeParts; + IBOutlet NSButton * mInjectFrozenParts; + + IBOutlet NSButton* mDefaultPartition; + IBOutlet NSTextField* mDefaultPartitionText; + + IBOutlet NSButton* mHidePartition; + IBOutlet NSTextField* mHidePartitionText; + + IBOutlet NSButton* mRenamePartition; + IBOutlet NSTextField* mRenamePartitionText; + + IBOutlet NSButton* mBootConfigPath; + IBOutlet NSTextField* mBootConfigPathText; + + IBOutlet NSButton* mBootExtraPath; + IBOutlet NSTextField* mBootExtraPathText; + + IBOutlet NSButton* mBootCdbootPath; + IBOutlet NSTextField* mBootCdbootPathText; + +} + +- (IBAction) onCheckButtonChange: (NSButton*) sender; +- (IBAction) onTextFiedChange: (NSTextField*) sender; +- (void) setDefaultsValues: (NSMutableDictionary*) dict; + +- (void) doSwapHD: (int) val save: (bool) doSave src: (int) isrc dst: (int) idst; +- (IBAction) onForceBootConfigPath: (id) sender; +- (IBAction) onCdBootConfigPath: (id) sender; +- (IBAction) onExtraConfigPath: (id) sender; +- (IBAction) onCreateBootCD: (id) sender; + ++ (BootSetupController *)instance; + +@end Index: branches/ErmaC/ChameleonPrefPane/ibexport_all =================================================================== --- branches/ErmaC/ChameleonPrefPane/ibexport_all (revision 0) +++ branches/ErmaC/ChameleonPrefPane/ibexport_all (revision 396) @@ -0,0 +1,4 @@ +./ibexport German.lproj/Chameleon +./ibexport Italian.lproj/Chameleon +./ibexport French.lproj/Chameleon +./ibexport Spanish.lproj/Chameleon Property changes on: branches/ErmaC/ChameleonPrefPane/ibexport_all ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/ibimport =================================================================== --- branches/ErmaC/ChameleonPrefPane/ibimport (revision 0) +++ branches/ErmaC/ChameleonPrefPane/ibimport (revision 396) @@ -0,0 +1,2 @@ +#!/bin/sh +ibtool --strings-file ${1}.strings --write ${1}.xib ${1}.xib Property changes on: branches/ErmaC/ChameleonPrefPane/ibimport ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Info.plist =================================================================== --- branches/ErmaC/ChameleonPrefPane/Info.plist (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Info.plist (revision 396) @@ -0,0 +1,36 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + Chameleon.icns + CFBundleIdentifier + org.chameleon.${PRODUCT_NAME:identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + BNDL + CFBundleShortVersionString + 2.0 + CFBundleSignature + ???? + CFBundleVersion + 2.0.0 RC5 + NSMainNibFile + Chameleon + NSPrefPaneIconFile + Chameleon.tiff + NSPrefPaneIconLabel + Chameleon + NSPrincipalClass + ChameleonPrefPane + + Index: branches/ErmaC/ChameleonPrefPane/French.lproj/Chameleon.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/French.lproj/Chameleon.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/French.lproj/Localizable.strings =================================================================== --- branches/ErmaC/ChameleonPrefPane/French.lproj/Localizable.strings (revision 0) +++ branches/ErmaC/ChameleonPrefPane/French.lproj/Localizable.strings (revision 396) @@ -0,0 +1,23 @@ +/* comment */ +"About" = "A Propos"; + +/* comment */ +"Advanced" = "Avancé"; + +/* comment */ +"Boot_Flags" = "Options Dém."; + +/* comment */ +"Boot_From" = "Démarrage"; + +/* comment */ +"Boot_Setup" = "Config Dém."; + +/* comment */ +"Efi_Inject" = "Injection EFI"; + +/* comment */ +"Peripherals" = "Péripheriques"; + +/* comment */ +"Bios" = "BIOS"; \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/French.lproj/Chameleon.xib =================================================================== --- branches/ErmaC/ChameleonPrefPane/French.lproj/Chameleon.xib (revision 0) +++ branches/ErmaC/ChameleonPrefPane/French.lproj/Chameleon.xib (revision 396) @@ -0,0 +1,11295 @@ + + + + 1050 + 11C74 + 1938 + 1138.23 + 567.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1938 + + + YES + NSButton + NSCustomObject + NSImageView + NSImageCell + NSTableView + NSCustomView + NSComboBox + NSComboBoxCell + NSTextField + NSViewController + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSTableColumn + NSBox + NSView + NSScrollView + NSTabViewItem + NSUserDefaultsController + NSScroller + NSTabView + NSTableHeaderView + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSPreferencePane + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{176, 644}, {668, 439}} + 1081606144 + << do not localize >> + NSWindow + + View + + + {224.66399999999999, 10} + + + 256 + + YES + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{0, 31}, {126, 408}} + + YES + + YES + + 2 + YES + + 130560 + 33554432 + + NSImage + background + + 0 + 1 + 0 + YES + + YES + + + + 4352 + + YES + + + 2304 + + YES + + + 4352 + {126, 410} + + 2 + YES + + + 256 + {{-26, 0}, {16, 17}} + + + YES + + 31 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + Icon + + LucidaGrande + 11 + 3100 + + + 6 + System + headerColor + + 3 + MQA + + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 67239424 + 33554432 + + LucidaGrande + 13 + 1044 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 89 + 10 + 1000 + + 75628096 + 2048 + Menu Name + + + + + + 1140981312 + 2048 + Text Cell + + LucidaGrande + 11 + 16 + + + + 4 + MSAwAA + + + 6 + System + controlTextColor + + + + 3 + YES + YES + + + + 3 + 2 + + 1 + MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTggMAA + + + 4 + MC44IDAAA + + 36 + 37781504 + + + 1 + 15 + 0 + YES + 1 + 1 + 1 + + + {126, 410} + + + 2 + + + 4 + MSAwAA + + 4 + + + + -2147483392 + {{-100, -100}, {15, 441}} + + + _doScroller: + 0.19473683834075928 + + + + -2147483392 + {{-100, -100}, {141, 15}} + + 1 + + _doScroller: + 0.99047619104385376 + + + {{0, 29}, {126, 410}} + + + YES + + YES + + 2 + 133120 + + + + QSAAAEEgAABCGAAAQhgAAA + + + + 268 + {{127, 31}, {541, 408}} + + YES + + subviews + + fromTop + fade + + YES + subtype + type + + + + 2 + + YES + + Item 1 + + + 292 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 8448 + {499, 257} + + 2 + YES + + + 256 + {499, 17} + + 2 + + + + + -2147483392 + {{457, 0}, {16, 17}} + 2 + + + YES + + 32 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + OS + + + + + + 67239424 + 33554432 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 157.640625 + 40 + 1000 + + 75628096 + 67110912 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772097 + 67110912 + Text Cell + + LucidaGrande-Bold + 14 + 16 + + + 1 + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + + YES + sr_Latn_RS + zh + ro_RO + be_BY + si_LK + fa_IR + en_BW + en_JM + ka_GE + zh_Hans_SG + mk_MK + en_HK + ar_LB + ii_CN + ru_UA + zh_Hant_HK + af + kl_GL + az_Latn + ar_SA + en_BE + bn_BD + en_MH + be + nl_NL + el_CY + az_Cyrl_AZ + ca + sr_Latn + om_ET + es_CL + bg + en_VI + es_VE + uz_Cyrl_UZ + fr_MC + am + zh_Hant + uz_Arab + en_GB + da + mr_IN + es_MX + es_PR + sq_AL + ar + fi_FI + bn + en_NA + de + as + cy_GB + en_IE + en_BZ + de_CH + en_US + sr_Latn_BA + te_IN + ar_QA + ar_TN + zh_Hans_MO + de_LI + fa + kw_GB + cs_CZ + hu_HU + zh_Hant_TW + uz_Latn + ta_IN + az + ar_EG + ar_SD + cs + ga + ar_LY + af_ZA + el + es_PA + es_CO + fi + en + ha + eo + gl_ES + cy + es_GT + ms_BN + ne_IN + he_IL + he + es + fo + en_CA + et + hr_HR + haw + gl + ar_SY + fr_SN + eu + uz_Arab_AF + id + fr + az_Latn_AZ + hi + zh_Hans_HK + ja + es_ES + ar_AE + uz_Latn_UZ + ca_ES + fr_BE + hi_IN + is_IS + ii + ps_AF + ka + tr_TR + it_CH + kk_Cyrl_KZ + gu + es_US + gv + en_PH + es_HN + hr + sv_FI + es_CR + haw_US + ar_MA + hu + nl_BE + th_TH + en_ZA + kk_Cyrl + is + it + es_PE + hy + de_DE + en_NZ + kk + kl + en_AU + pa_Guru + el_GR + km + kn + ko + nb + ar_IQ + es_PY + es_EC + en_US_POSIX + vi_VN + lv_LV + ne + kn_IN + es_AR + mk + ml + bg_BG + hy_AM_REVISED + kw + uk_UA + en_PK + pa + lt + sk_SK + nl + ur_PK + de_BE + lv + as_IN + mr + nn + en_ZW + fr_CA + ne_NP + ms + pl_PL + ti_ER + ja_JP + mt + fr_LU + om + sr_Cyrl_ME + en_IN + ga_IE + sw_KE + pl + kok + ur_IN + or + it_IT + hy_AM + ml_IN + en_SG + es_SV + am_ET + pt_BR + bn_IN + mt_MT + ar_KW + es_DO + pa_Arab + gv_GB + so_KE + ti_ET + ps + ms_MY + sl_SI + es_UY + en_MT + pt + sw_TZ + ta + nn_NO + sr_Cyrl_RS + si + te + ro + so_SO + sk + az_Cyrl + or_IN + sl + pa_Arab_PK + ru_RU + th + ar_DZ + ti + so + sr_Cyrl + es_NI + ha_Latn_NG + ru + en_TT + sq + fr_FR + sr + da_DK + es_BO + nb_NO + de_LU + uk + eu_ES + ar_JO + sv + so_ET + tr + sw + vi + zh_Hans_CN + km_KH + fa_AF + et_EE + ko_KR + pa_Guru_IN + sr_Latn_ME + so_DJ + ur + kok_IN + uz_Cyrl + zh_Hant_MO + zh_Hans + ar_YE + fo_FO + sv_SE + ha_Latn + de_AT + lt_LT + ar_OM + sr_Cyrl_BA + uz + ar_BH + id_ID + pt_PT + af_NA + om_KE + fr_CH + gu_IN + + + 3 + YES + YES + + + + 46.90234375 + 10 + 3.4028229999999999e+38 + + 75628096 + 134219776 + HD + + + + + + 69336641 + 134350848 + Text Cell + + + YES + 1 + + + + 3 + YES + + Name Displayed on the bootable partion during Chameleon boot + + + 207.3359375 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + UUID + + + + + + 67239488 + 264192 + Text Cell + + LucidaGrande + 9 + 3614 + + + + + + 3 + YES + YES + + + + 40 + 40 + 1000 + + 75628096 + 2048 + FS + + + + + + 69336641 + 133120 + Text Cell + + + YES + 1 + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 32 + -689963008 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {494, 257}} + + + 2 + + + 4 + + + + -2147483392 + {{457, 17}, {15, 227}} + + + _doScroller: + 0.94163424124513617 + + + + 256 + {{1, 259}, {494, 15}} + + YES + 1 + + _doScroller: + 0.98997995991983967 + + + + 2304 + + YES + + + {{1, 0}, {494, 17}} + + + 2 + + + 4 + + + {{6, 9}, {496, 275}} + + + 2 + 133810 + + + + + QSAAAEEgAABCCAAAQggAAA + + + {{1, 1}, {509, 294}} + + 2 + + + {{44, 217}, {511, 310}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Partition + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -140}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + 3 + MCAwAA + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{367, 8}, {158, 25}} + + 2 + YES + + 67239424 + 134217728 + Restart + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{112, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Shutdown + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{12, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Sleep + + + -2038284033 + 163 + + + 200 + 25 + + + + {541, 408} + + 2 + + Startup Disk + + 6 + System + controlColor + + + + + + Item 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 80}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Default Partition + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 12 + {{174, 79}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Hide Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 49}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 12 + {{16, 17}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Rename Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 19}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + {{1, 1}, {509, 114}} + + + 2 + + + {{44, 397}, {511, 130}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Partitions Management + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 94}, {267, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->1 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{305, 94}, {188, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->2 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 63}, {285, 18}} + + + 2 + YES + + 67239424 + 0 + Use Freezed Parts List + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 30}, {158, 18}} + + + 2 + YES + + 67239424 + 0 + Boot Config Path + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 31}, {323, 19}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{307, 64}, {190, 18}} + + + 2 + YES + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {509, 128}} + + + 2 + + + {{44, 240}, {511, 144}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Boot Selector Fixes + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{102, 37}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{102, 14}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{12, 39}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + Extra folder + + + -2034876161 + 193 + + LucidaGrande + 9 + 16 + + + + 200 + 25 + + + + + 268 + {{399, 27}, {100, 18}} + + + 2 + YES + + 67239424 + 134348800 + Create ISO + + + -2033434369 + 163 + + + 200 + 25 + + + + + 12 + {{12, 16}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + cdboot folder + + + -2034876161 + 193 + + + + 200 + 25 + + + + {{1, 1}, {509, 64}} + + + 2 + + + {{44, 148}, {511, 80}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Rescue Boot CD Creator + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-32, -140}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + Boot Setup + + + + + Item 3 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 102}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Verbose (-v) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 102}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Ignore Boot Config (-F) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 71}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Single User (-s) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 71}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Time Out + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 42}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Quiet Boot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 42}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Instant Menu + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 42}, {170, 23}} + + 2 + YES + + 67239424 + 0 + Wait + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{164, 107}, {161, 18}} + + 2 + YES + + 67239424 + 0 + Safe Boot (-x) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 12}, {164, 23}} + + 2 + YES + + 67239424 + 0 + Use GUI + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 70}, {46, 26}} + + 2 + 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 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 12 + {{16, 12}, {144, 23}} + + 2 + YES + + -2080244224 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 9}, {134, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 105} + + + 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, 1}, {509, 144}} + + 2 + + + {{13, 228}, {511, 160}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Flags + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{16, 13}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Rescan + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 13}, {174, 23}} + + 2 + YES + + 67239424 + 0 + Scan Single Drive + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 13}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Rescan Prompt + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 52}} + + 2 + + + {{13, 146}, {511, 68}} + + 2 + {0, 0} + + 67239424 + 0 + CDROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Boot Flags + + + + + Item 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{155, 17}, {208, 23}} + + 2 + YES + + 67239424 + 0 + Boot Banner + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 86}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Mode + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 86}, {134, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Enabler + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 51}, {134, 23}} + + 2 + YES + + 67239424 + 0 + VBIOS + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 17}, {141, 23}} + + 2 + YES + + 67239424 + 0 + Legacy Logo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{157, 83}, {181, 26}} + + 2 + 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 + + + + + + 268 + {{16, 53}, {141, 18}} + + 2 + YES + + 67239424 + 0 + Use Ati ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{155, 53}, {202, 18}} + + 2 + YES + + 67239424 + 0 + Use Nvidia ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 121}} + + 2 + + + {{13, 251}, {511, 137}} + + 2 + {0, 0} + + 67239424 + 0 + Graphics + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{361, 12}, {143, 23}} + + 2 + YES + + 67239424 + 0 + UHCI reset + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 12}, {173, 23}} + + 2 + YES + + 67239424 + 0 + USB Bus Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 12}, {169, 23}} + + 2 + YES + + 67239424 + 0 + EHCI acquire + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 44}} + + 2 + + + {{13, 177}, {511, 60}} + + 2 + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Ethernet Built-In + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 10}, {69, 23}} + + 2 + YES + + 67239424 + 0 + PciRoot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 12}, {138, 23}} + + 2 + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{268, 10}, {51, 26}} + + 2 + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + + YES + 0 + 1 + + + + + 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 + 1 + + + + + {{1, 1}, {509, 43}} + + 2 + + + {{13, 104}, {511, 59}} + + 2 + {0, 0} + + 67239424 + 0 + Ethernet + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Peripherals + + + + + Item 5 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 36 + + YES + + + 274 + + YES + + + 268 + {{161, 47}, {205, 23}} + + 2 + YES + + 67239424 + 0 + Force Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 19}, {146, 23}} + + 2 + YES + + 67239424 + 0 + Wake Image + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{163, 18}, {201, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 52}, {146, 18}} + + 2 + YES + + 67239424 + 0 + Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 78}} + + 2 + + + {{45, 116}, {511, 94}} + + 2 + {0, 0} + + 67239424 + 0 + Wake + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -106}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{277, 217}, {50, 23}} + + 2 + YES + + 67239424 + 0 + rd + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 112}, {102, 18}} + + 2 + YES + + 67239424 + 0 + SystemType + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{385, 107}, {59, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + + + + 274 + {13, 126} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{277, 179}, {81, 23}} + + 2 + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 217}, {63, 23}} + + 2 + YES + + 67239424 + 0 + Kernel + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{322, 219}, {159, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + + YES + + + + + + + 268 + {{277, 145}, {75, 23}} + + 2 + YES + + 67239424 + 0 + io + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 219}, {164, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 148}, {80, 18}} + + 2 + YES + + 67239424 + 0 + cpus + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 111}, {90, 23}} + + 2 + YES + + 67239424 + 0 + busratio + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 76}, {90, 18}} + + 2 + YES + + 67239424 + 0 + SystemId + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 181}, {90, 23}} + + 2 + YES + + 67239424 + 0 + arch + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 41}, {226, 18}} + + 2 + YES + + 67239424 + 0 + Disable kext blacklist + + LucidaGrande + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 75}, {339, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 41}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{102, 179}, {76, 26}} + + 2 + 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 + 1 + + + + + + 268 + {{102, 109}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{102, 142}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{358, 178}, {86, 23}} + + 2 + YES + + 343014976 + 272630784 + + + LucidaGrande + 10 + 16 + + + 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 + 1 + + + + + + 268 + {{358, 143}, {86, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF + + + + + 274 + {13, 34} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{16, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate P-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate C-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 250}} + + 2 + + + {{13, 122}, {511, 266}} + + 2 + {0, 0} + + 67239424 + 0 + Kernel + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Advanced + + + + + Item 6 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 311}, {244, 18}} + + 2 + YES + + 67239424 + 0 + Device Properties + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{327, 309}, {170, 25}} + + 2 + YES + + -2080244224 + 134217728 + Current GFX Injection + + + -2038152961 + 163 + + + 400 + 75 + + + + + 12 + + YES + + + 2304 + + YES + + + 268 + {{0, 91}, {536, 506}} + + 2 + YES + + -1809711615 + 272629760 + + + + YES + + + + + + {{1, 1}, {462, 264}} + {{0, 333}, {462, 264}} + + + 2 + + + 4 + + + + 256 + {{463, 1}, {15, 264}} + + 2 + YES + + _doScroller: + 1 + 0.52173913043478259 + + + + -2147483392 + {{-100, -100}, {536, 15}} + + 2 + YES + 1 + + _doScroller: + 0.50602412223815918 + + + {{18, 22}, {479, 266}} + + + 2 + 133842 + + + + + + {{1, 1}, {509, 348}} + + 2 + + + {{13, 24}, {511, 364}} + + 2 + {0, 0} + + 67239424 + 0 + EFI injection + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + EFI Inject + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {509, 234}} + + 2 + + + {{44, 179}, {511, 250}} + + + 2 + {0, 0} + + 67239424 + 0 + IORegistry + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 54}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + DSDT file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{370, 52}, {148, 22}} + + + 2 + YES + + 67239424 + 0 + Drop + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{139, 53}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{139, 14}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{370, 12}, {161, 23}} + + + 2 + YES + + 67239424 + 0 + Defaults + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 15}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + SMBIOS file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 87}} + + + 2 + + + {{44, 433}, {511, 103}} + + + 2 + {0, 0} + + 67239424 + 0 + DSDT & SMBIOS + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{384, 151}, {168, 25}} + + + 2 + YES + + 67239424 + 134217728 + Open smbios.plist + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{209, 151}, {168, 25}} + + 2 + YES + + 67239424 + 134217728 + Extract SMBIOS + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{47, 151}, {154, 25}} + + + 2 + YES + + -2080244224 + 134217728 + Extract ACPI + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-34, -141}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + SMBIOS + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{18, -1}, {513, 261}} + + 2 + YES + + -2080244224 + 138412032 + + + + YES + + 1 + MCAwIDAgMAA + + + 1 + MCAwIDAgMC45AA + + + + + + 268 + {{186, 338}, {172, 17}} + + 2 + YES + + 68288064 + 138413056 + Version bla bla. + + LucidaGrande-Bold + 13 + 16 + + + + + 1 + MCAwIDAgMC45AA + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{223, 243}, {100, 100}} + + 2 + YES + + 130560 + 33554432 + + NSImage + cham + + 0 + 0 + 0 + YES + + YES + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{141, 358}, {262, 45}} + + 2 + YES + + 130560 + 33554432 + + NSImage + name + + 0 + 0 + 0 + YES + + YES + + + {541, 408} + 2 + + About + + + + + + + 268435462 + YES + YES + + YES + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {675, 34} + + 2 + YES + + 130560 + 33554432 + + NSImage + footer + + 0 + 1 + 0 + YES + + YES + + + + 268 + {{0, 2}, {227.58203125, 30}} + + YES + 2 + SFAuthorizationView + + + + 268 + {{232, 8}, {419, 17}} + + 2 + _NS:4068 + YES + + 68288064 + 71304192 + + + _NS:4068 + + + + + + + {668, 439} + YES + 2 + + {{0, 0}, {1920, 1178}} + {224.66399999999999, 32} + {10000000000000, 10000000000000} + YES + + + AboutController + + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + + + EfiInjectController + + + SmbiosController + + + YES + + + TableViewsController + + + + + + YES + + + _window + + + + 26 + + + + delegate + + + + 972 + + + + dataSource + + + + 973 + + + + authView + + + + 137 + + + + onRestart: + + + + 188 + + + + mSleepButton + + + + 192 + + + + mShutDownButton + + + + 193 + + + + mRestartButton + + + + 194 + + + + onSleep: + + + + 195 + + + + onShutdown: + + + + 197 + + + + box + + + + 991 + + + + mStatusText + + + + 1351 + + + + onTextFiedChange: + + + + 1141 + + + + onCheckButtonChange: + + + + 1143 + + + + onCheckButtonChange: + + + + 1145 + + + + onTextFiedChange: + + + + 1148 + + + + onCheckButtonChange: + + + + 1150 + + + + onTextFiedChange: + + + + 1151 + + + + mDefaultPartition + + + + 1153 + + + + mHidePartition + + + + 1154 + + + + mRenamePartition + + + + 1155 + + + + mDefaultPartitionText + + + + 1156 + + + + mHidePartitionText + + + + 1157 + + + + mRenamePartitionText + + + + 1158 + + + + onCheckButtonChange: + + + + 1178 + + + + onTextFiedChange: + + + + 1179 + + + + onCheckButtonChange: + + + + 1180 + + + + onCheckButtonChange: + + + + 1181 + + + + onCheckButtonChange: + + + + 1182 + + + + onCheckButtonChange: + + + + 1183 + + + + mBootConfigPathText + + + + 1185 + + + + mSwapHD01 + + + + 1186 + + + + mSwapHD02 + + + + 1187 + + + + mBootConfigPath + + + + 1189 + + + + mFreezeParts + + + + 1190 + + + + mInjectFrozenParts + + + + 1191 + + + + onTextFiedChange: + + + + 1294 + + + + onTextFiedChange: + + + + 1295 + + + + mBootExtraPath + + + + 1298 + + + + mBootExtraPathText + + + + 1300 + + + + mBootCdbootPathText + + + + 1301 + + + + onCreateBootCD: + + + + 1302 + + + + onExtraConfigPath: + + + + 1303 + + + + onCdBootConfigPath: + + + + 1307 + + + + mBootCdbootPath + + + + 1308 + + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + onCheckButtonChange: + + + + 671 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 723 + + + + onCheckButtonChange: + + + + 725 + + + + onCheckButtonChange: + + + + 726 + + + + onCheckButtonChange: + + + + 727 + + + + onCheckButtonChange: + + + + 728 + + + + onCheckButtonChange: + + + + 729 + + + + onCheckButtonChange: + + + + 730 + + + + onCheckButtonChange: + + + + 731 + + + + onCheckButtonChange: + + + + 732 + + + + onCheckButtonChange: + + + + 778 + + + + mUseGUI + + + + 779 + + + + mTimeOutText + + + + 857 + + + + onTextFiedChange: + + + + 858 + + + + onCheckButtonChange: + + + + 871 + + + + onTextFiedChange: + + + + 874 + + + + mThemeText + + + + 875 + + + + mTheme + + + + 876 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 716 + + + + onCheckButtonChange: + + + + 717 + + + + onCheckButtonChange: + + + + 718 + + + + onCheckButtonChange: + + + + 719 + + + + onCheckButtonChange: + + + + 720 + + + + onCheckButtonChange: + + + + 721 + + + + onCheckButtonChange: + + + + 722 + + + + onCheckButtonChange: + + + + 770 + + + + mPciRoot + + + + 774 + + + + mGraphicsModeText + + + + 841 + + + + onTextFiedChange: + + + + 842 + + + + onCheckButtonChange: + + + + 861 + + + + mForceHPET + + + + 862 + + + + mPciRootText + + + + 1202 + + + + onTextFiedChange: + + + + 1203 + + + + onCheckButtonChange: + + + + 1204 + + + + mAtiVideoROM + + + + 1205 + + + + onCheckButtonChange: + + + + 1206 + + + + mNvidiaVideoROM + + + + 1207 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mCPU + + + + 650 + + + + mBusRatio + + + + 652 + + + + mDebug + + + + 654 + + + + mIO + + + + 656 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + + + + onCheckButtonChange: + + + + 699 + + + + onCheckButtonChange: + + + + 700 + + + + onCheckButtonChange: + + + + 701 + + + + onCheckButtonChange: + + + + 702 + + + + onCheckButtonChange: + + + + 703 + + + + onCheckButtonChange: + + + + 704 + + + + onCheckButtonChange: + + + + 705 + + + + onCheckButtonChange: + + + + 706 + + + + onCheckButtonChange: + + + + 707 + + + + onCheckButtonChange: + + + + 708 + + + + onCheckButtonChange: + + + + 709 + + + + onTextFiedChange: + + + + 710 + + + + onCheckButtonChange: + + + + 744 + + + + mSystemId + + + + 748 + + + + mSystemIdText + + + + 749 + + + + onTextFiedChange: + + + + 750 + + + + onCheckButtonChange: + + + + 766 + + + + mRestartFix + + + + 767 + + + + mArchText + + + + 845 + + + + onTextFiedChange: + + + + 846 + + + + mBusRatioText + + + + 849 + + + + onTextFiedChange: + + + + 850 + + + + mCPUText + + + + 853 + + + + onTextFiedChange: + + + + 854 + + + + mDebugText + + + + 865 + + + + onTextFiedChange: + + + + 866 + + + + mIOText + + + + 877 + + + + onTextFiedChange: + + + + 878 + + + + mSystemType + + + + 1208 + + + + onCheckButtonChange: + + + + 1209 + + + + mSystemTypeText + + + + 1210 + + + + onTextFiedChange: + + + + 1211 + + + + onCheckButtonChange: + + + + 1241 + + + + onCheckButtonChange: + + + + 1244 + + + + mGenerateCStates + + + + 1245 + + + + mGeneratePStates + + + + 1246 + + + + mEfiInject + + + + 789 + + + + onCheckButtonChange: + + + + 792 + + + + mCurrentGfxInjection + + + + 796 + + + + onCheckButtonChange: + + + + 797 + + + + mEfiInjectText + + + + 824 + + + + onTextFiedChange: + + + + 825 + + + + mEditSmbios + + + + 835 + + + + onCheckButtonChange: + + + + 836 + + + + onCheckButtonChange: + + + + 1218 + + + + mExtractACPITables + + + + 1219 + + + + onCheckButtonChange: + + + + 1426 + + + + mAppleSmbios + + + + 1427 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 910 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 909 + + + + value: bundleVersionNumber + + + + + + value: bundleVersionNumber + value + bundleVersionNumber + 2 + + + 913 + + + + delegate + + + + 971 + + + + dataSource + + + + 974 + + + + mMenuName + + + + 970 + + + + mPartitionImgColumn + + + + 975 + + + + mPartitionNameColumn + + + + 976 + + + + mPartitionIDColumn + + + + 977 + + + + mFileSystemColumn + + + + 978 + + + + mPartitionsTable + + + + 980 + + + + mBootFrom + + + + 981 + + + + mBootFlags + + + + 983 + + + + mPeripherals + + + + 984 + + + + mAdvanced + + + + 985 + + + + mEfiInject + + + + 986 + + + + mSmbios + + + + 987 + + + + mAbout + + + + 988 + + + + mTabViewPanes + + + + 989 + + + + mTabViewPanesSelect + + + + 994 + + + + mBootSetup + + + + 1152 + + + + mMenuIcon + + + + 1215 + + + + mPartitionUIDColumn + + + + 1252 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 12 + + + YES + + + + PrefPane + + + 6 + + + YES + + + + + + + + + + + -3 + + + Application + + + 112 + + + ChameleonPrefPane + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 788 + + + + + 834 + + + + + 893 + + + + + 897 + + + + + 947 + + + YES + + + + + + + + 948 + + + + + 949 + + + + + 950 + + + YES + + + + + + + 952 + + + YES + + + + + + 953 + + + + + 961 + + + + + 172 + + + YES + + + + + + + + + + + + + 920 + + + YES + + + + + + 921 + + + + + 995 + + + YES + + + + + + 996 + + + + + 136 + + + YES + + + + + 173 + + + YES + + + + + + 174 + + + YES + + + + + + + + + 1010 + + + YES + + + + + + 186 + + + YES + + + + + + 187 + + + + + 189 + + + YES + + + + + + 190 + + + + + 441 + + + YES + + + + + + 442 + + + YES + + + + + + + + + 1006 + + + + + 536 + + + YES + + + + + + + + 541 + + + YES + + + + + + 544 + + + + + 542 + + + YES + + + + + + 543 + + + + + 540 + + + YES + + + + + + 545 + + + + + 537 + + + YES + + + + + + + + + 538 + + + YES + + + + + + 539 + + + + + 859 + + + YES + + + + + + 860 + + + + + 768 + + + YES + + + + + + 769 + + + + + 456 + + + YES + + + + + + + + + + + + + 457 + + + YES + + + + + + 464 + + + + + 458 + + + YES + + + + + + 463 + + + + + 450 + + + YES + + + + + + 455 + + + + + 487 + + + YES + + + + + + 488 + + + + + 452 + + + YES + + + + + + 453 + + + + + 839 + + + YES + + + + + + 840 + + + + + 478 + + + YES + + + + + + 479 + + + YES + + + + + + + 511 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + + + 493 + + + YES + + + + + + 506 + + + + + 491 + + + YES + + + + + + 508 + + + + + 496 + + + YES + + + + + + 503 + + + + + 497 + + + YES + + + + + + 502 + + + + + 863 + + + YES + + + + + + 864 + + + + + 489 + + + YES + + + + + + 510 + + + + + 494 + + + YES + + + + + + 505 + + + + + 495 + + + YES + + + + + + 504 + + + + + 867 + + + YES + + + + + + 868 + + + + + 851 + + + YES + + + + + + 852 + + + + + 764 + + + YES + + + + + + 765 + + + + + 586 + + + YES + + + + + + 587 + + + + + 738 + + + YES + + + + + + 739 + + + + + 847 + + + YES + + + + + + 848 + + + + + 492 + + + YES + + + + + + 507 + + + + + 843 + + + YES + + + + + + 844 + + + + + 490 + + + YES + + + + + + 509 + + + + + 741 + + + YES + + + + + + 742 + + + + + 780 + + + YES + + + + + + 781 + + + YES + + + + + + + 793 + + + YES + + + + + + + + 820 + + + YES + + + + + + + + 818 + + + YES + + + + + + 819 + + + + + 822 + + + + + 821 + + + + + 794 + + + YES + + + + + + 795 + + + + + 786 + + + YES + + + + + + 787 + + + + + 1004 + + + + + 828 + + + YES + + + + + + 829 + + + YES + + + + + + 1003 + + + YES + + + + + + + + + + 905 + + + YES + + + + + + 906 + + + YES + + + + + + + + + + 907 + + + YES + + + + + + 908 + + + + + 1002 + + + + + 911 + + + YES + + + + + + 912 + + + + + 914 + + + YES + + + + + + 915 + + + + + 918 + + + YES + + + + + + 919 + + + + + 284 + + + YES + + + + + + 285 + + + YES + + + + + + + + 1007 + + + + + 569 + + + YES + + + + + + + + 571 + + + YES + + + + + + 574 + + + + + 570 + + + YES + + + + + + 575 + + + + + 572 + + + YES + + + + + + 573 + + + + + 286 + + + YES + + + + + + + + + + + + + + + + + 855 + + + YES + + + + + + 856 + + + + + 588 + + + YES + + + + + + 589 + + + + + 302 + + + YES + + + + + + 313 + + + + + 776 + + + YES + + + + + + 777 + + + + + 372 + + + YES + + + + + + 373 + + + + + 292 + + + YES + + + + + + 323 + + + + + 294 + + + YES + + + + + + 321 + + + + + 293 + + + YES + + + + + + 322 + + + + + 300 + + + YES + + + + + + 315 + + + + + 301 + + + YES + + + + + + 314 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + + + 1111 + + + YES + + + + + + 1112 + + + YES + + + + + + 1115 + + + YES + + + + + + + + 1113 + + + YES + + + + + + + + + + + 1128 + + + YES + + + + + + 1129 + + + YES + + + + + + 1133 + + + YES + + + + + + 1132 + + + YES + + + + + + 1131 + + + YES + + + + + + 1130 + + + YES + + + + + + 1137 + + + + + 1136 + + + + + 1135 + + + + + 1134 + + + + + 1138 + + + + + 1139 + + + + + 1165 + + + YES + + + + + + + + + + + 1171 + + + YES + + + + + + 1170 + + + YES + + + + + + 1169 + + + YES + + + + + + 1168 + + + YES + + + + + + 1167 + + + YES + + + + + + 1166 + + + YES + + + + + + 1177 + + + + + 1176 + + + + + 1175 + + + + + 1174 + + + + + 1173 + + + + + 1172 + + + + + 1192 + + + YES + + + + + + 1193 + + + YES + + + + + + 1194 + + + + + 1195 + + + + + 1196 + + + YES + + + + + + 1197 + + + YES + + + + + + 1198 + + + + + 1199 + + + + + 1005 + + + YES + + + + + + 1200 + + + YES + + + + + + 1201 + + + + + 110 + + + YES + + + + + + 111 + + + + + 1212 + + + YES + + + + + + 1214 + + + + + 937 + + + YES + + + + + + 99 + + + YES + + + + + + + + + 103 + + + + + 102 + + + YES + + + + + + + + + + 101 + + + + + 100 + + + + + 158 + + + YES + + + + + + 104 + + + YES + + + + + + 128 + + + YES + + + + + + 105 + + + YES + + + + + + 106 + + + + + 129 + + + + + 107 + + + + + 160 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 563 + + + YES + + + + + + 562 + + + YES + + + + + + 590 + + + YES + + + + + + 591 + + + + + 567 + + + + + 566 + + + + + 568 + + + + + 1239 + + + YES + + + + + + 1240 + + + + + 1242 + + + YES + + + + + + 1243 + + + + + 1249 + + + YES + + + + + + 1250 + + + + + 1254 + + + YES + + + + + + + + + + 1276 + + + YES + + + + + + 1277 + + + + + 1273 + + + YES + + + + + + 1274 + + + + + 1279 + + + YES + + + + + + 1280 + + + + + 1291 + + + YES + + + + + + 1292 + + + + + 1304 + + + YES + + + + + + 1305 + + + + + 1309 + + + YES + + + + + 523 + + + YES + + + + + + + + + + + 529 + + + YES + + + + + + 555 + + + YES + + + + + + 527 + + + YES + + + + + + 554 + + + YES + + + + + + 528 + + + YES + + + + + + 553 + + + YES + + + + + + 558 + + + + + 531 + + + + + 557 + + + + + 532 + + + + + 556 + + + + + 530 + + + + + 830 + + + YES + + + + + + 831 + + + + + 1216 + + + YES + + + + + + 1217 + + + + + 1345 + + + YES + + + + + + 1346 + + + + + 1352 + + + + + 1424 + + + YES + + + + + + 1425 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 100.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 101.IBPluginDependency + 1010.IBPluginDependency + 102.CustomClassName + 102.IBPluginDependency + 103.IBPluginDependency + 104.IBPluginDependency + 105.IBPluginDependency + 106.CustomClassName + 106.IBPluginDependency + 107.CustomClassName + 107.IBPluginDependency + 110.IBAttributePlaceholdersKey + 110.IBPluginDependency + 111.IBPluginDependency + 1111.IBPluginDependency + 1112.IBAttributePlaceholdersKey + 1112.IBPluginDependency + 1113.CustomClassName + 1113.IBPluginDependency + 1115.IBPluginDependency + 112.IBPluginDependency + 1128.IBPluginDependency + 1129.IBAttributePlaceholdersKey + 1129.IBPluginDependency + 1130.IBPluginDependency + 1131.IBAttributePlaceholdersKey + 1131.IBPluginDependency + 1132.IBAttributePlaceholdersKey + 1132.IBPluginDependency + 1133.IBPluginDependency + 1134.IBAttributePlaceholdersKey + 1134.IBPluginDependency + 1135.IBPluginDependency + 1136.IBPluginDependency + 1137.IBPluginDependency + 1138.IBPluginDependency + 1139.IBAttributePlaceholdersKey + 1139.IBPluginDependency + 1165.CustomClassName + 1165.IBPluginDependency + 1166.IBAttributePlaceholdersKey + 1166.IBPluginDependency + 1167.IBAttributePlaceholdersKey + 1167.IBPluginDependency + 1168.IBAttributePlaceholdersKey + 1168.IBPluginDependency + 1169.IBAttributePlaceholdersKey + 1169.IBPluginDependency + 1170.IBAttributePlaceholdersKey + 1170.IBPluginDependency + 1171.IBAttributePlaceholdersKey + 1171.IBPluginDependency + 1172.IBAttributePlaceholdersKey + 1172.IBPluginDependency + 1173.IBPluginDependency + 1174.IBPluginDependency + 1175.IBPluginDependency + 1176.IBPluginDependency + 1177.IBPluginDependency + 1192.IBAttributePlaceholdersKey + 1192.IBPluginDependency + 1193.IBPluginDependency + 1194.IBComboBoxObjectValuesKey.objectValues + 1194.IBPluginDependency + 1195.IBPluginDependency + 1196.IBAttributePlaceholdersKey + 1196.IBPluginDependency + 1197.IBAttributePlaceholdersKey + 1197.IBPluginDependency + 1198.IBPluginDependency + 1199.IBPluginDependency + 12.IBPluginDependency + 12.IBWindowTemplateEditedContentRect + 1200.IBPluginDependency + 1201.IBComboBoxObjectValuesKey.objectValues + 1201.IBPluginDependency + 1212.IBPluginDependency + 1214.IBPluginDependency + 1216.IBPluginDependency + 1217.IBPluginDependency + 1239.IBAttributePlaceholdersKey + 1239.IBPluginDependency + 1240.IBPluginDependency + 1242.IBAttributePlaceholdersKey + 1242.IBPluginDependency + 1243.IBPluginDependency + 1249.IBPluginDependency + 1250.CustomClassName + 1250.IBPluginDependency + 1254.CustomClassName + 1254.IBPluginDependency + 1273.IBAttributePlaceholdersKey + 1273.IBPluginDependency + 1274.IBPluginDependency + 1276.IBAttributePlaceholdersKey + 1276.IBPluginDependency + 1277.IBPluginDependency + 1279.IBAttributePlaceholdersKey + 1279.IBPluginDependency + 128.IBPluginDependency + 1280.IBPluginDependency + 129.CustomClassName + 129.IBPluginDependency + 1291.IBAttributePlaceholdersKey + 1291.IBPluginDependency + 1292.IBPluginDependency + 1304.IBAttributePlaceholdersKey + 1304.IBPluginDependency + 1305.IBPluginDependency + 1309.CustomClassName + 1309.IBPluginDependency + 1345.IBPluginDependency + 1346.IBPluginDependency + 1352.IBPluginDependency + 136.IBPluginDependency + 1424.IBPluginDependency + 1425.IBPluginDependency + 158.IBPluginDependency + 160.IBPluginDependency + 172.IBAttributePlaceholdersKey + 172.IBPluginDependency + 173.IBPluginDependency + 174.IBPluginDependency + 186.IBAttributePlaceholdersKey + 186.IBPluginDependency + 187.IBPluginDependency + 189.IBAttributePlaceholdersKey + 189.IBPluginDependency + 190.IBPluginDependency + 284.IBPluginDependency + 285.IBPluginDependency + 286.CustomClassName + 286.IBPluginDependency + 292.IBAttributePlaceholdersKey + 292.IBPluginDependency + 293.IBAttributePlaceholdersKey + 293.IBPluginDependency + 294.IBAttributePlaceholdersKey + 294.IBPluginDependency + 300.IBAttributePlaceholdersKey + 300.IBPluginDependency + 301.IBAttributePlaceholdersKey + 301.IBPluginDependency + 302.IBAttributePlaceholdersKey + 302.IBPluginDependency + 313.IBPluginDependency + 314.IBPluginDependency + 315.IBPluginDependency + 321.IBPluginDependency + 322.IBPluginDependency + 323.IBPluginDependency + 372.IBAttributePlaceholdersKey + 372.IBPluginDependency + 373.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency + 450.IBAttributePlaceholdersKey + 450.IBPluginDependency + 452.IBAttributePlaceholdersKey + 452.IBPluginDependency + 453.IBPluginDependency + 455.IBPluginDependency + 456.CustomClassName + 456.IBPluginDependency + 456.IBUserGuides + 457.IBAttributePlaceholdersKey + 457.IBPluginDependency + 458.IBAttributePlaceholdersKey + 458.IBPluginDependency + 463.IBPluginDependency + 464.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency + 487.IBAttributePlaceholdersKey + 487.IBPluginDependency + 488.IBPluginDependency + 489.IBAttributePlaceholdersKey + 489.IBPluginDependency + 490.IBAttributePlaceholdersKey + 490.IBPluginDependency + 491.IBAttributePlaceholdersKey + 491.IBPluginDependency + 492.IBAttributePlaceholdersKey + 492.IBPluginDependency + 493.IBAttributePlaceholdersKey + 493.IBPluginDependency + 494.IBAttributePlaceholdersKey + 494.IBPluginDependency + 495.IBAttributePlaceholdersKey + 495.IBPluginDependency + 496.IBAttributePlaceholdersKey + 496.IBPluginDependency + 497.IBAttributePlaceholdersKey + 497.IBPluginDependency + 502.IBPluginDependency + 503.IBPluginDependency + 504.IBPluginDependency + 505.IBPluginDependency + 506.IBPluginDependency + 507.IBPluginDependency + 508.IBPluginDependency + 509.IBPluginDependency + 510.IBPluginDependency + 511.CustomClassName + 511.IBPluginDependency + 523.CustomClassName + 523.IBPluginDependency + 527.IBAttributePlaceholdersKey + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.CustomClassName + 536.IBPluginDependency + 537.CustomClassName + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBAttributePlaceholdersKey + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 560.CustomClassName + 560.IBPluginDependency + 561.IBAttributePlaceholdersKey + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.CustomClassName + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency + 6.IBPluginDependency + 6.IBViewIntegration.shadowBlurRadius + 6.IBViewIntegration.shadowColor + 6.IBViewIntegration.shadowOffsetHeight + 6.IBViewIntegration.shadowOffsetWidth + 738.IBAttributePlaceholdersKey + 738.IBPluginDependency + 739.IBPluginDependency + 741.IBAttributePlaceholdersKey + 741.IBPluginDependency + 742.IBPluginDependency + 764.IBAttributePlaceholdersKey + 764.IBPluginDependency + 765.IBPluginDependency + 768.IBAttributePlaceholdersKey + 768.IBPluginDependency + 769.IBPluginDependency + 776.IBAttributePlaceholdersKey + 776.IBPluginDependency + 777.IBPluginDependency + 780.IBPluginDependency + 781.IBPluginDependency + 786.IBAttributePlaceholdersKey + 786.IBPluginDependency + 787.IBPluginDependency + 788.IBPluginDependency + 793.CustomClassName + 793.IBPluginDependency + 794.IBPluginDependency + 795.IBPluginDependency + 818.IBPluginDependency + 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 830.IBPluginDependency + 831.IBPluginDependency + 834.IBPluginDependency + 839.IBPluginDependency + 840.IBComboBoxObjectValuesKey.objectValues + 840.IBPluginDependency + 843.IBPluginDependency + 844.IBComboBoxObjectValuesKey.objectValues + 844.IBPluginDependency + 847.IBPluginDependency + 848.IBComboBoxObjectValuesKey.objectValues + 848.IBPluginDependency + 851.IBPluginDependency + 852.IBComboBoxObjectValuesKey.objectValues + 852.IBPluginDependency + 855.IBPluginDependency + 856.IBComboBoxObjectValuesKey.objectValues + 856.IBPluginDependency + 859.IBAttributePlaceholdersKey + 859.IBPluginDependency + 860.IBPluginDependency + 863.IBPluginDependency + 864.IBComboBoxObjectValuesKey.objectValues + 864.IBPluginDependency + 867.IBPluginDependency + 868.IBComboBoxObjectValuesKey.objectValues + 868.IBPluginDependency + 869.IBAttributePlaceholdersKey + 869.IBPluginDependency + 870.IBPluginDependency + 872.IBPluginDependency + 873.IBComboBoxObjectValuesKey.objectValues + 873.IBPluginDependency + 893.IBPluginDependency + 897.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 914.IBPluginDependency + 915.IBPluginDependency + 918.IBPluginDependency + 919.IBPluginDependency + 920.IBPluginDependency + 920.IBViewIntegration.shadowBlurRadius + 920.IBViewIntegration.shadowColor + 920.IBViewIntegration.shadowOffsetHeight + 920.IBViewIntegration.shadowOffsetWidth + 921.IBPluginDependency + 937.CustomClassName + 937.IBPluginDependency + 947.IBPluginDependency + 947.IBViewIntegration.shadowBlurRadius + 947.IBViewIntegration.shadowColor + 947.IBViewIntegration.shadowOffsetHeight + 947.IBViewIntegration.shadowOffsetWidth + 948.IBPluginDependency + 948.IBShouldRemoveOnLegacySave + 949.IBPluginDependency + 949.IBShouldRemoveOnLegacySave + 950.IBPluginDependency + 952.IBPluginDependency + 953.CustomClassName + 953.IBPluginDependency + 961.IBPluginDependency + 99.IBAttributePlaceholdersKey + 99.IBPluginDependency + 995.IBPluginDependency + 996.IBPluginDependency + + + YES + 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 + CustomTableView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Shuts down the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0IHRoZSBib290IHBhcnRpdGlvbnMgaGQoeCx5KSB0byBoaWRlICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the boot partitions "hd(x,y) MyVolumeName " where 'x' is the disk number, 'y' the partition number and MyVolumeName is the alias you want to give to this partition. (i.e: useful for renaming System Reserved boot partition for Windows 7) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate ATI ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate Nvidia ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0 + 1 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Chameleon Extra folder location. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Folder location where the file 'cdboot' is located. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating your chameleon Extra folder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Creates a BootCD.iso file. When successfully run, a Chameleon Folder is created on your Desktop with that ISO to burn to a CD. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating the directory that contains the binary bootfile named 'cdboot'. It is needed for the image to build. Usaully in the sym/i386 subdirectory of your chameleon source distribution. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Put the sytem in Sleep mode + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in Single User Mode (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in verbose (text) mode, log info will be stored and accessible by the Console application (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Ignore Boot Configuration file (default: No). If set, then org.chameleon.Boot.plist will not be loaded during the boot, only defaults options will be set. + + + 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 + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + + 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 + + Use Wait to make the booter wait for a key press before it starts the mach kernel. Useful for debugging your boot configuration + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Show boot banner in GUI mode (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + ToolTip + + ToolTip + + Automatic device-properties generation for graphics cards (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the legacy (grey on white) apple logo (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable kernel debug mode flags (i.e 0x0144). + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + io 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 + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Skip the SSDT tables while relocating the ACPI tables (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI and UHCI fixes (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the UHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force using the sleepimage (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Scan the drive only where the booter got loaded from (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Prompts for enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force to boot in safe mode. Useful in certains situations (i.e: when one kexts hangs the system) + + + 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 + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Override the automatic pciroot detection, and manually inject a pciroot number at boot time + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable GUI at boot time. (Enabled by Default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets additional device properties like gfx card efi injection, network . + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + YES + 800x600x32 + 1024x768x32 + 1280x800x32 + 1280x1024x32 + 1440x900x32 + 1680x1050x32 + 1920x1080x32 + 1920x1200x32 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + X86_64 + i386 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 20 + 21 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 4 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 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 + + YES + 0x12A + 0x144 + 0x14E + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0x80 + 0xFFFFFFFF + + 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 + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Click on a partition to make it the default boot partition. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + + + + YES + + + + + 1427 + + + + YES + + AboutController + NSObject + + onAbout: + id + + + onAbout: + + onAbout: + id + + + + mAboutDlg + NSPanel + + + mAboutDlg + + mAboutDlg + NSPanel + + + + IBProjectSource + ./Classes/AboutController.h + + + + AdvancedSetupController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSButton + NSTextField + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + + mArch + NSButton + + + mArchText + NSComboBox + + + mBusRatio + NSButton + + + mBusRatioText + NSComboBox + + + mCPU + NSButton + + + mCPUText + NSComboBox + + + mDSDTDrop + NSButton + + + mDSDTFile + NSButton + + + mDSDTFileText + NSTextField + + + mDebug + NSButton + + + mDebugText + NSComboBox + + + mDeviceRd + NSButton + + + mDeviceRdText + NSTextField + + + mDisableKextsBlacklisting + NSButton + + + mForceWake + NSButton + + + mGenerateCStates + NSButton + + + mGeneratePStates + NSButton + + + mIO + NSButton + + + mIOText + NSComboBox + + + mKernel + NSButton + + + mKernelText + NSTextField + + + mRestartFix + NSButton + + + mSMBIOSDefaults + NSButton + + + mSMBIOSFile + NSButton + + + mSMBIOSFileText + NSTextField + + + mSystemId + NSButton + + + mSystemIdText + NSTextField + + + mSystemType + NSButton + + + mSystemTypeText + NSComboBox + + + mWake + NSButton + + + mWakeImage + NSButton + + + mWakeImageText + NSTextField + + + + + IBProjectSource + ./Classes/AdvancedSetupController.h + + + + BootFlagsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + + mIgnoreBootConfig + NSButton + + + mInstantMenu + NSButton + + + mQuietBoot + NSButton + + + mRescan + NSButton + + + mRescanPrompt + NSButton + + + mRescanSingleDrive + NSButton + + + mSafeBoot + NSButton + + + mSingleUser + NSButton + + + mTheme + NSButton + + + mThemeText + NSComboBox + + + mTimeOut + NSButton + + + mTimeOutText + NSTextField + + + mUseGUI + NSButton + + + mVerbose + NSButton + + + mWait + NSButton + + + + + IBProjectSource + ./Classes/BootFlagsController.h + + + + BootSetupController + PreferencesControllerBase + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + id + NSButton + id + id + id + NSTextField + + + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + + onCdBootConfigPath: + id + + + onCheckButtonChange: + NSButton + + + onCreateBootCD: + id + + + onExtraConfigPath: + id + + + onForceBootConfigPath: + id + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + + mBootCdbootPath + NSButton + + + mBootCdbootPathText + NSTextField + + + mBootConfigPath + NSButton + + + mBootConfigPathText + NSTextField + + + mBootExtraPath + NSButton + + + mBootExtraPathText + NSTextField + + + mDefaultPartition + NSButton + + + mDefaultPartitionText + NSTextField + + + mFreezeParts + NSButton + + + mHidePartition + NSButton + + + mHidePartitionText + NSTextField + + + mInjectFrozenParts + NSButton + + + mRenamePartition + NSButton + + + mRenamePartitionText + NSTextField + + + mSwapHD01 + NSButton + + + mSwapHD02 + NSButton + + + + + IBProjectSource + ./Classes/BootSetupController.h + + + + CenteredTextFieldCell + NSTextFieldCell + + IBProjectSource + ./Classes/CenteredTextFieldCell.h + + + + ChameleonPrefPane + NSPreferencePane + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + id + id + id + + + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + + onRestart: + id + + + onShutdown: + id + + + onSleep: + id + + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + SFAuthorizationView + NSColorWell + NSColorWell + RoundedBox + RoundedBox + NSColorWell + NSColorWell + NSBox + NSButton + NSButton + NSButton + NSTextField + NSView + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + + authView + SFAuthorizationView + + + backgroundColorWell + NSColorWell + + + borderColorWell + NSColorWell + + + box + RoundedBox + + + footer + RoundedBox + + + gradientEndColorWell + NSColorWell + + + gradientStartColorWell + NSColorWell + + + mOptions + NSBox + + + mRestartButton + NSButton + + + mShutDownButton + NSButton + + + mSleepButton + NSButton + + + mStatusText + NSTextField + + + mainView + NSView + + + + + IBProjectSource + ./Classes/ChameleonPrefPane.h + + + + CustomTableView + NSTableView + + IBProjectSource + ./Classes/CustomTableView.h + + + + EfiInjectController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + NSButton + NSButton + NSTextField + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + + mCurrentGfxInjection + NSButton + + + mEfiInject + NSButton + + + mEfiInjectText + NSTextField + + + + + IBProjectSource + ./Classes/EfiInjectController.h + + + + NSPreferencePane + NSObject + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + NSView + NSView + NSView + NSWindow + + + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + + IBProjectSource + ./Classes/NSPreferencePane.h + + + + PeripheralsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + + mAtiVideoROM + NSButton + + + mBootBanner + NSButton + + + mEHCIacquire + NSButton + + + mEthernetBuiltIn + NSButton + + + mForceHPET + NSButton + + + mGraphicsEnabler + NSButton + + + mGraphicsMode + NSButton + + + mGraphicsModeText + NSComboBox + + + mLegacyLogo + NSButton + + + mNvidiaVideoROM + NSButton + + + mPciRoot + NSButton + + + mPciRootText + NSTextField + + + mUHCIreset + NSButton + + + mUSBBusFix + NSButton + + + mVBIOS + NSButton + + + + + IBProjectSource + ./Classes/PeripheralsController.h + + + + PreferencesControllerBase + NSObject + + IBProjectSource + ./Classes/PreferencesControllerBase.h + + + + RoundedBox + NSBox + + IBProjectSource + ./Classes/RoundedBox.h + + + + SFAuthorizationView + NSView + + IBProjectSource + ./Classes/SFAuthorizationView.h + + + + SmbiosController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + NSButton + NSButton + NSButton + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + + mAppleSmbios + NSButton + + + mEditSmbios + NSButton + + + mExtractACPITables + NSButton + + + + + IBProjectSource + ./Classes/SmbiosController.h + + + + TableViewsController + NSObject + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + CustomTableView + NSTabViewItem + NSTabViewItem + NSTabView + NSTableView + + + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + + mAbout + NSTabViewItem + + + mAdvanced + NSTabViewItem + + + mBootFlags + NSTabViewItem + + + mBootFrom + NSTabViewItem + + + mBootSetup + NSTabViewItem + + + mEfiInject + NSTabViewItem + + + mFileSystemColumn + NSTableColumn + + + mHideOrViewColumn + NSTableColumn + + + mMenuIcon + NSTableColumn + + + mMenuName + NSTableColumn + + + mPartitionIDColumn + NSTableColumn + + + mPartitionImgColumn + NSTableColumn + + + mPartitionNameColumn + NSTableColumn + + + mPartitionUIDColumn + NSTableColumn + + + mPartitionsTable + CustomTableView + + + mPeripherals + NSTabViewItem + + + mSmbios + NSTabViewItem + + + mTabViewPanes + NSTabView + + + mTabViewPanesSelect + NSTableView + + + + + IBProjectSource + ./Classes/TableViewsController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + YES + + YES + NSSwitch + background + cham + footer + name + + + YES + {15, 15} + {130, 1} + {344, 378} + {1, 34} + {262, 45} + + + + Index: branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Chameleon.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Chameleon.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Localizable.strings =================================================================== --- branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Localizable.strings (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Localizable.strings (revision 396) @@ -0,0 +1,23 @@ +/* comment */ +"About" = "Info"; + +/* comment */ +"Advanced" = "avanzada"; + +/* comment */ +"SMBIOS" = "BIOS"; + +/* comment */ +"Boot_Flags" = "Banderas de Boot"; + +/* comment */ +"Boot_From" = "Boot De"; + +/* comment */ +"Boot_Setup" = "Inicio de instalación"; + +/* comment */ +"Efi_Inject" = "EFI Inyectar"; + +/* comment */ +"Peripherals" = "Periférico"; Index: branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Chameleon.xib =================================================================== --- branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Chameleon.xib (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Spanish.lproj/Chameleon.xib (revision 396) @@ -0,0 +1,11295 @@ + + + + 1050 + 11C74 + 1938 + 1138.23 + 567.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1938 + + + YES + NSButton + NSCustomObject + NSImageView + NSImageCell + NSTableView + NSCustomView + NSComboBox + NSComboBoxCell + NSTextField + NSViewController + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSTableColumn + NSBox + NSView + NSScrollView + NSTabViewItem + NSUserDefaultsController + NSScroller + NSTabView + NSTableHeaderView + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSPreferencePane + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{176, 644}, {668, 439}} + 1081606144 + << do not localize >> + NSWindow + + View + + + {224.66399999999999, 10} + + + 256 + + YES + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{0, 31}, {126, 408}} + + YES + + YES + + 2 + YES + + 130560 + 33554432 + + NSImage + background + + 0 + 1 + 0 + YES + + YES + + + + 4352 + + YES + + + 2304 + + YES + + + 4352 + {126, 410} + + 2 + YES + + + 256 + {{-26, 0}, {16, 17}} + + + YES + + 31 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + Icon + + LucidaGrande + 11 + 3100 + + + 6 + System + headerColor + + 3 + MQA + + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 67239424 + 33554432 + + LucidaGrande + 13 + 1044 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 89 + 10 + 1000 + + 75628096 + 2048 + Menu Name + + + + + + 1140981312 + 2048 + Text Cell + + LucidaGrande + 11 + 16 + + + + 4 + MSAwAA + + + 6 + System + controlTextColor + + + + 3 + YES + YES + + + + 3 + 2 + + 1 + MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTggMAA + + + 4 + MC44IDAAA + + 36 + 37781504 + + + 1 + 15 + 0 + YES + 1 + 1 + 1 + + + {126, 410} + + + 2 + + + 4 + MSAwAA + + 4 + + + + -2147483392 + {{-100, -100}, {15, 441}} + + + _doScroller: + 0.19473683834075928 + + + + -2147483392 + {{-100, -100}, {141, 15}} + + 1 + + _doScroller: + 0.99047619104385376 + + + {{0, 29}, {126, 410}} + + + YES + + YES + + 2 + 133120 + + + + QSAAAEEgAABCGAAAQhgAAA + + + + 268 + {{127, 31}, {541, 408}} + + YES + + subviews + + fromTop + fade + + YES + subtype + type + + + + 2 + + YES + + Item 1 + + + 292 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 8448 + {499, 257} + + 2 + YES + + + 256 + {499, 17} + + 2 + + + + + -2147483392 + {{457, 0}, {16, 17}} + 2 + + + YES + + 32 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + OS + + + + + + 67239424 + 33554432 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 157.640625 + 40 + 1000 + + 75628096 + 67110912 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772097 + 67110912 + Text Cell + + LucidaGrande-Bold + 14 + 16 + + + 1 + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + + YES + sr_Latn_RS + zh + ro_RO + be_BY + si_LK + fa_IR + en_BW + en_JM + ka_GE + zh_Hans_SG + mk_MK + en_HK + ar_LB + ii_CN + ru_UA + zh_Hant_HK + af + kl_GL + az_Latn + ar_SA + en_BE + bn_BD + en_MH + be + nl_NL + el_CY + az_Cyrl_AZ + ca + sr_Latn + om_ET + es_CL + bg + en_VI + es_VE + uz_Cyrl_UZ + fr_MC + am + zh_Hant + uz_Arab + en_GB + da + mr_IN + es_MX + es_PR + sq_AL + ar + fi_FI + bn + en_NA + de + as + cy_GB + en_IE + en_BZ + de_CH + en_US + sr_Latn_BA + te_IN + ar_QA + ar_TN + zh_Hans_MO + de_LI + fa + kw_GB + cs_CZ + hu_HU + zh_Hant_TW + uz_Latn + ta_IN + az + ar_EG + ar_SD + cs + ga + ar_LY + af_ZA + el + es_PA + es_CO + fi + en + ha + eo + gl_ES + cy + es_GT + ms_BN + ne_IN + he_IL + he + es + fo + en_CA + et + hr_HR + haw + gl + ar_SY + fr_SN + eu + uz_Arab_AF + id + fr + az_Latn_AZ + hi + zh_Hans_HK + ja + es_ES + ar_AE + uz_Latn_UZ + ca_ES + fr_BE + hi_IN + is_IS + ii + ps_AF + ka + tr_TR + it_CH + kk_Cyrl_KZ + gu + es_US + gv + en_PH + es_HN + hr + sv_FI + es_CR + haw_US + ar_MA + hu + nl_BE + th_TH + en_ZA + kk_Cyrl + is + it + es_PE + hy + de_DE + en_NZ + kk + kl + en_AU + pa_Guru + el_GR + km + kn + ko + nb + ar_IQ + es_PY + es_EC + en_US_POSIX + vi_VN + lv_LV + ne + kn_IN + es_AR + mk + ml + bg_BG + hy_AM_REVISED + kw + uk_UA + en_PK + pa + lt + sk_SK + nl + ur_PK + de_BE + lv + as_IN + mr + nn + en_ZW + fr_CA + ne_NP + ms + pl_PL + ti_ER + ja_JP + mt + fr_LU + om + sr_Cyrl_ME + en_IN + ga_IE + sw_KE + pl + kok + ur_IN + or + it_IT + hy_AM + ml_IN + en_SG + es_SV + am_ET + pt_BR + bn_IN + mt_MT + ar_KW + es_DO + pa_Arab + gv_GB + so_KE + ti_ET + ps + ms_MY + sl_SI + es_UY + en_MT + pt + sw_TZ + ta + nn_NO + sr_Cyrl_RS + si + te + ro + so_SO + sk + az_Cyrl + or_IN + sl + pa_Arab_PK + ru_RU + th + ar_DZ + ti + so + sr_Cyrl + es_NI + ha_Latn_NG + ru + en_TT + sq + fr_FR + sr + da_DK + es_BO + nb_NO + de_LU + uk + eu_ES + ar_JO + sv + so_ET + tr + sw + vi + zh_Hans_CN + km_KH + fa_AF + et_EE + ko_KR + pa_Guru_IN + sr_Latn_ME + so_DJ + ur + kok_IN + uz_Cyrl + zh_Hant_MO + zh_Hans + ar_YE + fo_FO + sv_SE + ha_Latn + de_AT + lt_LT + ar_OM + sr_Cyrl_BA + uz + ar_BH + id_ID + pt_PT + af_NA + om_KE + fr_CH + gu_IN + + + 3 + YES + YES + + + + 46.90234375 + 10 + 3.4028229999999999e+38 + + 75628096 + 134219776 + HD + + + + + + 69336641 + 134350848 + Text Cell + + + YES + 1 + + + + 3 + YES + + Name Displayed on the bootable partion during Chameleon boot + + + 207.3359375 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + UUID + + + + + + 67239488 + 264192 + Text Cell + + LucidaGrande + 9 + 3614 + + + + + + 3 + YES + YES + + + + 40 + 40 + 1000 + + 75628096 + 2048 + FS + + + + + + 69336641 + 133120 + Text Cell + + + YES + 1 + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 32 + -689963008 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {494, 257}} + + + 2 + + + 4 + + + + -2147483392 + {{457, 17}, {15, 227}} + + + _doScroller: + 0.94163424124513617 + + + + 256 + {{1, 259}, {494, 15}} + + YES + 1 + + _doScroller: + 0.98997995991983967 + + + + 2304 + + YES + + + {{1, 0}, {494, 17}} + + + 2 + + + 4 + + + {{6, 9}, {496, 275}} + + + 2 + 133810 + + + + + QSAAAEEgAABCCAAAQggAAA + + + {{1, 1}, {509, 294}} + + 2 + + + {{44, 217}, {511, 310}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Partition + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -140}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + 3 + MCAwAA + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{367, 8}, {158, 25}} + + 2 + YES + + 67239424 + 134217728 + Restart + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{112, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Shutdown + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{12, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Sleep + + + -2038284033 + 163 + + + 200 + 25 + + + + {541, 408} + + 2 + + Startup Disk + + 6 + System + controlColor + + + + + + Item 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 80}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Default Partition + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 12 + {{174, 79}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Hide Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 49}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 12 + {{16, 17}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Rename Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 19}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + {{1, 1}, {509, 114}} + + + 2 + + + {{44, 397}, {511, 130}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Partitions Management + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 94}, {267, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->1 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{305, 94}, {188, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->2 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 63}, {285, 18}} + + + 2 + YES + + 67239424 + 0 + Use Freezed Parts List + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 30}, {158, 18}} + + + 2 + YES + + 67239424 + 0 + Boot Config Path + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 31}, {323, 19}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{307, 64}, {190, 18}} + + + 2 + YES + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {509, 128}} + + + 2 + + + {{44, 240}, {511, 144}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Boot Selector Fixes + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{102, 37}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{102, 14}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{12, 39}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + Extra folder + + + -2034876161 + 193 + + LucidaGrande + 9 + 16 + + + + 200 + 25 + + + + + 268 + {{399, 27}, {100, 18}} + + + 2 + YES + + 67239424 + 134348800 + Create ISO + + + -2033434369 + 163 + + + 200 + 25 + + + + + 12 + {{12, 16}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + cdboot folder + + + -2034876161 + 193 + + + + 200 + 25 + + + + {{1, 1}, {509, 64}} + + + 2 + + + {{44, 148}, {511, 80}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Rescue Boot CD Creator + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-32, -140}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + Boot Setup + + + + + Item 3 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 102}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Verbose (-v) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 102}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Ignore Boot Config (-F) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 71}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Single User (-s) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 71}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Time Out + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 42}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Quiet Boot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 42}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Instant Menu + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 42}, {170, 23}} + + 2 + YES + + 67239424 + 0 + Wait + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{164, 107}, {161, 18}} + + 2 + YES + + 67239424 + 0 + Safe Boot (-x) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 12}, {164, 23}} + + 2 + YES + + 67239424 + 0 + Use GUI + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 70}, {46, 26}} + + 2 + 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 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 12 + {{16, 12}, {144, 23}} + + 2 + YES + + -2080244224 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 9}, {134, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 105} + + + 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, 1}, {509, 144}} + + 2 + + + {{13, 228}, {511, 160}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Flags + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{16, 13}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Rescan + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 13}, {174, 23}} + + 2 + YES + + 67239424 + 0 + Scan Single Drive + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 13}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Rescan Prompt + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 52}} + + 2 + + + {{13, 146}, {511, 68}} + + 2 + {0, 0} + + 67239424 + 0 + CDROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Boot Flags + + + + + Item 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{155, 17}, {208, 23}} + + 2 + YES + + 67239424 + 0 + Boot Banner + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 86}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Mode + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 86}, {134, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Enabler + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 51}, {134, 23}} + + 2 + YES + + 67239424 + 0 + VBIOS + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 17}, {141, 23}} + + 2 + YES + + 67239424 + 0 + Legacy Logo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{157, 83}, {181, 26}} + + 2 + 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 + + + + + + 268 + {{16, 53}, {141, 18}} + + 2 + YES + + 67239424 + 0 + Use Ati ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{155, 53}, {202, 18}} + + 2 + YES + + 67239424 + 0 + Use Nvidia ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 121}} + + 2 + + + {{13, 251}, {511, 137}} + + 2 + {0, 0} + + 67239424 + 0 + Graphics + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{361, 12}, {143, 23}} + + 2 + YES + + 67239424 + 0 + UHCI reset + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 12}, {173, 23}} + + 2 + YES + + 67239424 + 0 + USB Bus Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 12}, {169, 23}} + + 2 + YES + + 67239424 + 0 + EHCI acquire + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 44}} + + 2 + + + {{13, 177}, {511, 60}} + + 2 + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Ethernet Built-In + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 10}, {69, 23}} + + 2 + YES + + 67239424 + 0 + PciRoot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 12}, {138, 23}} + + 2 + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{268, 10}, {51, 26}} + + 2 + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + + YES + 0 + 1 + + + + + 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 + 1 + + + + + {{1, 1}, {509, 43}} + + 2 + + + {{13, 104}, {511, 59}} + + 2 + {0, 0} + + 67239424 + 0 + Ethernet + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Peripherals + + + + + Item 5 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 36 + + YES + + + 274 + + YES + + + 268 + {{161, 47}, {205, 23}} + + 2 + YES + + 67239424 + 0 + Force Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 19}, {146, 23}} + + 2 + YES + + 67239424 + 0 + Wake Image + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{163, 18}, {201, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 52}, {146, 18}} + + 2 + YES + + 67239424 + 0 + Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 78}} + + 2 + + + {{45, 116}, {511, 94}} + + 2 + {0, 0} + + 67239424 + 0 + Wake + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -106}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{277, 217}, {50, 23}} + + 2 + YES + + 67239424 + 0 + rd + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 112}, {102, 18}} + + 2 + YES + + 67239424 + 0 + SystemType + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{385, 107}, {59, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + + + + 274 + {13, 126} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{277, 179}, {81, 23}} + + 2 + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 217}, {63, 23}} + + 2 + YES + + 67239424 + 0 + Kernel + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{322, 219}, {159, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + + YES + + + + + + + 268 + {{277, 145}, {75, 23}} + + 2 + YES + + 67239424 + 0 + io + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 219}, {164, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 148}, {80, 18}} + + 2 + YES + + 67239424 + 0 + cpus + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 111}, {90, 23}} + + 2 + YES + + 67239424 + 0 + busratio + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 76}, {90, 18}} + + 2 + YES + + 67239424 + 0 + SystemId + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 181}, {90, 23}} + + 2 + YES + + 67239424 + 0 + arch + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 41}, {226, 18}} + + 2 + YES + + 67239424 + 0 + Disable kext blacklist + + LucidaGrande + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 75}, {339, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 41}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{102, 179}, {76, 26}} + + 2 + 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 + 1 + + + + + + 268 + {{102, 109}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{102, 142}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{358, 178}, {86, 23}} + + 2 + YES + + 343014976 + 272630784 + + + LucidaGrande + 10 + 16 + + + 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 + 1 + + + + + + 268 + {{358, 143}, {86, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF + + + + + 274 + {13, 34} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{16, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate P-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate C-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 250}} + + 2 + + + {{13, 122}, {511, 266}} + + 2 + {0, 0} + + 67239424 + 0 + Kernel + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Advanced + + + + + Item 6 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 311}, {244, 18}} + + 2 + YES + + 67239424 + 0 + Device Properties + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{327, 309}, {170, 25}} + + 2 + YES + + -2080244224 + 134217728 + Current GFX Injection + + + -2038152961 + 163 + + + 400 + 75 + + + + + 12 + + YES + + + 2304 + + YES + + + 268 + {{0, 91}, {536, 506}} + + 2 + YES + + -1809711615 + 272629760 + + + + YES + + + + + + {{1, 1}, {462, 264}} + {{0, 333}, {462, 264}} + + + 2 + + + 4 + + + + 256 + {{463, 1}, {15, 264}} + + 2 + YES + + _doScroller: + 1 + 0.52173913043478259 + + + + -2147483392 + {{-100, -100}, {536, 15}} + + 2 + YES + 1 + + _doScroller: + 0.50602412223815918 + + + {{18, 22}, {479, 266}} + + + 2 + 133842 + + + + + + {{1, 1}, {509, 348}} + + 2 + + + {{13, 24}, {511, 364}} + + 2 + {0, 0} + + 67239424 + 0 + EFI injection + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + EFI Inject + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {509, 234}} + + 2 + + + {{44, 179}, {511, 250}} + + + 2 + {0, 0} + + 67239424 + 0 + IORegistry + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 54}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + DSDT file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{370, 52}, {148, 22}} + + + 2 + YES + + 67239424 + 0 + Drop + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{139, 53}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{139, 14}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{370, 12}, {161, 23}} + + + 2 + YES + + 67239424 + 0 + Defaults + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 15}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + SMBIOS file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 87}} + + + 2 + + + {{44, 433}, {511, 103}} + + + 2 + {0, 0} + + 67239424 + 0 + DSDT & SMBIOS + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{384, 151}, {168, 25}} + + + 2 + YES + + 67239424 + 134217728 + Open smbios.plist + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{209, 151}, {168, 25}} + + 2 + YES + + 67239424 + 134217728 + Extract SMBIOS + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{47, 151}, {154, 25}} + + + 2 + YES + + -2080244224 + 134217728 + Extract ACPI + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-34, -141}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + SMBIOS + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{18, -1}, {513, 261}} + + 2 + YES + + -2080244224 + 138412032 + + + + YES + + 1 + MCAwIDAgMAA + + + 1 + MCAwIDAgMC45AA + + + + + + 268 + {{186, 338}, {172, 17}} + + 2 + YES + + 68288064 + 138413056 + Version bla bla. + + LucidaGrande-Bold + 13 + 16 + + + + + 1 + MCAwIDAgMC45AA + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{223, 243}, {100, 100}} + + 2 + YES + + 130560 + 33554432 + + NSImage + cham + + 0 + 0 + 0 + YES + + YES + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{141, 358}, {262, 45}} + + 2 + YES + + 130560 + 33554432 + + NSImage + name + + 0 + 0 + 0 + YES + + YES + + + {541, 408} + 2 + + About + + + + + + + 268435462 + YES + YES + + YES + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {675, 34} + + 2 + YES + + 130560 + 33554432 + + NSImage + footer + + 0 + 1 + 0 + YES + + YES + + + + 268 + {{0, 2}, {227.58203125, 30}} + + YES + 2 + SFAuthorizationView + + + + 268 + {{232, 8}, {419, 17}} + + 2 + _NS:4068 + YES + + 68288064 + 71304192 + + + _NS:4068 + + + + + + + {668, 439} + YES + 2 + + {{0, 0}, {1920, 1178}} + {224.66399999999999, 32} + {10000000000000, 10000000000000} + YES + + + AboutController + + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + + + EfiInjectController + + + SmbiosController + + + YES + + + TableViewsController + + + + + + YES + + + _window + + + + 26 + + + + delegate + + + + 972 + + + + dataSource + + + + 973 + + + + authView + + + + 137 + + + + onRestart: + + + + 188 + + + + mSleepButton + + + + 192 + + + + mShutDownButton + + + + 193 + + + + mRestartButton + + + + 194 + + + + onSleep: + + + + 195 + + + + onShutdown: + + + + 197 + + + + box + + + + 991 + + + + mStatusText + + + + 1351 + + + + onTextFiedChange: + + + + 1141 + + + + onCheckButtonChange: + + + + 1143 + + + + onCheckButtonChange: + + + + 1145 + + + + onTextFiedChange: + + + + 1148 + + + + onCheckButtonChange: + + + + 1150 + + + + onTextFiedChange: + + + + 1151 + + + + mDefaultPartition + + + + 1153 + + + + mHidePartition + + + + 1154 + + + + mRenamePartition + + + + 1155 + + + + mDefaultPartitionText + + + + 1156 + + + + mHidePartitionText + + + + 1157 + + + + mRenamePartitionText + + + + 1158 + + + + onCheckButtonChange: + + + + 1178 + + + + onTextFiedChange: + + + + 1179 + + + + onCheckButtonChange: + + + + 1180 + + + + onCheckButtonChange: + + + + 1181 + + + + onCheckButtonChange: + + + + 1182 + + + + onCheckButtonChange: + + + + 1183 + + + + mBootConfigPathText + + + + 1185 + + + + mSwapHD01 + + + + 1186 + + + + mSwapHD02 + + + + 1187 + + + + mBootConfigPath + + + + 1189 + + + + mFreezeParts + + + + 1190 + + + + mInjectFrozenParts + + + + 1191 + + + + onTextFiedChange: + + + + 1294 + + + + onTextFiedChange: + + + + 1295 + + + + mBootExtraPath + + + + 1298 + + + + mBootExtraPathText + + + + 1300 + + + + mBootCdbootPathText + + + + 1301 + + + + onCreateBootCD: + + + + 1302 + + + + onExtraConfigPath: + + + + 1303 + + + + onCdBootConfigPath: + + + + 1307 + + + + mBootCdbootPath + + + + 1308 + + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + onCheckButtonChange: + + + + 671 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 723 + + + + onCheckButtonChange: + + + + 725 + + + + onCheckButtonChange: + + + + 726 + + + + onCheckButtonChange: + + + + 727 + + + + onCheckButtonChange: + + + + 728 + + + + onCheckButtonChange: + + + + 729 + + + + onCheckButtonChange: + + + + 730 + + + + onCheckButtonChange: + + + + 731 + + + + onCheckButtonChange: + + + + 732 + + + + onCheckButtonChange: + + + + 778 + + + + mUseGUI + + + + 779 + + + + mTimeOutText + + + + 857 + + + + onTextFiedChange: + + + + 858 + + + + onCheckButtonChange: + + + + 871 + + + + onTextFiedChange: + + + + 874 + + + + mThemeText + + + + 875 + + + + mTheme + + + + 876 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 716 + + + + onCheckButtonChange: + + + + 717 + + + + onCheckButtonChange: + + + + 718 + + + + onCheckButtonChange: + + + + 719 + + + + onCheckButtonChange: + + + + 720 + + + + onCheckButtonChange: + + + + 721 + + + + onCheckButtonChange: + + + + 722 + + + + onCheckButtonChange: + + + + 770 + + + + mPciRoot + + + + 774 + + + + mGraphicsModeText + + + + 841 + + + + onTextFiedChange: + + + + 842 + + + + onCheckButtonChange: + + + + 861 + + + + mForceHPET + + + + 862 + + + + mPciRootText + + + + 1202 + + + + onTextFiedChange: + + + + 1203 + + + + onCheckButtonChange: + + + + 1204 + + + + mAtiVideoROM + + + + 1205 + + + + onCheckButtonChange: + + + + 1206 + + + + mNvidiaVideoROM + + + + 1207 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mCPU + + + + 650 + + + + mBusRatio + + + + 652 + + + + mDebug + + + + 654 + + + + mIO + + + + 656 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + + + + onCheckButtonChange: + + + + 699 + + + + onCheckButtonChange: + + + + 700 + + + + onCheckButtonChange: + + + + 701 + + + + onCheckButtonChange: + + + + 702 + + + + onCheckButtonChange: + + + + 703 + + + + onCheckButtonChange: + + + + 704 + + + + onCheckButtonChange: + + + + 705 + + + + onCheckButtonChange: + + + + 706 + + + + onCheckButtonChange: + + + + 707 + + + + onCheckButtonChange: + + + + 708 + + + + onCheckButtonChange: + + + + 709 + + + + onTextFiedChange: + + + + 710 + + + + onCheckButtonChange: + + + + 744 + + + + mSystemId + + + + 748 + + + + mSystemIdText + + + + 749 + + + + onTextFiedChange: + + + + 750 + + + + onCheckButtonChange: + + + + 766 + + + + mRestartFix + + + + 767 + + + + mArchText + + + + 845 + + + + onTextFiedChange: + + + + 846 + + + + mBusRatioText + + + + 849 + + + + onTextFiedChange: + + + + 850 + + + + mCPUText + + + + 853 + + + + onTextFiedChange: + + + + 854 + + + + mDebugText + + + + 865 + + + + onTextFiedChange: + + + + 866 + + + + mIOText + + + + 877 + + + + onTextFiedChange: + + + + 878 + + + + mSystemType + + + + 1208 + + + + onCheckButtonChange: + + + + 1209 + + + + mSystemTypeText + + + + 1210 + + + + onTextFiedChange: + + + + 1211 + + + + onCheckButtonChange: + + + + 1241 + + + + onCheckButtonChange: + + + + 1244 + + + + mGenerateCStates + + + + 1245 + + + + mGeneratePStates + + + + 1246 + + + + mEfiInject + + + + 789 + + + + onCheckButtonChange: + + + + 792 + + + + mCurrentGfxInjection + + + + 796 + + + + onCheckButtonChange: + + + + 797 + + + + mEfiInjectText + + + + 824 + + + + onTextFiedChange: + + + + 825 + + + + mEditSmbios + + + + 835 + + + + onCheckButtonChange: + + + + 836 + + + + onCheckButtonChange: + + + + 1218 + + + + mExtractACPITables + + + + 1219 + + + + onCheckButtonChange: + + + + 1426 + + + + mAppleSmbios + + + + 1427 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 910 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 909 + + + + value: bundleVersionNumber + + + + + + value: bundleVersionNumber + value + bundleVersionNumber + 2 + + + 913 + + + + delegate + + + + 971 + + + + dataSource + + + + 974 + + + + mMenuName + + + + 970 + + + + mPartitionImgColumn + + + + 975 + + + + mPartitionNameColumn + + + + 976 + + + + mPartitionIDColumn + + + + 977 + + + + mFileSystemColumn + + + + 978 + + + + mPartitionsTable + + + + 980 + + + + mBootFrom + + + + 981 + + + + mBootFlags + + + + 983 + + + + mPeripherals + + + + 984 + + + + mAdvanced + + + + 985 + + + + mEfiInject + + + + 986 + + + + mSmbios + + + + 987 + + + + mAbout + + + + 988 + + + + mTabViewPanes + + + + 989 + + + + mTabViewPanesSelect + + + + 994 + + + + mBootSetup + + + + 1152 + + + + mMenuIcon + + + + 1215 + + + + mPartitionUIDColumn + + + + 1252 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 12 + + + YES + + + + PrefPane + + + 6 + + + YES + + + + + + + + + + + -3 + + + Application + + + 112 + + + ChameleonPrefPane + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 788 + + + + + 834 + + + + + 893 + + + + + 897 + + + + + 947 + + + YES + + + + + + + + 948 + + + + + 949 + + + + + 950 + + + YES + + + + + + + 952 + + + YES + + + + + + 953 + + + + + 961 + + + + + 172 + + + YES + + + + + + + + + + + + + 920 + + + YES + + + + + + 921 + + + + + 995 + + + YES + + + + + + 996 + + + + + 136 + + + YES + + + + + 173 + + + YES + + + + + + 174 + + + YES + + + + + + + + + 1010 + + + YES + + + + + + 186 + + + YES + + + + + + 187 + + + + + 189 + + + YES + + + + + + 190 + + + + + 441 + + + YES + + + + + + 442 + + + YES + + + + + + + + + 1006 + + + + + 536 + + + YES + + + + + + + + 541 + + + YES + + + + + + 544 + + + + + 542 + + + YES + + + + + + 543 + + + + + 540 + + + YES + + + + + + 545 + + + + + 537 + + + YES + + + + + + + + + 538 + + + YES + + + + + + 539 + + + + + 859 + + + YES + + + + + + 860 + + + + + 768 + + + YES + + + + + + 769 + + + + + 456 + + + YES + + + + + + + + + + + + + 457 + + + YES + + + + + + 464 + + + + + 458 + + + YES + + + + + + 463 + + + + + 450 + + + YES + + + + + + 455 + + + + + 487 + + + YES + + + + + + 488 + + + + + 452 + + + YES + + + + + + 453 + + + + + 839 + + + YES + + + + + + 840 + + + + + 478 + + + YES + + + + + + 479 + + + YES + + + + + + + 511 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + + + 493 + + + YES + + + + + + 506 + + + + + 491 + + + YES + + + + + + 508 + + + + + 496 + + + YES + + + + + + 503 + + + + + 497 + + + YES + + + + + + 502 + + + + + 863 + + + YES + + + + + + 864 + + + + + 489 + + + YES + + + + + + 510 + + + + + 494 + + + YES + + + + + + 505 + + + + + 495 + + + YES + + + + + + 504 + + + + + 867 + + + YES + + + + + + 868 + + + + + 851 + + + YES + + + + + + 852 + + + + + 764 + + + YES + + + + + + 765 + + + + + 586 + + + YES + + + + + + 587 + + + + + 738 + + + YES + + + + + + 739 + + + + + 847 + + + YES + + + + + + 848 + + + + + 492 + + + YES + + + + + + 507 + + + + + 843 + + + YES + + + + + + 844 + + + + + 490 + + + YES + + + + + + 509 + + + + + 741 + + + YES + + + + + + 742 + + + + + 780 + + + YES + + + + + + 781 + + + YES + + + + + + + 793 + + + YES + + + + + + + + 820 + + + YES + + + + + + + + 818 + + + YES + + + + + + 819 + + + + + 822 + + + + + 821 + + + + + 794 + + + YES + + + + + + 795 + + + + + 786 + + + YES + + + + + + 787 + + + + + 1004 + + + + + 828 + + + YES + + + + + + 829 + + + YES + + + + + + 1003 + + + YES + + + + + + + + + + 905 + + + YES + + + + + + 906 + + + YES + + + + + + + + + + 907 + + + YES + + + + + + 908 + + + + + 1002 + + + + + 911 + + + YES + + + + + + 912 + + + + + 914 + + + YES + + + + + + 915 + + + + + 918 + + + YES + + + + + + 919 + + + + + 284 + + + YES + + + + + + 285 + + + YES + + + + + + + + 1007 + + + + + 569 + + + YES + + + + + + + + 571 + + + YES + + + + + + 574 + + + + + 570 + + + YES + + + + + + 575 + + + + + 572 + + + YES + + + + + + 573 + + + + + 286 + + + YES + + + + + + + + + + + + + + + + + 855 + + + YES + + + + + + 856 + + + + + 588 + + + YES + + + + + + 589 + + + + + 302 + + + YES + + + + + + 313 + + + + + 776 + + + YES + + + + + + 777 + + + + + 372 + + + YES + + + + + + 373 + + + + + 292 + + + YES + + + + + + 323 + + + + + 294 + + + YES + + + + + + 321 + + + + + 293 + + + YES + + + + + + 322 + + + + + 300 + + + YES + + + + + + 315 + + + + + 301 + + + YES + + + + + + 314 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + + + 1111 + + + YES + + + + + + 1112 + + + YES + + + + + + 1115 + + + YES + + + + + + + + 1113 + + + YES + + + + + + + + + + + 1128 + + + YES + + + + + + 1129 + + + YES + + + + + + 1133 + + + YES + + + + + + 1132 + + + YES + + + + + + 1131 + + + YES + + + + + + 1130 + + + YES + + + + + + 1137 + + + + + 1136 + + + + + 1135 + + + + + 1134 + + + + + 1138 + + + + + 1139 + + + + + 1165 + + + YES + + + + + + + + + + + 1171 + + + YES + + + + + + 1170 + + + YES + + + + + + 1169 + + + YES + + + + + + 1168 + + + YES + + + + + + 1167 + + + YES + + + + + + 1166 + + + YES + + + + + + 1177 + + + + + 1176 + + + + + 1175 + + + + + 1174 + + + + + 1173 + + + + + 1172 + + + + + 1192 + + + YES + + + + + + 1193 + + + YES + + + + + + 1194 + + + + + 1195 + + + + + 1196 + + + YES + + + + + + 1197 + + + YES + + + + + + 1198 + + + + + 1199 + + + + + 1005 + + + YES + + + + + + 1200 + + + YES + + + + + + 1201 + + + + + 110 + + + YES + + + + + + 111 + + + + + 1212 + + + YES + + + + + + 1214 + + + + + 937 + + + YES + + + + + + 99 + + + YES + + + + + + + + + 103 + + + + + 102 + + + YES + + + + + + + + + + 101 + + + + + 100 + + + + + 158 + + + YES + + + + + + 104 + + + YES + + + + + + 128 + + + YES + + + + + + 105 + + + YES + + + + + + 106 + + + + + 129 + + + + + 107 + + + + + 160 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 563 + + + YES + + + + + + 562 + + + YES + + + + + + 590 + + + YES + + + + + + 591 + + + + + 567 + + + + + 566 + + + + + 568 + + + + + 1239 + + + YES + + + + + + 1240 + + + + + 1242 + + + YES + + + + + + 1243 + + + + + 1249 + + + YES + + + + + + 1250 + + + + + 1254 + + + YES + + + + + + + + + + 1276 + + + YES + + + + + + 1277 + + + + + 1273 + + + YES + + + + + + 1274 + + + + + 1279 + + + YES + + + + + + 1280 + + + + + 1291 + + + YES + + + + + + 1292 + + + + + 1304 + + + YES + + + + + + 1305 + + + + + 1309 + + + YES + + + + + 523 + + + YES + + + + + + + + + + + 529 + + + YES + + + + + + 555 + + + YES + + + + + + 527 + + + YES + + + + + + 554 + + + YES + + + + + + 528 + + + YES + + + + + + 553 + + + YES + + + + + + 558 + + + + + 531 + + + + + 557 + + + + + 532 + + + + + 556 + + + + + 530 + + + + + 830 + + + YES + + + + + + 831 + + + + + 1216 + + + YES + + + + + + 1217 + + + + + 1345 + + + YES + + + + + + 1346 + + + + + 1352 + + + + + 1424 + + + YES + + + + + + 1425 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 100.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 101.IBPluginDependency + 1010.IBPluginDependency + 102.CustomClassName + 102.IBPluginDependency + 103.IBPluginDependency + 104.IBPluginDependency + 105.IBPluginDependency + 106.CustomClassName + 106.IBPluginDependency + 107.CustomClassName + 107.IBPluginDependency + 110.IBAttributePlaceholdersKey + 110.IBPluginDependency + 111.IBPluginDependency + 1111.IBPluginDependency + 1112.IBAttributePlaceholdersKey + 1112.IBPluginDependency + 1113.CustomClassName + 1113.IBPluginDependency + 1115.IBPluginDependency + 112.IBPluginDependency + 1128.IBPluginDependency + 1129.IBAttributePlaceholdersKey + 1129.IBPluginDependency + 1130.IBPluginDependency + 1131.IBAttributePlaceholdersKey + 1131.IBPluginDependency + 1132.IBAttributePlaceholdersKey + 1132.IBPluginDependency + 1133.IBPluginDependency + 1134.IBAttributePlaceholdersKey + 1134.IBPluginDependency + 1135.IBPluginDependency + 1136.IBPluginDependency + 1137.IBPluginDependency + 1138.IBPluginDependency + 1139.IBAttributePlaceholdersKey + 1139.IBPluginDependency + 1165.CustomClassName + 1165.IBPluginDependency + 1166.IBAttributePlaceholdersKey + 1166.IBPluginDependency + 1167.IBAttributePlaceholdersKey + 1167.IBPluginDependency + 1168.IBAttributePlaceholdersKey + 1168.IBPluginDependency + 1169.IBAttributePlaceholdersKey + 1169.IBPluginDependency + 1170.IBAttributePlaceholdersKey + 1170.IBPluginDependency + 1171.IBAttributePlaceholdersKey + 1171.IBPluginDependency + 1172.IBAttributePlaceholdersKey + 1172.IBPluginDependency + 1173.IBPluginDependency + 1174.IBPluginDependency + 1175.IBPluginDependency + 1176.IBPluginDependency + 1177.IBPluginDependency + 1192.IBAttributePlaceholdersKey + 1192.IBPluginDependency + 1193.IBPluginDependency + 1194.IBComboBoxObjectValuesKey.objectValues + 1194.IBPluginDependency + 1195.IBPluginDependency + 1196.IBAttributePlaceholdersKey + 1196.IBPluginDependency + 1197.IBAttributePlaceholdersKey + 1197.IBPluginDependency + 1198.IBPluginDependency + 1199.IBPluginDependency + 12.IBPluginDependency + 12.IBWindowTemplateEditedContentRect + 1200.IBPluginDependency + 1201.IBComboBoxObjectValuesKey.objectValues + 1201.IBPluginDependency + 1212.IBPluginDependency + 1214.IBPluginDependency + 1216.IBPluginDependency + 1217.IBPluginDependency + 1239.IBAttributePlaceholdersKey + 1239.IBPluginDependency + 1240.IBPluginDependency + 1242.IBAttributePlaceholdersKey + 1242.IBPluginDependency + 1243.IBPluginDependency + 1249.IBPluginDependency + 1250.CustomClassName + 1250.IBPluginDependency + 1254.CustomClassName + 1254.IBPluginDependency + 1273.IBAttributePlaceholdersKey + 1273.IBPluginDependency + 1274.IBPluginDependency + 1276.IBAttributePlaceholdersKey + 1276.IBPluginDependency + 1277.IBPluginDependency + 1279.IBAttributePlaceholdersKey + 1279.IBPluginDependency + 128.IBPluginDependency + 1280.IBPluginDependency + 129.CustomClassName + 129.IBPluginDependency + 1291.IBAttributePlaceholdersKey + 1291.IBPluginDependency + 1292.IBPluginDependency + 1304.IBAttributePlaceholdersKey + 1304.IBPluginDependency + 1305.IBPluginDependency + 1309.CustomClassName + 1309.IBPluginDependency + 1345.IBPluginDependency + 1346.IBPluginDependency + 1352.IBPluginDependency + 136.IBPluginDependency + 1424.IBPluginDependency + 1425.IBPluginDependency + 158.IBPluginDependency + 160.IBPluginDependency + 172.IBAttributePlaceholdersKey + 172.IBPluginDependency + 173.IBPluginDependency + 174.IBPluginDependency + 186.IBAttributePlaceholdersKey + 186.IBPluginDependency + 187.IBPluginDependency + 189.IBAttributePlaceholdersKey + 189.IBPluginDependency + 190.IBPluginDependency + 284.IBPluginDependency + 285.IBPluginDependency + 286.CustomClassName + 286.IBPluginDependency + 292.IBAttributePlaceholdersKey + 292.IBPluginDependency + 293.IBAttributePlaceholdersKey + 293.IBPluginDependency + 294.IBAttributePlaceholdersKey + 294.IBPluginDependency + 300.IBAttributePlaceholdersKey + 300.IBPluginDependency + 301.IBAttributePlaceholdersKey + 301.IBPluginDependency + 302.IBAttributePlaceholdersKey + 302.IBPluginDependency + 313.IBPluginDependency + 314.IBPluginDependency + 315.IBPluginDependency + 321.IBPluginDependency + 322.IBPluginDependency + 323.IBPluginDependency + 372.IBAttributePlaceholdersKey + 372.IBPluginDependency + 373.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency + 450.IBAttributePlaceholdersKey + 450.IBPluginDependency + 452.IBAttributePlaceholdersKey + 452.IBPluginDependency + 453.IBPluginDependency + 455.IBPluginDependency + 456.CustomClassName + 456.IBPluginDependency + 456.IBUserGuides + 457.IBAttributePlaceholdersKey + 457.IBPluginDependency + 458.IBAttributePlaceholdersKey + 458.IBPluginDependency + 463.IBPluginDependency + 464.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency + 487.IBAttributePlaceholdersKey + 487.IBPluginDependency + 488.IBPluginDependency + 489.IBAttributePlaceholdersKey + 489.IBPluginDependency + 490.IBAttributePlaceholdersKey + 490.IBPluginDependency + 491.IBAttributePlaceholdersKey + 491.IBPluginDependency + 492.IBAttributePlaceholdersKey + 492.IBPluginDependency + 493.IBAttributePlaceholdersKey + 493.IBPluginDependency + 494.IBAttributePlaceholdersKey + 494.IBPluginDependency + 495.IBAttributePlaceholdersKey + 495.IBPluginDependency + 496.IBAttributePlaceholdersKey + 496.IBPluginDependency + 497.IBAttributePlaceholdersKey + 497.IBPluginDependency + 502.IBPluginDependency + 503.IBPluginDependency + 504.IBPluginDependency + 505.IBPluginDependency + 506.IBPluginDependency + 507.IBPluginDependency + 508.IBPluginDependency + 509.IBPluginDependency + 510.IBPluginDependency + 511.CustomClassName + 511.IBPluginDependency + 523.CustomClassName + 523.IBPluginDependency + 527.IBAttributePlaceholdersKey + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.CustomClassName + 536.IBPluginDependency + 537.CustomClassName + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBAttributePlaceholdersKey + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 560.CustomClassName + 560.IBPluginDependency + 561.IBAttributePlaceholdersKey + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.CustomClassName + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency + 6.IBPluginDependency + 6.IBViewIntegration.shadowBlurRadius + 6.IBViewIntegration.shadowColor + 6.IBViewIntegration.shadowOffsetHeight + 6.IBViewIntegration.shadowOffsetWidth + 738.IBAttributePlaceholdersKey + 738.IBPluginDependency + 739.IBPluginDependency + 741.IBAttributePlaceholdersKey + 741.IBPluginDependency + 742.IBPluginDependency + 764.IBAttributePlaceholdersKey + 764.IBPluginDependency + 765.IBPluginDependency + 768.IBAttributePlaceholdersKey + 768.IBPluginDependency + 769.IBPluginDependency + 776.IBAttributePlaceholdersKey + 776.IBPluginDependency + 777.IBPluginDependency + 780.IBPluginDependency + 781.IBPluginDependency + 786.IBAttributePlaceholdersKey + 786.IBPluginDependency + 787.IBPluginDependency + 788.IBPluginDependency + 793.CustomClassName + 793.IBPluginDependency + 794.IBPluginDependency + 795.IBPluginDependency + 818.IBPluginDependency + 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 830.IBPluginDependency + 831.IBPluginDependency + 834.IBPluginDependency + 839.IBPluginDependency + 840.IBComboBoxObjectValuesKey.objectValues + 840.IBPluginDependency + 843.IBPluginDependency + 844.IBComboBoxObjectValuesKey.objectValues + 844.IBPluginDependency + 847.IBPluginDependency + 848.IBComboBoxObjectValuesKey.objectValues + 848.IBPluginDependency + 851.IBPluginDependency + 852.IBComboBoxObjectValuesKey.objectValues + 852.IBPluginDependency + 855.IBPluginDependency + 856.IBComboBoxObjectValuesKey.objectValues + 856.IBPluginDependency + 859.IBAttributePlaceholdersKey + 859.IBPluginDependency + 860.IBPluginDependency + 863.IBPluginDependency + 864.IBComboBoxObjectValuesKey.objectValues + 864.IBPluginDependency + 867.IBPluginDependency + 868.IBComboBoxObjectValuesKey.objectValues + 868.IBPluginDependency + 869.IBAttributePlaceholdersKey + 869.IBPluginDependency + 870.IBPluginDependency + 872.IBPluginDependency + 873.IBComboBoxObjectValuesKey.objectValues + 873.IBPluginDependency + 893.IBPluginDependency + 897.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 914.IBPluginDependency + 915.IBPluginDependency + 918.IBPluginDependency + 919.IBPluginDependency + 920.IBPluginDependency + 920.IBViewIntegration.shadowBlurRadius + 920.IBViewIntegration.shadowColor + 920.IBViewIntegration.shadowOffsetHeight + 920.IBViewIntegration.shadowOffsetWidth + 921.IBPluginDependency + 937.CustomClassName + 937.IBPluginDependency + 947.IBPluginDependency + 947.IBViewIntegration.shadowBlurRadius + 947.IBViewIntegration.shadowColor + 947.IBViewIntegration.shadowOffsetHeight + 947.IBViewIntegration.shadowOffsetWidth + 948.IBPluginDependency + 948.IBShouldRemoveOnLegacySave + 949.IBPluginDependency + 949.IBShouldRemoveOnLegacySave + 950.IBPluginDependency + 952.IBPluginDependency + 953.CustomClassName + 953.IBPluginDependency + 961.IBPluginDependency + 99.IBAttributePlaceholdersKey + 99.IBPluginDependency + 995.IBPluginDependency + 996.IBPluginDependency + + + YES + 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 + CustomTableView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Shuts down the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0IHRoZSBib290IHBhcnRpdGlvbnMgaGQoeCx5KSB0byBoaWRlICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the boot partitions "hd(x,y) MyVolumeName " where 'x' is the disk number, 'y' the partition number and MyVolumeName is the alias you want to give to this partition. (i.e: useful for renaming System Reserved boot partition for Windows 7) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate ATI ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate Nvidia ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0 + 1 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Chameleon Extra folder location. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Folder location where the file 'cdboot' is located. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating your chameleon Extra folder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Creates a BootCD.iso file. When successfully run, a Chameleon Folder is created on your Desktop with that ISO to burn to a CD. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating the directory that contains the binary bootfile named 'cdboot'. It is needed for the image to build. Usaully in the sym/i386 subdirectory of your chameleon source distribution. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Put the sytem in Sleep mode + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in Single User Mode (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in verbose (text) mode, log info will be stored and accessible by the Console application (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Ignore Boot Configuration file (default: No). If set, then org.chameleon.Boot.plist will not be loaded during the boot, only defaults options will be set. + + + 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 + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + + 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 + + Use Wait to make the booter wait for a key press before it starts the mach kernel. Useful for debugging your boot configuration + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Show boot banner in GUI mode (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + ToolTip + + ToolTip + + Automatic device-properties generation for graphics cards (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the legacy (grey on white) apple logo (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable kernel debug mode flags (i.e 0x0144). + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + io 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 + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Skip the SSDT tables while relocating the ACPI tables (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI and UHCI fixes (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the UHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force using the sleepimage (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Scan the drive only where the booter got loaded from (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Prompts for enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force to boot in safe mode. Useful in certains situations (i.e: when one kexts hangs the system) + + + 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 + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Override the automatic pciroot detection, and manually inject a pciroot number at boot time + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable GUI at boot time. (Enabled by Default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets additional device properties like gfx card efi injection, network . + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + YES + 800x600x32 + 1024x768x32 + 1280x800x32 + 1280x1024x32 + 1440x900x32 + 1680x1050x32 + 1920x1080x32 + 1920x1200x32 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + X86_64 + i386 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 20 + 21 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 4 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 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 + + YES + 0x12A + 0x144 + 0x14E + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0x80 + 0xFFFFFFFF + + 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 + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Click on a partition to make it the default boot partition. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + + + + YES + + + + + 1427 + + + + YES + + AboutController + NSObject + + onAbout: + id + + + onAbout: + + onAbout: + id + + + + mAboutDlg + NSPanel + + + mAboutDlg + + mAboutDlg + NSPanel + + + + IBProjectSource + ./Classes/AboutController.h + + + + AdvancedSetupController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSButton + NSTextField + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + + mArch + NSButton + + + mArchText + NSComboBox + + + mBusRatio + NSButton + + + mBusRatioText + NSComboBox + + + mCPU + NSButton + + + mCPUText + NSComboBox + + + mDSDTDrop + NSButton + + + mDSDTFile + NSButton + + + mDSDTFileText + NSTextField + + + mDebug + NSButton + + + mDebugText + NSComboBox + + + mDeviceRd + NSButton + + + mDeviceRdText + NSTextField + + + mDisableKextsBlacklisting + NSButton + + + mForceWake + NSButton + + + mGenerateCStates + NSButton + + + mGeneratePStates + NSButton + + + mIO + NSButton + + + mIOText + NSComboBox + + + mKernel + NSButton + + + mKernelText + NSTextField + + + mRestartFix + NSButton + + + mSMBIOSDefaults + NSButton + + + mSMBIOSFile + NSButton + + + mSMBIOSFileText + NSTextField + + + mSystemId + NSButton + + + mSystemIdText + NSTextField + + + mSystemType + NSButton + + + mSystemTypeText + NSComboBox + + + mWake + NSButton + + + mWakeImage + NSButton + + + mWakeImageText + NSTextField + + + + + IBProjectSource + ./Classes/AdvancedSetupController.h + + + + BootFlagsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + + mIgnoreBootConfig + NSButton + + + mInstantMenu + NSButton + + + mQuietBoot + NSButton + + + mRescan + NSButton + + + mRescanPrompt + NSButton + + + mRescanSingleDrive + NSButton + + + mSafeBoot + NSButton + + + mSingleUser + NSButton + + + mTheme + NSButton + + + mThemeText + NSComboBox + + + mTimeOut + NSButton + + + mTimeOutText + NSTextField + + + mUseGUI + NSButton + + + mVerbose + NSButton + + + mWait + NSButton + + + + + IBProjectSource + ./Classes/BootFlagsController.h + + + + BootSetupController + PreferencesControllerBase + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + id + NSButton + id + id + id + NSTextField + + + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + + onCdBootConfigPath: + id + + + onCheckButtonChange: + NSButton + + + onCreateBootCD: + id + + + onExtraConfigPath: + id + + + onForceBootConfigPath: + id + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + + mBootCdbootPath + NSButton + + + mBootCdbootPathText + NSTextField + + + mBootConfigPath + NSButton + + + mBootConfigPathText + NSTextField + + + mBootExtraPath + NSButton + + + mBootExtraPathText + NSTextField + + + mDefaultPartition + NSButton + + + mDefaultPartitionText + NSTextField + + + mFreezeParts + NSButton + + + mHidePartition + NSButton + + + mHidePartitionText + NSTextField + + + mInjectFrozenParts + NSButton + + + mRenamePartition + NSButton + + + mRenamePartitionText + NSTextField + + + mSwapHD01 + NSButton + + + mSwapHD02 + NSButton + + + + + IBProjectSource + ./Classes/BootSetupController.h + + + + CenteredTextFieldCell + NSTextFieldCell + + IBProjectSource + ./Classes/CenteredTextFieldCell.h + + + + ChameleonPrefPane + NSPreferencePane + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + id + id + id + + + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + + onRestart: + id + + + onShutdown: + id + + + onSleep: + id + + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + SFAuthorizationView + NSColorWell + NSColorWell + RoundedBox + RoundedBox + NSColorWell + NSColorWell + NSBox + NSButton + NSButton + NSButton + NSTextField + NSView + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + + authView + SFAuthorizationView + + + backgroundColorWell + NSColorWell + + + borderColorWell + NSColorWell + + + box + RoundedBox + + + footer + RoundedBox + + + gradientEndColorWell + NSColorWell + + + gradientStartColorWell + NSColorWell + + + mOptions + NSBox + + + mRestartButton + NSButton + + + mShutDownButton + NSButton + + + mSleepButton + NSButton + + + mStatusText + NSTextField + + + mainView + NSView + + + + + IBProjectSource + ./Classes/ChameleonPrefPane.h + + + + CustomTableView + NSTableView + + IBProjectSource + ./Classes/CustomTableView.h + + + + EfiInjectController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + NSButton + NSButton + NSTextField + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + + mCurrentGfxInjection + NSButton + + + mEfiInject + NSButton + + + mEfiInjectText + NSTextField + + + + + IBProjectSource + ./Classes/EfiInjectController.h + + + + NSPreferencePane + NSObject + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + NSView + NSView + NSView + NSWindow + + + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + + IBProjectSource + ./Classes/NSPreferencePane.h + + + + PeripheralsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + + mAtiVideoROM + NSButton + + + mBootBanner + NSButton + + + mEHCIacquire + NSButton + + + mEthernetBuiltIn + NSButton + + + mForceHPET + NSButton + + + mGraphicsEnabler + NSButton + + + mGraphicsMode + NSButton + + + mGraphicsModeText + NSComboBox + + + mLegacyLogo + NSButton + + + mNvidiaVideoROM + NSButton + + + mPciRoot + NSButton + + + mPciRootText + NSTextField + + + mUHCIreset + NSButton + + + mUSBBusFix + NSButton + + + mVBIOS + NSButton + + + + + IBProjectSource + ./Classes/PeripheralsController.h + + + + PreferencesControllerBase + NSObject + + IBProjectSource + ./Classes/PreferencesControllerBase.h + + + + RoundedBox + NSBox + + IBProjectSource + ./Classes/RoundedBox.h + + + + SFAuthorizationView + NSView + + IBProjectSource + ./Classes/SFAuthorizationView.h + + + + SmbiosController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + NSButton + NSButton + NSButton + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + + mAppleSmbios + NSButton + + + mEditSmbios + NSButton + + + mExtractACPITables + NSButton + + + + + IBProjectSource + ./Classes/SmbiosController.h + + + + TableViewsController + NSObject + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + CustomTableView + NSTabViewItem + NSTabViewItem + NSTabView + NSTableView + + + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + + mAbout + NSTabViewItem + + + mAdvanced + NSTabViewItem + + + mBootFlags + NSTabViewItem + + + mBootFrom + NSTabViewItem + + + mBootSetup + NSTabViewItem + + + mEfiInject + NSTabViewItem + + + mFileSystemColumn + NSTableColumn + + + mHideOrViewColumn + NSTableColumn + + + mMenuIcon + NSTableColumn + + + mMenuName + NSTableColumn + + + mPartitionIDColumn + NSTableColumn + + + mPartitionImgColumn + NSTableColumn + + + mPartitionNameColumn + NSTableColumn + + + mPartitionUIDColumn + NSTableColumn + + + mPartitionsTable + CustomTableView + + + mPeripherals + NSTabViewItem + + + mSmbios + NSTabViewItem + + + mTabViewPanes + NSTabView + + + mTabViewPanesSelect + NSTableView + + + + + IBProjectSource + ./Classes/TableViewsController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + YES + + YES + NSSwitch + background + cham + footer + name + + + YES + {15, 15} + {130, 1} + {344, 378} + {1, 34} + {262, 45} + + + + Index: branches/ErmaC/ChameleonPrefPane/ibexport =================================================================== --- branches/ErmaC/ChameleonPrefPane/ibexport (revision 0) +++ branches/ErmaC/ChameleonPrefPane/ibexport (revision 396) @@ -0,0 +1,2 @@ +#!/bin/sh +ibtool --generate-strings-file ${1}.strings ${1}.xib \ No newline at end of file Property changes on: branches/ErmaC/ChameleonPrefPane/ibexport ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/CREDITS =================================================================== --- branches/ErmaC/ChameleonPrefPane/CREDITS (revision 0) +++ branches/ErmaC/ChameleonPrefPane/CREDITS (revision 396) @@ -0,0 +1,18 @@ +Initial Conception & Design: +--------------------------- +Rekursor + +Crew Members +---------- +Rekursor, DieBuche + +Contributors & Testers: +--------------------- +BlackOSX, MasterChief, digital_dreamer, smith@@, scrax, quinielascom +Azimutz, iFabio + +Chameleon also reuses: +--------------------- +Courtesy of Ronan (Lizard): +Existing scripts and gfxutil tool from Lizard available at: +http://code.google.com/p/lizard-app/ \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/README =================================================================== --- branches/ErmaC/ChameleonPrefPane/README (revision 0) +++ branches/ErmaC/ChameleonPrefPane/README (revision 396) @@ -0,0 +1,38 @@ +----------------------------------- +Chameleon System Preferences panel +by rekursor 1/17/2010 +----------------------------------- + +How to Install: + Double click on the panel file to install the resource + +Configuration: + The persistent configuration file is a all users level preferences property list + located in In /Library/Preferences/org.chameleon.prefPane.plist. + + The swap disk fix option might be use if your disk order from chameleon is different + from what diskutil list returns. + Ideally we should not need this fix, but as for now, I don't know another way to do it + + In /Library/Preferences/org.chameleon.prefPane.plist: + you can insert a 'forceBootConfigPath' key with your org.chameleon.Boot.plist file path: + So if automatic detection does not work, then force your org.chameleon.Boot.plist path here. + + Freeze Partitions (lock the partition list and prevent autodetection to happen) + You can also decide to freeze the partitions to prevent automatic detection, + if disk order is not matching after the boot or if you don't want the list to change + each time that a usb key is inserted, then use this feature. + For it to work, you will need first to click on: + Settings/Boot Selector Fixes/Inject Parts In Freeze File + Then all your automatically detected current partitions are injected in the pref. file, + all you need to do is to manually edit them to change their disk id/partition id + (2 first parameters in the pref. file under the partitionList key) + +Troubleshooting + If the panel sees your org.chameleon.Boot.plist in the status box, but the boot selection + seem to have no effect, it might be that you have more than one bootConfig file + and that the chameleon booter does not load the one that the panel selected, + see upper to force the bootConfig to match the one loaded by the chameleon booter. + +How to build from sources + Please use XCode 3.2.6 or superior from SnowLeopard or Lion (yes you can still install 3.2.6 for backward compatible dev in Lion) Index: branches/ErmaC/ChameleonPrefPane/German.lproj/Chameleon.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/German.lproj/Chameleon.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/German.lproj/Localizable.strings =================================================================== --- branches/ErmaC/ChameleonPrefPane/German.lproj/Localizable.strings (revision 0) +++ branches/ErmaC/ChameleonPrefPane/German.lproj/Localizable.strings (revision 396) @@ -0,0 +1,24 @@ +/* comment */ +"About" = "About"; + +/* comment */ +"Advanced" = "Erweitert"; + +/* comment */ +"Boot_Flags" = "Boot Flags"; + +/* comment */ +"Boot_From" = "Starte von..."; + +/* comment */ +"Boot_Setup" = "Boot Setup"; + +/* comment */ +"Efi_Inject" = "EFI Injizierung"; + +/* comment */ +"Peripherals" = "Geräte"; + +/* comment */ +"Bios" = "BIOS"; + Index: branches/ErmaC/ChameleonPrefPane/German.lproj/Chameleon.xib =================================================================== --- branches/ErmaC/ChameleonPrefPane/German.lproj/Chameleon.xib (revision 0) +++ branches/ErmaC/ChameleonPrefPane/German.lproj/Chameleon.xib (revision 396) @@ -0,0 +1,11295 @@ + + + + 1050 + 11C74 + 1938 + 1138.23 + 567.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1938 + + + YES + NSButton + NSCustomObject + NSImageView + NSImageCell + NSTableView + NSCustomView + NSComboBox + NSComboBoxCell + NSTextField + NSViewController + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSTableColumn + NSBox + NSView + NSScrollView + NSTabViewItem + NSUserDefaultsController + NSScroller + NSTabView + NSTableHeaderView + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSPreferencePane + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{176, 644}, {668, 439}} + 1081606144 + << do not localize >> + NSWindow + + View + + + {224.66399999999999, 10} + + + 256 + + YES + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{0, 31}, {126, 408}} + + YES + + YES + + 2 + YES + + 130560 + 33554432 + + NSImage + background + + 0 + 1 + 0 + YES + + YES + + + + 4352 + + YES + + + 2304 + + YES + + + 4352 + {126, 410} + + 2 + YES + + + 256 + {{-26, 0}, {16, 17}} + + + YES + + 31 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + Icon + + LucidaGrande + 11 + 3100 + + + 6 + System + headerColor + + 3 + MQA + + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 67239424 + 33554432 + + LucidaGrande + 13 + 1044 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 89 + 10 + 1000 + + 75628096 + 2048 + Menu Name + + + + + + 1140981312 + 2048 + Text Cell + + LucidaGrande + 11 + 16 + + + + 4 + MSAwAA + + + 6 + System + controlTextColor + + + + 3 + YES + YES + + + + 3 + 2 + + 1 + MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTggMAA + + + 4 + MC44IDAAA + + 36 + 37781504 + + + 1 + 15 + 0 + YES + 1 + 1 + 1 + + + {126, 410} + + + 2 + + + 4 + MSAwAA + + 4 + + + + -2147483392 + {{-100, -100}, {15, 441}} + + + _doScroller: + 0.19473683834075928 + + + + -2147483392 + {{-100, -100}, {141, 15}} + + 1 + + _doScroller: + 0.99047619104385376 + + + {{0, 29}, {126, 410}} + + + YES + + YES + + 2 + 133120 + + + + QSAAAEEgAABCGAAAQhgAAA + + + + 268 + {{127, 31}, {541, 408}} + + YES + + subviews + + fromTop + fade + + YES + subtype + type + + + + 2 + + YES + + Item 1 + + + 292 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 8448 + {499, 257} + + 2 + YES + + + 256 + {499, 17} + + 2 + + + + + -2147483392 + {{457, 0}, {16, 17}} + 2 + + + YES + + 32 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + OS + + + + + + 67239424 + 33554432 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 157.640625 + 40 + 1000 + + 75628096 + 67110912 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772097 + 67110912 + Text Cell + + LucidaGrande-Bold + 14 + 16 + + + 1 + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + + YES + sr_Latn_RS + zh + ro_RO + be_BY + si_LK + fa_IR + en_BW + en_JM + ka_GE + zh_Hans_SG + mk_MK + en_HK + ar_LB + ii_CN + ru_UA + zh_Hant_HK + af + kl_GL + az_Latn + ar_SA + en_BE + bn_BD + en_MH + be + nl_NL + el_CY + az_Cyrl_AZ + ca + sr_Latn + om_ET + es_CL + bg + en_VI + es_VE + uz_Cyrl_UZ + fr_MC + am + zh_Hant + uz_Arab + en_GB + da + mr_IN + es_MX + es_PR + sq_AL + ar + fi_FI + bn + en_NA + de + as + cy_GB + en_IE + en_BZ + de_CH + en_US + sr_Latn_BA + te_IN + ar_QA + ar_TN + zh_Hans_MO + de_LI + fa + kw_GB + cs_CZ + hu_HU + zh_Hant_TW + uz_Latn + ta_IN + az + ar_EG + ar_SD + cs + ga + ar_LY + af_ZA + el + es_PA + es_CO + fi + en + ha + eo + gl_ES + cy + es_GT + ms_BN + ne_IN + he_IL + he + es + fo + en_CA + et + hr_HR + haw + gl + ar_SY + fr_SN + eu + uz_Arab_AF + id + fr + az_Latn_AZ + hi + zh_Hans_HK + ja + es_ES + ar_AE + uz_Latn_UZ + ca_ES + fr_BE + hi_IN + is_IS + ii + ps_AF + ka + tr_TR + it_CH + kk_Cyrl_KZ + gu + es_US + gv + en_PH + es_HN + hr + sv_FI + es_CR + haw_US + ar_MA + hu + nl_BE + th_TH + en_ZA + kk_Cyrl + is + it + es_PE + hy + de_DE + en_NZ + kk + kl + en_AU + pa_Guru + el_GR + km + kn + ko + nb + ar_IQ + es_PY + es_EC + en_US_POSIX + vi_VN + lv_LV + ne + kn_IN + es_AR + mk + ml + bg_BG + hy_AM_REVISED + kw + uk_UA + en_PK + pa + lt + sk_SK + nl + ur_PK + de_BE + lv + as_IN + mr + nn + en_ZW + fr_CA + ne_NP + ms + pl_PL + ti_ER + ja_JP + mt + fr_LU + om + sr_Cyrl_ME + en_IN + ga_IE + sw_KE + pl + kok + ur_IN + or + it_IT + hy_AM + ml_IN + en_SG + es_SV + am_ET + pt_BR + bn_IN + mt_MT + ar_KW + es_DO + pa_Arab + gv_GB + so_KE + ti_ET + ps + ms_MY + sl_SI + es_UY + en_MT + pt + sw_TZ + ta + nn_NO + sr_Cyrl_RS + si + te + ro + so_SO + sk + az_Cyrl + or_IN + sl + pa_Arab_PK + ru_RU + th + ar_DZ + ti + so + sr_Cyrl + es_NI + ha_Latn_NG + ru + en_TT + sq + fr_FR + sr + da_DK + es_BO + nb_NO + de_LU + uk + eu_ES + ar_JO + sv + so_ET + tr + sw + vi + zh_Hans_CN + km_KH + fa_AF + et_EE + ko_KR + pa_Guru_IN + sr_Latn_ME + so_DJ + ur + kok_IN + uz_Cyrl + zh_Hant_MO + zh_Hans + ar_YE + fo_FO + sv_SE + ha_Latn + de_AT + lt_LT + ar_OM + sr_Cyrl_BA + uz + ar_BH + id_ID + pt_PT + af_NA + om_KE + fr_CH + gu_IN + + + 3 + YES + YES + + + + 46.90234375 + 10 + 3.4028229999999999e+38 + + 75628096 + 134219776 + HD + + + + + + 69336641 + 134350848 + Text Cell + + + YES + 1 + + + + 3 + YES + + Name Displayed on the bootable partion during Chameleon boot + + + 207.3359375 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + UUID + + + + + + 67239488 + 264192 + Text Cell + + LucidaGrande + 9 + 3614 + + + + + + 3 + YES + YES + + + + 40 + 40 + 1000 + + 75628096 + 2048 + FS + + + + + + 69336641 + 133120 + Text Cell + + + YES + 1 + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 32 + -689963008 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {494, 257}} + + + 2 + + + 4 + + + + -2147483392 + {{457, 17}, {15, 227}} + + + _doScroller: + 0.94163424124513617 + + + + 256 + {{1, 259}, {494, 15}} + + YES + 1 + + _doScroller: + 0.98997995991983967 + + + + 2304 + + YES + + + {{1, 0}, {494, 17}} + + + 2 + + + 4 + + + {{6, 9}, {496, 275}} + + + 2 + 133810 + + + + + QSAAAEEgAABCCAAAQggAAA + + + {{1, 1}, {509, 294}} + + 2 + + + {{44, 217}, {511, 310}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Partition + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -140}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + 3 + MCAwAA + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{367, 8}, {158, 25}} + + 2 + YES + + 67239424 + 134217728 + Restart + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{112, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Shutdown + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{12, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Sleep + + + -2038284033 + 163 + + + 200 + 25 + + + + {541, 408} + + 2 + + Startup Disk + + 6 + System + controlColor + + + + + + Item 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 80}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Default Partition + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 12 + {{174, 79}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Hide Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 49}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 12 + {{16, 17}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Rename Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 19}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + {{1, 1}, {509, 114}} + + + 2 + + + {{44, 397}, {511, 130}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Partitions Management + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 94}, {267, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->1 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{305, 94}, {188, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->2 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 63}, {285, 18}} + + + 2 + YES + + 67239424 + 0 + Use Freezed Parts List + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 30}, {158, 18}} + + + 2 + YES + + 67239424 + 0 + Boot Config Path + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 31}, {323, 19}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{307, 64}, {190, 18}} + + + 2 + YES + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {509, 128}} + + + 2 + + + {{44, 240}, {511, 144}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Boot Selector Fixes + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{102, 37}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{102, 14}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{12, 39}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + Extra folder + + + -2034876161 + 193 + + LucidaGrande + 9 + 16 + + + + 200 + 25 + + + + + 268 + {{399, 27}, {100, 18}} + + + 2 + YES + + 67239424 + 134348800 + Create ISO + + + -2033434369 + 163 + + + 200 + 25 + + + + + 12 + {{12, 16}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + cdboot folder + + + -2034876161 + 193 + + + + 200 + 25 + + + + {{1, 1}, {509, 64}} + + + 2 + + + {{44, 148}, {511, 80}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Rescue Boot CD Creator + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-32, -140}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + Boot Setup + + + + + Item 3 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 102}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Verbose (-v) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 102}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Ignore Boot Config (-F) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 71}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Single User (-s) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 71}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Time Out + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 42}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Quiet Boot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 42}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Instant Menu + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 42}, {170, 23}} + + 2 + YES + + 67239424 + 0 + Wait + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{164, 107}, {161, 18}} + + 2 + YES + + 67239424 + 0 + Safe Boot (-x) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 12}, {164, 23}} + + 2 + YES + + 67239424 + 0 + Use GUI + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 70}, {46, 26}} + + 2 + 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 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 12 + {{16, 12}, {144, 23}} + + 2 + YES + + -2080244224 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 9}, {134, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 105} + + + 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, 1}, {509, 144}} + + 2 + + + {{13, 228}, {511, 160}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Flags + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{16, 13}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Rescan + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 13}, {174, 23}} + + 2 + YES + + 67239424 + 0 + Scan Single Drive + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 13}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Rescan Prompt + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 52}} + + 2 + + + {{13, 146}, {511, 68}} + + 2 + {0, 0} + + 67239424 + 0 + CDROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Boot Flags + + + + + Item 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{155, 17}, {208, 23}} + + 2 + YES + + 67239424 + 0 + Boot Banner + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 86}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Mode + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 86}, {134, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Enabler + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 51}, {134, 23}} + + 2 + YES + + 67239424 + 0 + VBIOS + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 17}, {141, 23}} + + 2 + YES + + 67239424 + 0 + Legacy Logo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{157, 83}, {181, 26}} + + 2 + 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 + + + + + + 268 + {{16, 53}, {141, 18}} + + 2 + YES + + 67239424 + 0 + Use Ati ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{155, 53}, {202, 18}} + + 2 + YES + + 67239424 + 0 + Use Nvidia ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 121}} + + 2 + + + {{13, 251}, {511, 137}} + + 2 + {0, 0} + + 67239424 + 0 + Graphics + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{361, 12}, {143, 23}} + + 2 + YES + + 67239424 + 0 + UHCI reset + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 12}, {173, 23}} + + 2 + YES + + 67239424 + 0 + USB Bus Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 12}, {169, 23}} + + 2 + YES + + 67239424 + 0 + EHCI acquire + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 44}} + + 2 + + + {{13, 177}, {511, 60}} + + 2 + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Ethernet Built-In + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 10}, {69, 23}} + + 2 + YES + + 67239424 + 0 + PciRoot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 12}, {138, 23}} + + 2 + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{268, 10}, {51, 26}} + + 2 + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + + YES + 0 + 1 + + + + + 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 + 1 + + + + + {{1, 1}, {509, 43}} + + 2 + + + {{13, 104}, {511, 59}} + + 2 + {0, 0} + + 67239424 + 0 + Ethernet + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Peripherals + + + + + Item 5 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 36 + + YES + + + 274 + + YES + + + 268 + {{161, 47}, {205, 23}} + + 2 + YES + + 67239424 + 0 + Force Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 19}, {146, 23}} + + 2 + YES + + 67239424 + 0 + Wake Image + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{163, 18}, {201, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 52}, {146, 18}} + + 2 + YES + + 67239424 + 0 + Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 78}} + + 2 + + + {{45, 116}, {511, 94}} + + 2 + {0, 0} + + 67239424 + 0 + Wake + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -106}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{277, 217}, {50, 23}} + + 2 + YES + + 67239424 + 0 + rd + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 112}, {102, 18}} + + 2 + YES + + 67239424 + 0 + SystemType + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{385, 107}, {59, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + + + + 274 + {13, 126} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{277, 179}, {81, 23}} + + 2 + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 217}, {63, 23}} + + 2 + YES + + 67239424 + 0 + Kernel + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{322, 219}, {159, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + + YES + + + + + + + 268 + {{277, 145}, {75, 23}} + + 2 + YES + + 67239424 + 0 + io + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 219}, {164, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 148}, {80, 18}} + + 2 + YES + + 67239424 + 0 + cpus + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 111}, {90, 23}} + + 2 + YES + + 67239424 + 0 + busratio + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 76}, {90, 18}} + + 2 + YES + + 67239424 + 0 + SystemId + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 181}, {90, 23}} + + 2 + YES + + 67239424 + 0 + arch + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 41}, {226, 18}} + + 2 + YES + + 67239424 + 0 + Disable kext blacklist + + LucidaGrande + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 75}, {339, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 41}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{102, 179}, {76, 26}} + + 2 + 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 + 1 + + + + + + 268 + {{102, 109}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{102, 142}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{358, 178}, {86, 23}} + + 2 + YES + + 343014976 + 272630784 + + + LucidaGrande + 10 + 16 + + + 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 + 1 + + + + + + 268 + {{358, 143}, {86, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF + + + + + 274 + {13, 34} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{16, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate P-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate C-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 250}} + + 2 + + + {{13, 122}, {511, 266}} + + 2 + {0, 0} + + 67239424 + 0 + Kernel + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Advanced + + + + + Item 6 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 311}, {244, 18}} + + 2 + YES + + 67239424 + 0 + Device Properties + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{327, 309}, {170, 25}} + + 2 + YES + + -2080244224 + 134217728 + Current GFX Injection + + + -2038152961 + 163 + + + 400 + 75 + + + + + 12 + + YES + + + 2304 + + YES + + + 268 + {{0, 91}, {536, 506}} + + 2 + YES + + -1809711615 + 272629760 + + + + YES + + + + + + {{1, 1}, {462, 264}} + {{0, 333}, {462, 264}} + + + 2 + + + 4 + + + + 256 + {{463, 1}, {15, 264}} + + 2 + YES + + _doScroller: + 1 + 0.52173913043478259 + + + + -2147483392 + {{-100, -100}, {536, 15}} + + 2 + YES + 1 + + _doScroller: + 0.50602412223815918 + + + {{18, 22}, {479, 266}} + + + 2 + 133842 + + + + + + {{1, 1}, {509, 348}} + + 2 + + + {{13, 24}, {511, 364}} + + 2 + {0, 0} + + 67239424 + 0 + EFI injection + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + EFI Inject + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {509, 234}} + + 2 + + + {{44, 179}, {511, 250}} + + + 2 + {0, 0} + + 67239424 + 0 + IORegistry + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 54}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + DSDT file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{370, 52}, {148, 22}} + + + 2 + YES + + 67239424 + 0 + Drop + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{139, 53}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{139, 14}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{370, 12}, {161, 23}} + + + 2 + YES + + 67239424 + 0 + Defaults + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 15}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + SMBIOS file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 87}} + + + 2 + + + {{44, 433}, {511, 103}} + + + 2 + {0, 0} + + 67239424 + 0 + DSDT & SMBIOS + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{384, 151}, {168, 25}} + + + 2 + YES + + 67239424 + 134217728 + Open smbios.plist + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{209, 151}, {168, 25}} + + 2 + YES + + 67239424 + 134217728 + Extract SMBIOS + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{47, 151}, {154, 25}} + + + 2 + YES + + -2080244224 + 134217728 + Extract ACPI + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-34, -141}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + SMBIOS + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{18, -1}, {513, 261}} + + 2 + YES + + -2080244224 + 138412032 + + + + YES + + 1 + MCAwIDAgMAA + + + 1 + MCAwIDAgMC45AA + + + + + + 268 + {{186, 338}, {172, 17}} + + 2 + YES + + 68288064 + 138413056 + Version bla bla. + + LucidaGrande-Bold + 13 + 16 + + + + + 1 + MCAwIDAgMC45AA + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{223, 243}, {100, 100}} + + 2 + YES + + 130560 + 33554432 + + NSImage + cham + + 0 + 0 + 0 + YES + + YES + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{141, 358}, {262, 45}} + + 2 + YES + + 130560 + 33554432 + + NSImage + name + + 0 + 0 + 0 + YES + + YES + + + {541, 408} + 2 + + About + + + + + + + 268435462 + YES + YES + + YES + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {675, 34} + + 2 + YES + + 130560 + 33554432 + + NSImage + footer + + 0 + 1 + 0 + YES + + YES + + + + 268 + {{0, 2}, {227.58203125, 30}} + + YES + 2 + SFAuthorizationView + + + + 268 + {{232, 8}, {419, 17}} + + 2 + _NS:4068 + YES + + 68288064 + 71304192 + + + _NS:4068 + + + + + + + {668, 439} + YES + 2 + + {{0, 0}, {1920, 1178}} + {224.66399999999999, 32} + {10000000000000, 10000000000000} + YES + + + AboutController + + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + + + EfiInjectController + + + SmbiosController + + + YES + + + TableViewsController + + + + + + YES + + + _window + + + + 26 + + + + delegate + + + + 972 + + + + dataSource + + + + 973 + + + + authView + + + + 137 + + + + onRestart: + + + + 188 + + + + mSleepButton + + + + 192 + + + + mShutDownButton + + + + 193 + + + + mRestartButton + + + + 194 + + + + onSleep: + + + + 195 + + + + onShutdown: + + + + 197 + + + + box + + + + 991 + + + + mStatusText + + + + 1351 + + + + onTextFiedChange: + + + + 1141 + + + + onCheckButtonChange: + + + + 1143 + + + + onCheckButtonChange: + + + + 1145 + + + + onTextFiedChange: + + + + 1148 + + + + onCheckButtonChange: + + + + 1150 + + + + onTextFiedChange: + + + + 1151 + + + + mDefaultPartition + + + + 1153 + + + + mHidePartition + + + + 1154 + + + + mRenamePartition + + + + 1155 + + + + mDefaultPartitionText + + + + 1156 + + + + mHidePartitionText + + + + 1157 + + + + mRenamePartitionText + + + + 1158 + + + + onCheckButtonChange: + + + + 1178 + + + + onTextFiedChange: + + + + 1179 + + + + onCheckButtonChange: + + + + 1180 + + + + onCheckButtonChange: + + + + 1181 + + + + onCheckButtonChange: + + + + 1182 + + + + onCheckButtonChange: + + + + 1183 + + + + mBootConfigPathText + + + + 1185 + + + + mSwapHD01 + + + + 1186 + + + + mSwapHD02 + + + + 1187 + + + + mBootConfigPath + + + + 1189 + + + + mFreezeParts + + + + 1190 + + + + mInjectFrozenParts + + + + 1191 + + + + onTextFiedChange: + + + + 1294 + + + + onTextFiedChange: + + + + 1295 + + + + mBootExtraPath + + + + 1298 + + + + mBootExtraPathText + + + + 1300 + + + + mBootCdbootPathText + + + + 1301 + + + + onCreateBootCD: + + + + 1302 + + + + onExtraConfigPath: + + + + 1303 + + + + onCdBootConfigPath: + + + + 1307 + + + + mBootCdbootPath + + + + 1308 + + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + onCheckButtonChange: + + + + 671 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 723 + + + + onCheckButtonChange: + + + + 725 + + + + onCheckButtonChange: + + + + 726 + + + + onCheckButtonChange: + + + + 727 + + + + onCheckButtonChange: + + + + 728 + + + + onCheckButtonChange: + + + + 729 + + + + onCheckButtonChange: + + + + 730 + + + + onCheckButtonChange: + + + + 731 + + + + onCheckButtonChange: + + + + 732 + + + + onCheckButtonChange: + + + + 778 + + + + mUseGUI + + + + 779 + + + + mTimeOutText + + + + 857 + + + + onTextFiedChange: + + + + 858 + + + + onCheckButtonChange: + + + + 871 + + + + onTextFiedChange: + + + + 874 + + + + mThemeText + + + + 875 + + + + mTheme + + + + 876 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 716 + + + + onCheckButtonChange: + + + + 717 + + + + onCheckButtonChange: + + + + 718 + + + + onCheckButtonChange: + + + + 719 + + + + onCheckButtonChange: + + + + 720 + + + + onCheckButtonChange: + + + + 721 + + + + onCheckButtonChange: + + + + 722 + + + + onCheckButtonChange: + + + + 770 + + + + mPciRoot + + + + 774 + + + + mGraphicsModeText + + + + 841 + + + + onTextFiedChange: + + + + 842 + + + + onCheckButtonChange: + + + + 861 + + + + mForceHPET + + + + 862 + + + + mPciRootText + + + + 1202 + + + + onTextFiedChange: + + + + 1203 + + + + onCheckButtonChange: + + + + 1204 + + + + mAtiVideoROM + + + + 1205 + + + + onCheckButtonChange: + + + + 1206 + + + + mNvidiaVideoROM + + + + 1207 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mCPU + + + + 650 + + + + mBusRatio + + + + 652 + + + + mDebug + + + + 654 + + + + mIO + + + + 656 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + + + + onCheckButtonChange: + + + + 699 + + + + onCheckButtonChange: + + + + 700 + + + + onCheckButtonChange: + + + + 701 + + + + onCheckButtonChange: + + + + 702 + + + + onCheckButtonChange: + + + + 703 + + + + onCheckButtonChange: + + + + 704 + + + + onCheckButtonChange: + + + + 705 + + + + onCheckButtonChange: + + + + 706 + + + + onCheckButtonChange: + + + + 707 + + + + onCheckButtonChange: + + + + 708 + + + + onCheckButtonChange: + + + + 709 + + + + onTextFiedChange: + + + + 710 + + + + onCheckButtonChange: + + + + 744 + + + + mSystemId + + + + 748 + + + + mSystemIdText + + + + 749 + + + + onTextFiedChange: + + + + 750 + + + + onCheckButtonChange: + + + + 766 + + + + mRestartFix + + + + 767 + + + + mArchText + + + + 845 + + + + onTextFiedChange: + + + + 846 + + + + mBusRatioText + + + + 849 + + + + onTextFiedChange: + + + + 850 + + + + mCPUText + + + + 853 + + + + onTextFiedChange: + + + + 854 + + + + mDebugText + + + + 865 + + + + onTextFiedChange: + + + + 866 + + + + mIOText + + + + 877 + + + + onTextFiedChange: + + + + 878 + + + + mSystemType + + + + 1208 + + + + onCheckButtonChange: + + + + 1209 + + + + mSystemTypeText + + + + 1210 + + + + onTextFiedChange: + + + + 1211 + + + + onCheckButtonChange: + + + + 1241 + + + + onCheckButtonChange: + + + + 1244 + + + + mGenerateCStates + + + + 1245 + + + + mGeneratePStates + + + + 1246 + + + + mEfiInject + + + + 789 + + + + onCheckButtonChange: + + + + 792 + + + + mCurrentGfxInjection + + + + 796 + + + + onCheckButtonChange: + + + + 797 + + + + mEfiInjectText + + + + 824 + + + + onTextFiedChange: + + + + 825 + + + + mEditSmbios + + + + 835 + + + + onCheckButtonChange: + + + + 836 + + + + onCheckButtonChange: + + + + 1218 + + + + mExtractACPITables + + + + 1219 + + + + onCheckButtonChange: + + + + 1426 + + + + mAppleSmbios + + + + 1427 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 910 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 909 + + + + value: bundleVersionNumber + + + + + + value: bundleVersionNumber + value + bundleVersionNumber + 2 + + + 913 + + + + delegate + + + + 971 + + + + dataSource + + + + 974 + + + + mMenuName + + + + 970 + + + + mPartitionImgColumn + + + + 975 + + + + mPartitionNameColumn + + + + 976 + + + + mPartitionIDColumn + + + + 977 + + + + mFileSystemColumn + + + + 978 + + + + mPartitionsTable + + + + 980 + + + + mBootFrom + + + + 981 + + + + mBootFlags + + + + 983 + + + + mPeripherals + + + + 984 + + + + mAdvanced + + + + 985 + + + + mEfiInject + + + + 986 + + + + mSmbios + + + + 987 + + + + mAbout + + + + 988 + + + + mTabViewPanes + + + + 989 + + + + mTabViewPanesSelect + + + + 994 + + + + mBootSetup + + + + 1152 + + + + mMenuIcon + + + + 1215 + + + + mPartitionUIDColumn + + + + 1252 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 12 + + + YES + + + + PrefPane + + + 6 + + + YES + + + + + + + + + + + -3 + + + Application + + + 112 + + + ChameleonPrefPane + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 788 + + + + + 834 + + + + + 893 + + + + + 897 + + + + + 947 + + + YES + + + + + + + + 948 + + + + + 949 + + + + + 950 + + + YES + + + + + + + 952 + + + YES + + + + + + 953 + + + + + 961 + + + + + 172 + + + YES + + + + + + + + + + + + + 920 + + + YES + + + + + + 921 + + + + + 995 + + + YES + + + + + + 996 + + + + + 136 + + + YES + + + + + 173 + + + YES + + + + + + 174 + + + YES + + + + + + + + + 1010 + + + YES + + + + + + 186 + + + YES + + + + + + 187 + + + + + 189 + + + YES + + + + + + 190 + + + + + 441 + + + YES + + + + + + 442 + + + YES + + + + + + + + + 1006 + + + + + 536 + + + YES + + + + + + + + 541 + + + YES + + + + + + 544 + + + + + 542 + + + YES + + + + + + 543 + + + + + 540 + + + YES + + + + + + 545 + + + + + 537 + + + YES + + + + + + + + + 538 + + + YES + + + + + + 539 + + + + + 859 + + + YES + + + + + + 860 + + + + + 768 + + + YES + + + + + + 769 + + + + + 456 + + + YES + + + + + + + + + + + + + 457 + + + YES + + + + + + 464 + + + + + 458 + + + YES + + + + + + 463 + + + + + 450 + + + YES + + + + + + 455 + + + + + 487 + + + YES + + + + + + 488 + + + + + 452 + + + YES + + + + + + 453 + + + + + 839 + + + YES + + + + + + 840 + + + + + 478 + + + YES + + + + + + 479 + + + YES + + + + + + + 511 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + + + 493 + + + YES + + + + + + 506 + + + + + 491 + + + YES + + + + + + 508 + + + + + 496 + + + YES + + + + + + 503 + + + + + 497 + + + YES + + + + + + 502 + + + + + 863 + + + YES + + + + + + 864 + + + + + 489 + + + YES + + + + + + 510 + + + + + 494 + + + YES + + + + + + 505 + + + + + 495 + + + YES + + + + + + 504 + + + + + 867 + + + YES + + + + + + 868 + + + + + 851 + + + YES + + + + + + 852 + + + + + 764 + + + YES + + + + + + 765 + + + + + 586 + + + YES + + + + + + 587 + + + + + 738 + + + YES + + + + + + 739 + + + + + 847 + + + YES + + + + + + 848 + + + + + 492 + + + YES + + + + + + 507 + + + + + 843 + + + YES + + + + + + 844 + + + + + 490 + + + YES + + + + + + 509 + + + + + 741 + + + YES + + + + + + 742 + + + + + 780 + + + YES + + + + + + 781 + + + YES + + + + + + + 793 + + + YES + + + + + + + + 820 + + + YES + + + + + + + + 818 + + + YES + + + + + + 819 + + + + + 822 + + + + + 821 + + + + + 794 + + + YES + + + + + + 795 + + + + + 786 + + + YES + + + + + + 787 + + + + + 1004 + + + + + 828 + + + YES + + + + + + 829 + + + YES + + + + + + 1003 + + + YES + + + + + + + + + + 905 + + + YES + + + + + + 906 + + + YES + + + + + + + + + + 907 + + + YES + + + + + + 908 + + + + + 1002 + + + + + 911 + + + YES + + + + + + 912 + + + + + 914 + + + YES + + + + + + 915 + + + + + 918 + + + YES + + + + + + 919 + + + + + 284 + + + YES + + + + + + 285 + + + YES + + + + + + + + 1007 + + + + + 569 + + + YES + + + + + + + + 571 + + + YES + + + + + + 574 + + + + + 570 + + + YES + + + + + + 575 + + + + + 572 + + + YES + + + + + + 573 + + + + + 286 + + + YES + + + + + + + + + + + + + + + + + 855 + + + YES + + + + + + 856 + + + + + 588 + + + YES + + + + + + 589 + + + + + 302 + + + YES + + + + + + 313 + + + + + 776 + + + YES + + + + + + 777 + + + + + 372 + + + YES + + + + + + 373 + + + + + 292 + + + YES + + + + + + 323 + + + + + 294 + + + YES + + + + + + 321 + + + + + 293 + + + YES + + + + + + 322 + + + + + 300 + + + YES + + + + + + 315 + + + + + 301 + + + YES + + + + + + 314 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + + + 1111 + + + YES + + + + + + 1112 + + + YES + + + + + + 1115 + + + YES + + + + + + + + 1113 + + + YES + + + + + + + + + + + 1128 + + + YES + + + + + + 1129 + + + YES + + + + + + 1133 + + + YES + + + + + + 1132 + + + YES + + + + + + 1131 + + + YES + + + + + + 1130 + + + YES + + + + + + 1137 + + + + + 1136 + + + + + 1135 + + + + + 1134 + + + + + 1138 + + + + + 1139 + + + + + 1165 + + + YES + + + + + + + + + + + 1171 + + + YES + + + + + + 1170 + + + YES + + + + + + 1169 + + + YES + + + + + + 1168 + + + YES + + + + + + 1167 + + + YES + + + + + + 1166 + + + YES + + + + + + 1177 + + + + + 1176 + + + + + 1175 + + + + + 1174 + + + + + 1173 + + + + + 1172 + + + + + 1192 + + + YES + + + + + + 1193 + + + YES + + + + + + 1194 + + + + + 1195 + + + + + 1196 + + + YES + + + + + + 1197 + + + YES + + + + + + 1198 + + + + + 1199 + + + + + 1005 + + + YES + + + + + + 1200 + + + YES + + + + + + 1201 + + + + + 110 + + + YES + + + + + + 111 + + + + + 1212 + + + YES + + + + + + 1214 + + + + + 937 + + + YES + + + + + + 99 + + + YES + + + + + + + + + 103 + + + + + 102 + + + YES + + + + + + + + + + 101 + + + + + 100 + + + + + 158 + + + YES + + + + + + 104 + + + YES + + + + + + 128 + + + YES + + + + + + 105 + + + YES + + + + + + 106 + + + + + 129 + + + + + 107 + + + + + 160 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 563 + + + YES + + + + + + 562 + + + YES + + + + + + 590 + + + YES + + + + + + 591 + + + + + 567 + + + + + 566 + + + + + 568 + + + + + 1239 + + + YES + + + + + + 1240 + + + + + 1242 + + + YES + + + + + + 1243 + + + + + 1249 + + + YES + + + + + + 1250 + + + + + 1254 + + + YES + + + + + + + + + + 1276 + + + YES + + + + + + 1277 + + + + + 1273 + + + YES + + + + + + 1274 + + + + + 1279 + + + YES + + + + + + 1280 + + + + + 1291 + + + YES + + + + + + 1292 + + + + + 1304 + + + YES + + + + + + 1305 + + + + + 1309 + + + YES + + + + + 523 + + + YES + + + + + + + + + + + 529 + + + YES + + + + + + 555 + + + YES + + + + + + 527 + + + YES + + + + + + 554 + + + YES + + + + + + 528 + + + YES + + + + + + 553 + + + YES + + + + + + 558 + + + + + 531 + + + + + 557 + + + + + 532 + + + + + 556 + + + + + 530 + + + + + 830 + + + YES + + + + + + 831 + + + + + 1216 + + + YES + + + + + + 1217 + + + + + 1345 + + + YES + + + + + + 1346 + + + + + 1352 + + + + + 1424 + + + YES + + + + + + 1425 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 100.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 101.IBPluginDependency + 1010.IBPluginDependency + 102.CustomClassName + 102.IBPluginDependency + 103.IBPluginDependency + 104.IBPluginDependency + 105.IBPluginDependency + 106.CustomClassName + 106.IBPluginDependency + 107.CustomClassName + 107.IBPluginDependency + 110.IBAttributePlaceholdersKey + 110.IBPluginDependency + 111.IBPluginDependency + 1111.IBPluginDependency + 1112.IBAttributePlaceholdersKey + 1112.IBPluginDependency + 1113.CustomClassName + 1113.IBPluginDependency + 1115.IBPluginDependency + 112.IBPluginDependency + 1128.IBPluginDependency + 1129.IBAttributePlaceholdersKey + 1129.IBPluginDependency + 1130.IBPluginDependency + 1131.IBAttributePlaceholdersKey + 1131.IBPluginDependency + 1132.IBAttributePlaceholdersKey + 1132.IBPluginDependency + 1133.IBPluginDependency + 1134.IBAttributePlaceholdersKey + 1134.IBPluginDependency + 1135.IBPluginDependency + 1136.IBPluginDependency + 1137.IBPluginDependency + 1138.IBPluginDependency + 1139.IBAttributePlaceholdersKey + 1139.IBPluginDependency + 1165.CustomClassName + 1165.IBPluginDependency + 1166.IBAttributePlaceholdersKey + 1166.IBPluginDependency + 1167.IBAttributePlaceholdersKey + 1167.IBPluginDependency + 1168.IBAttributePlaceholdersKey + 1168.IBPluginDependency + 1169.IBAttributePlaceholdersKey + 1169.IBPluginDependency + 1170.IBAttributePlaceholdersKey + 1170.IBPluginDependency + 1171.IBAttributePlaceholdersKey + 1171.IBPluginDependency + 1172.IBAttributePlaceholdersKey + 1172.IBPluginDependency + 1173.IBPluginDependency + 1174.IBPluginDependency + 1175.IBPluginDependency + 1176.IBPluginDependency + 1177.IBPluginDependency + 1192.IBAttributePlaceholdersKey + 1192.IBPluginDependency + 1193.IBPluginDependency + 1194.IBComboBoxObjectValuesKey.objectValues + 1194.IBPluginDependency + 1195.IBPluginDependency + 1196.IBAttributePlaceholdersKey + 1196.IBPluginDependency + 1197.IBAttributePlaceholdersKey + 1197.IBPluginDependency + 1198.IBPluginDependency + 1199.IBPluginDependency + 12.IBPluginDependency + 12.IBWindowTemplateEditedContentRect + 1200.IBPluginDependency + 1201.IBComboBoxObjectValuesKey.objectValues + 1201.IBPluginDependency + 1212.IBPluginDependency + 1214.IBPluginDependency + 1216.IBPluginDependency + 1217.IBPluginDependency + 1239.IBAttributePlaceholdersKey + 1239.IBPluginDependency + 1240.IBPluginDependency + 1242.IBAttributePlaceholdersKey + 1242.IBPluginDependency + 1243.IBPluginDependency + 1249.IBPluginDependency + 1250.CustomClassName + 1250.IBPluginDependency + 1254.CustomClassName + 1254.IBPluginDependency + 1273.IBAttributePlaceholdersKey + 1273.IBPluginDependency + 1274.IBPluginDependency + 1276.IBAttributePlaceholdersKey + 1276.IBPluginDependency + 1277.IBPluginDependency + 1279.IBAttributePlaceholdersKey + 1279.IBPluginDependency + 128.IBPluginDependency + 1280.IBPluginDependency + 129.CustomClassName + 129.IBPluginDependency + 1291.IBAttributePlaceholdersKey + 1291.IBPluginDependency + 1292.IBPluginDependency + 1304.IBAttributePlaceholdersKey + 1304.IBPluginDependency + 1305.IBPluginDependency + 1309.CustomClassName + 1309.IBPluginDependency + 1345.IBPluginDependency + 1346.IBPluginDependency + 1352.IBPluginDependency + 136.IBPluginDependency + 1424.IBPluginDependency + 1425.IBPluginDependency + 158.IBPluginDependency + 160.IBPluginDependency + 172.IBAttributePlaceholdersKey + 172.IBPluginDependency + 173.IBPluginDependency + 174.IBPluginDependency + 186.IBAttributePlaceholdersKey + 186.IBPluginDependency + 187.IBPluginDependency + 189.IBAttributePlaceholdersKey + 189.IBPluginDependency + 190.IBPluginDependency + 284.IBPluginDependency + 285.IBPluginDependency + 286.CustomClassName + 286.IBPluginDependency + 292.IBAttributePlaceholdersKey + 292.IBPluginDependency + 293.IBAttributePlaceholdersKey + 293.IBPluginDependency + 294.IBAttributePlaceholdersKey + 294.IBPluginDependency + 300.IBAttributePlaceholdersKey + 300.IBPluginDependency + 301.IBAttributePlaceholdersKey + 301.IBPluginDependency + 302.IBAttributePlaceholdersKey + 302.IBPluginDependency + 313.IBPluginDependency + 314.IBPluginDependency + 315.IBPluginDependency + 321.IBPluginDependency + 322.IBPluginDependency + 323.IBPluginDependency + 372.IBAttributePlaceholdersKey + 372.IBPluginDependency + 373.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency + 450.IBAttributePlaceholdersKey + 450.IBPluginDependency + 452.IBAttributePlaceholdersKey + 452.IBPluginDependency + 453.IBPluginDependency + 455.IBPluginDependency + 456.CustomClassName + 456.IBPluginDependency + 456.IBUserGuides + 457.IBAttributePlaceholdersKey + 457.IBPluginDependency + 458.IBAttributePlaceholdersKey + 458.IBPluginDependency + 463.IBPluginDependency + 464.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency + 487.IBAttributePlaceholdersKey + 487.IBPluginDependency + 488.IBPluginDependency + 489.IBAttributePlaceholdersKey + 489.IBPluginDependency + 490.IBAttributePlaceholdersKey + 490.IBPluginDependency + 491.IBAttributePlaceholdersKey + 491.IBPluginDependency + 492.IBAttributePlaceholdersKey + 492.IBPluginDependency + 493.IBAttributePlaceholdersKey + 493.IBPluginDependency + 494.IBAttributePlaceholdersKey + 494.IBPluginDependency + 495.IBAttributePlaceholdersKey + 495.IBPluginDependency + 496.IBAttributePlaceholdersKey + 496.IBPluginDependency + 497.IBAttributePlaceholdersKey + 497.IBPluginDependency + 502.IBPluginDependency + 503.IBPluginDependency + 504.IBPluginDependency + 505.IBPluginDependency + 506.IBPluginDependency + 507.IBPluginDependency + 508.IBPluginDependency + 509.IBPluginDependency + 510.IBPluginDependency + 511.CustomClassName + 511.IBPluginDependency + 523.CustomClassName + 523.IBPluginDependency + 527.IBAttributePlaceholdersKey + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.CustomClassName + 536.IBPluginDependency + 537.CustomClassName + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBAttributePlaceholdersKey + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 560.CustomClassName + 560.IBPluginDependency + 561.IBAttributePlaceholdersKey + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.CustomClassName + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency + 6.IBPluginDependency + 6.IBViewIntegration.shadowBlurRadius + 6.IBViewIntegration.shadowColor + 6.IBViewIntegration.shadowOffsetHeight + 6.IBViewIntegration.shadowOffsetWidth + 738.IBAttributePlaceholdersKey + 738.IBPluginDependency + 739.IBPluginDependency + 741.IBAttributePlaceholdersKey + 741.IBPluginDependency + 742.IBPluginDependency + 764.IBAttributePlaceholdersKey + 764.IBPluginDependency + 765.IBPluginDependency + 768.IBAttributePlaceholdersKey + 768.IBPluginDependency + 769.IBPluginDependency + 776.IBAttributePlaceholdersKey + 776.IBPluginDependency + 777.IBPluginDependency + 780.IBPluginDependency + 781.IBPluginDependency + 786.IBAttributePlaceholdersKey + 786.IBPluginDependency + 787.IBPluginDependency + 788.IBPluginDependency + 793.CustomClassName + 793.IBPluginDependency + 794.IBPluginDependency + 795.IBPluginDependency + 818.IBPluginDependency + 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 830.IBPluginDependency + 831.IBPluginDependency + 834.IBPluginDependency + 839.IBPluginDependency + 840.IBComboBoxObjectValuesKey.objectValues + 840.IBPluginDependency + 843.IBPluginDependency + 844.IBComboBoxObjectValuesKey.objectValues + 844.IBPluginDependency + 847.IBPluginDependency + 848.IBComboBoxObjectValuesKey.objectValues + 848.IBPluginDependency + 851.IBPluginDependency + 852.IBComboBoxObjectValuesKey.objectValues + 852.IBPluginDependency + 855.IBPluginDependency + 856.IBComboBoxObjectValuesKey.objectValues + 856.IBPluginDependency + 859.IBAttributePlaceholdersKey + 859.IBPluginDependency + 860.IBPluginDependency + 863.IBPluginDependency + 864.IBComboBoxObjectValuesKey.objectValues + 864.IBPluginDependency + 867.IBPluginDependency + 868.IBComboBoxObjectValuesKey.objectValues + 868.IBPluginDependency + 869.IBAttributePlaceholdersKey + 869.IBPluginDependency + 870.IBPluginDependency + 872.IBPluginDependency + 873.IBComboBoxObjectValuesKey.objectValues + 873.IBPluginDependency + 893.IBPluginDependency + 897.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 914.IBPluginDependency + 915.IBPluginDependency + 918.IBPluginDependency + 919.IBPluginDependency + 920.IBPluginDependency + 920.IBViewIntegration.shadowBlurRadius + 920.IBViewIntegration.shadowColor + 920.IBViewIntegration.shadowOffsetHeight + 920.IBViewIntegration.shadowOffsetWidth + 921.IBPluginDependency + 937.CustomClassName + 937.IBPluginDependency + 947.IBPluginDependency + 947.IBViewIntegration.shadowBlurRadius + 947.IBViewIntegration.shadowColor + 947.IBViewIntegration.shadowOffsetHeight + 947.IBViewIntegration.shadowOffsetWidth + 948.IBPluginDependency + 948.IBShouldRemoveOnLegacySave + 949.IBPluginDependency + 949.IBShouldRemoveOnLegacySave + 950.IBPluginDependency + 952.IBPluginDependency + 953.CustomClassName + 953.IBPluginDependency + 961.IBPluginDependency + 99.IBAttributePlaceholdersKey + 99.IBPluginDependency + 995.IBPluginDependency + 996.IBPluginDependency + + + YES + 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 + CustomTableView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Shuts down the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0IHRoZSBib290IHBhcnRpdGlvbnMgaGQoeCx5KSB0byBoaWRlICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the boot partitions "hd(x,y) MyVolumeName " where 'x' is the disk number, 'y' the partition number and MyVolumeName is the alias you want to give to this partition. (i.e: useful for renaming System Reserved boot partition for Windows 7) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate ATI ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate Nvidia ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0 + 1 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Chameleon Extra folder location. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Folder location where the file 'cdboot' is located. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating your chameleon Extra folder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Creates a BootCD.iso file. When successfully run, a Chameleon Folder is created on your Desktop with that ISO to burn to a CD. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating the directory that contains the binary bootfile named 'cdboot'. It is needed for the image to build. Usaully in the sym/i386 subdirectory of your chameleon source distribution. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Put the sytem in Sleep mode + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in Single User Mode (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in verbose (text) mode, log info will be stored and accessible by the Console application (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Ignore Boot Configuration file (default: No). If set, then org.chameleon.Boot.plist will not be loaded during the boot, only defaults options will be set. + + + 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 + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + + 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 + + Use Wait to make the booter wait for a key press before it starts the mach kernel. Useful for debugging your boot configuration + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Show boot banner in GUI mode (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + ToolTip + + ToolTip + + Automatic device-properties generation for graphics cards (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the legacy (grey on white) apple logo (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable kernel debug mode flags (i.e 0x0144). + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + io 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 + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Skip the SSDT tables while relocating the ACPI tables (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI and UHCI fixes (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the UHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force using the sleepimage (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Scan the drive only where the booter got loaded from (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Prompts for enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force to boot in safe mode. Useful in certains situations (i.e: when one kexts hangs the system) + + + 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 + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Override the automatic pciroot detection, and manually inject a pciroot number at boot time + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable GUI at boot time. (Enabled by Default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets additional device properties like gfx card efi injection, network . + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + YES + 800x600x32 + 1024x768x32 + 1280x800x32 + 1280x1024x32 + 1440x900x32 + 1680x1050x32 + 1920x1080x32 + 1920x1200x32 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + X86_64 + i386 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 20 + 21 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 4 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 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 + + YES + 0x12A + 0x144 + 0x14E + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0x80 + 0xFFFFFFFF + + 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 + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Click on a partition to make it the default boot partition. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + + + + YES + + + + + 1427 + + + + YES + + AboutController + NSObject + + onAbout: + id + + + onAbout: + + onAbout: + id + + + + mAboutDlg + NSPanel + + + mAboutDlg + + mAboutDlg + NSPanel + + + + IBProjectSource + ./Classes/AboutController.h + + + + AdvancedSetupController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSButton + NSTextField + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + + mArch + NSButton + + + mArchText + NSComboBox + + + mBusRatio + NSButton + + + mBusRatioText + NSComboBox + + + mCPU + NSButton + + + mCPUText + NSComboBox + + + mDSDTDrop + NSButton + + + mDSDTFile + NSButton + + + mDSDTFileText + NSTextField + + + mDebug + NSButton + + + mDebugText + NSComboBox + + + mDeviceRd + NSButton + + + mDeviceRdText + NSTextField + + + mDisableKextsBlacklisting + NSButton + + + mForceWake + NSButton + + + mGenerateCStates + NSButton + + + mGeneratePStates + NSButton + + + mIO + NSButton + + + mIOText + NSComboBox + + + mKernel + NSButton + + + mKernelText + NSTextField + + + mRestartFix + NSButton + + + mSMBIOSDefaults + NSButton + + + mSMBIOSFile + NSButton + + + mSMBIOSFileText + NSTextField + + + mSystemId + NSButton + + + mSystemIdText + NSTextField + + + mSystemType + NSButton + + + mSystemTypeText + NSComboBox + + + mWake + NSButton + + + mWakeImage + NSButton + + + mWakeImageText + NSTextField + + + + + IBProjectSource + ./Classes/AdvancedSetupController.h + + + + BootFlagsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + + mIgnoreBootConfig + NSButton + + + mInstantMenu + NSButton + + + mQuietBoot + NSButton + + + mRescan + NSButton + + + mRescanPrompt + NSButton + + + mRescanSingleDrive + NSButton + + + mSafeBoot + NSButton + + + mSingleUser + NSButton + + + mTheme + NSButton + + + mThemeText + NSComboBox + + + mTimeOut + NSButton + + + mTimeOutText + NSTextField + + + mUseGUI + NSButton + + + mVerbose + NSButton + + + mWait + NSButton + + + + + IBProjectSource + ./Classes/BootFlagsController.h + + + + BootSetupController + PreferencesControllerBase + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + id + NSButton + id + id + id + NSTextField + + + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + + onCdBootConfigPath: + id + + + onCheckButtonChange: + NSButton + + + onCreateBootCD: + id + + + onExtraConfigPath: + id + + + onForceBootConfigPath: + id + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + + mBootCdbootPath + NSButton + + + mBootCdbootPathText + NSTextField + + + mBootConfigPath + NSButton + + + mBootConfigPathText + NSTextField + + + mBootExtraPath + NSButton + + + mBootExtraPathText + NSTextField + + + mDefaultPartition + NSButton + + + mDefaultPartitionText + NSTextField + + + mFreezeParts + NSButton + + + mHidePartition + NSButton + + + mHidePartitionText + NSTextField + + + mInjectFrozenParts + NSButton + + + mRenamePartition + NSButton + + + mRenamePartitionText + NSTextField + + + mSwapHD01 + NSButton + + + mSwapHD02 + NSButton + + + + + IBProjectSource + ./Classes/BootSetupController.h + + + + CenteredTextFieldCell + NSTextFieldCell + + IBProjectSource + ./Classes/CenteredTextFieldCell.h + + + + ChameleonPrefPane + NSPreferencePane + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + id + id + id + + + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + + onRestart: + id + + + onShutdown: + id + + + onSleep: + id + + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + SFAuthorizationView + NSColorWell + NSColorWell + RoundedBox + RoundedBox + NSColorWell + NSColorWell + NSBox + NSButton + NSButton + NSButton + NSTextField + NSView + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + + authView + SFAuthorizationView + + + backgroundColorWell + NSColorWell + + + borderColorWell + NSColorWell + + + box + RoundedBox + + + footer + RoundedBox + + + gradientEndColorWell + NSColorWell + + + gradientStartColorWell + NSColorWell + + + mOptions + NSBox + + + mRestartButton + NSButton + + + mShutDownButton + NSButton + + + mSleepButton + NSButton + + + mStatusText + NSTextField + + + mainView + NSView + + + + + IBProjectSource + ./Classes/ChameleonPrefPane.h + + + + CustomTableView + NSTableView + + IBProjectSource + ./Classes/CustomTableView.h + + + + EfiInjectController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + NSButton + NSButton + NSTextField + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + + mCurrentGfxInjection + NSButton + + + mEfiInject + NSButton + + + mEfiInjectText + NSTextField + + + + + IBProjectSource + ./Classes/EfiInjectController.h + + + + NSPreferencePane + NSObject + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + NSView + NSView + NSView + NSWindow + + + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + + IBProjectSource + ./Classes/NSPreferencePane.h + + + + PeripheralsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + + mAtiVideoROM + NSButton + + + mBootBanner + NSButton + + + mEHCIacquire + NSButton + + + mEthernetBuiltIn + NSButton + + + mForceHPET + NSButton + + + mGraphicsEnabler + NSButton + + + mGraphicsMode + NSButton + + + mGraphicsModeText + NSComboBox + + + mLegacyLogo + NSButton + + + mNvidiaVideoROM + NSButton + + + mPciRoot + NSButton + + + mPciRootText + NSTextField + + + mUHCIreset + NSButton + + + mUSBBusFix + NSButton + + + mVBIOS + NSButton + + + + + IBProjectSource + ./Classes/PeripheralsController.h + + + + PreferencesControllerBase + NSObject + + IBProjectSource + ./Classes/PreferencesControllerBase.h + + + + RoundedBox + NSBox + + IBProjectSource + ./Classes/RoundedBox.h + + + + SFAuthorizationView + NSView + + IBProjectSource + ./Classes/SFAuthorizationView.h + + + + SmbiosController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + NSButton + NSButton + NSButton + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + + mAppleSmbios + NSButton + + + mEditSmbios + NSButton + + + mExtractACPITables + NSButton + + + + + IBProjectSource + ./Classes/SmbiosController.h + + + + TableViewsController + NSObject + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + CustomTableView + NSTabViewItem + NSTabViewItem + NSTabView + NSTableView + + + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + + mAbout + NSTabViewItem + + + mAdvanced + NSTabViewItem + + + mBootFlags + NSTabViewItem + + + mBootFrom + NSTabViewItem + + + mBootSetup + NSTabViewItem + + + mEfiInject + NSTabViewItem + + + mFileSystemColumn + NSTableColumn + + + mHideOrViewColumn + NSTableColumn + + + mMenuIcon + NSTableColumn + + + mMenuName + NSTableColumn + + + mPartitionIDColumn + NSTableColumn + + + mPartitionImgColumn + NSTableColumn + + + mPartitionNameColumn + NSTableColumn + + + mPartitionUIDColumn + NSTableColumn + + + mPartitionsTable + CustomTableView + + + mPeripherals + NSTabViewItem + + + mSmbios + NSTabViewItem + + + mTabViewPanes + NSTabView + + + mTabViewPanesSelect + NSTableView + + + + + IBProjectSource + ./Classes/TableViewsController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + YES + + YES + NSSwitch + background + cham + footer + name + + + YES + {15, 15} + {130, 1} + {344, 378} + {1, 34} + {262, 45} + + + + Index: branches/ErmaC/ChameleonPrefPane/APPLE_LICENSE =================================================================== --- branches/ErmaC/ChameleonPrefPane/APPLE_LICENSE (revision 0) +++ branches/ErmaC/ChameleonPrefPane/APPLE_LICENSE (revision 396) @@ -0,0 +1,367 @@ +APPLE PUBLIC SOURCE LICENSE +Version 2.0 - August 6, 2003 + +Please read this License carefully before downloading this software. +By downloading or using this software, you are agreeing to be bound by +the terms of this License. If you do not or cannot agree to the terms +of this License, please do not download or use the software. + +1. General; Definitions. This License applies to any program or other +work which Apple Computer, Inc. ("Apple") makes publicly available and +which contains a notice placed by Apple identifying such program or +work as "Original Code" and stating that it is subject to the terms of +this Apple Public Source License version 2.0 ("License"). As used in +this License: + +1.1 "Applicable Patent Rights" mean: (a) in the case where Apple is +the grantor of rights, (i) claims of patents that are now or hereafter +acquired, owned by or assigned to Apple and (ii) that cover subject +matter contained in the Original Code, but only to the extent +necessary to use, reproduce and/or distribute the Original Code +without infringement; and (b) in the case where You are the grantor of +rights, (i) claims of patents that are now or hereafter acquired, +owned by or assigned to You and (ii) that cover subject matter in Your +Modifications, taken alone or in combination with Original Code. + +1.2 "Contributor" means any person or entity that creates or +contributes to the creation of Modifications. + +1.3 "Covered Code" means the Original Code, Modifications, the +combination of Original Code and any Modifications, and/or any +respective portions thereof. + +1.4 "Externally Deploy" means: (a) to sublicense, distribute or +otherwise make Covered Code available, directly or indirectly, to +anyone other than You; and/or (b) to use Covered Code, alone or as +part of a Larger Work, in any way to provide a service, including but +not limited to delivery of content, through electronic communication +with a client other than You. + +1.5 "Larger Work" means a work which combines Covered Code or portions +thereof with code not governed by the terms of this License. + +1.6 "Modifications" mean any addition to, deletion from, and/or change +to, the substance and/or structure of the Original Code, any previous +Modifications, the combination of Original Code and any previous +Modifications, and/or any respective portions thereof. When code is +released as a series of files, a Modification is: (a) any addition to +or deletion from the contents of a file containing Covered Code; +and/or (b) any new file or other representation of computer program +statements that contains any part of Covered Code. + +1.7 "Original Code" means (a) the Source Code of a program or other +work as originally made available by Apple under this License, +including the Source Code of any updates or upgrades to such programs +or works made available by Apple under this License, and that has been +expressly identified by Apple as such in the header file(s) of such +work; and (b) the object code compiled from such Source Code and +originally made available by Apple under this License. + +1.8 "Source Code" means the human readable form of a program or other +work that is suitable for making modifications to it, including all +modules it contains, plus any associated interface definition files, +scripts used to control compilation and installation of an executable +(object code). + +1.9 "You" or "Your" means an individual or a legal entity exercising +rights under this License. For legal entities, "You" or "Your" +includes any entity which controls, is controlled by, or is under +common control with, You, where "control" means (a) the power, direct +or indirect, to cause the direction or management of such entity, +whether by contract or otherwise, or (b) ownership of fifty percent +(50%) or more of the outstanding shares or beneficial ownership of +such entity. + +2. Permitted Uses; Conditions & Restrictions. Subject to the terms +and conditions of this License, Apple hereby grants You, effective on +the date You accept this License and download the Original Code, a +world-wide, royalty-free, non-exclusive license, to the extent of +Apple's Applicable Patent Rights and copyrights covering the Original +Code, to do the following: + +2.1 Unmodified Code. You may use, reproduce, display, perform, +internally distribute within Your organization, and Externally Deploy +verbatim, unmodified copies of the Original Code, for commercial or +non-commercial purposes, provided that in each instance: + +(a) You must retain and reproduce in all copies of Original Code the +copyright and other proprietary notices and disclaimers of Apple as +they appear in the Original Code, and keep intact all notices in the +Original Code that refer to this License; and + +(b) You must include a copy of this License with every copy of Source +Code of Covered Code and documentation You distribute or Externally +Deploy, and You may not offer or impose any terms on such Source Code +that alter or restrict this License or the recipients' rights +hereunder, except as permitted under Section 6. + +2.2 Modified Code. You may modify Covered Code and use, reproduce, +display, perform, internally distribute within Your organization, and +Externally Deploy Your Modifications and Covered Code, for commercial +or non-commercial purposes, provided that in each instance You also +meet all of these conditions: + +(a) You must satisfy all the conditions of Section 2.1 with respect to +the Source Code of the Covered Code; + +(b) You must duplicate, to the extent it does not already exist, the +notice in Exhibit A in each file of the Source Code of all Your +Modifications, and cause the modified files to carry prominent notices +stating that You changed the files and the date of any change; and + +(c) If You Externally Deploy Your Modifications, You must make +Source Code of all Your Externally Deployed Modifications either +available to those to whom You have Externally Deployed Your +Modifications, or publicly available. Source Code of Your Externally +Deployed Modifications must be released under the terms set forth in +this License, including the license grants set forth in Section 3 +below, for as long as you Externally Deploy the Covered Code or twelve +(12) months from the date of initial External Deployment, whichever is +longer. You should preferably distribute the Source Code of Your +Externally Deployed Modifications electronically (e.g. download from a +web site). + +2.3 Distribution of Executable Versions. In addition, if You +Externally Deploy Covered Code (Original Code and/or Modifications) in +object code, executable form only, You must include a prominent +notice, in the code itself as well as in related documentation, +stating that Source Code of the Covered Code is available under the +terms of this License with information on how and where to obtain such +Source Code. + +2.4 Third Party Rights. You expressly acknowledge and agree that +although Apple and each Contributor grants the licenses to their +respective portions of the Covered Code set forth herein, no +assurances are provided by Apple or any Contributor that the Covered +Code does not infringe the patent or other intellectual property +rights of any other entity. Apple and each Contributor disclaim any +liability to You for claims brought by any other entity based on +infringement of intellectual property rights or otherwise. As a +condition to exercising the rights and licenses granted hereunder, You +hereby assume sole responsibility to secure any other intellectual +property rights needed, if any. For example, if a third party patent +license is required to allow You to distribute the Covered Code, it is +Your responsibility to acquire that license before distributing the +Covered Code. + +3. Your Grants. In consideration of, and as a condition to, the +licenses granted to You under this License, You hereby grant to any +person or entity receiving or distributing Covered Code under this +License a non-exclusive, royalty-free, perpetual, irrevocable license, +under Your Applicable Patent Rights and other intellectual property +rights (other than patent) owned or controlled by You, to use, +reproduce, display, perform, modify, sublicense, distribute and +Externally Deploy Your Modifications of the same scope and extent as +Apple's licenses under Sections 2.1 and 2.2 above. + +4. Larger Works. You may create a Larger Work by combining Covered +Code with other code not governed by the terms of this License and +distribute the Larger Work as a single product. In each such instance, +You must make sure the requirements of this License are fulfilled for +the Covered Code or any portion thereof. + +5. Limitations on Patent License. Except as expressly stated in +Section 2, no other patent rights, express or implied, are granted by +Apple herein. Modifications and/or Larger Works may require additional +patent licenses from Apple which Apple may grant in its sole +discretion. + +6. Additional Terms. You may choose to offer, and to charge a fee for, +warranty, support, indemnity or liability obligations and/or other +rights consistent with the scope of the license granted herein +("Additional Terms") to one or more recipients of Covered Code. +However, You may do so only on Your own behalf and as Your sole +responsibility, and not on behalf of Apple or any Contributor. You +must obtain the recipient's agreement that any such Additional Terms +are offered by You alone, and You hereby agree to indemnify, defend +and hold Apple and every Contributor harmless for any liability +incurred by or claims asserted against Apple or such Contributor by +reason of any such Additional Terms. + +7. Versions of the License. Apple may publish revised and/or new +versions of this License from time to time. Each version will be given +a distinguishing version number. Once Original Code has been published +under a particular version of this License, You may continue to use it +under the terms of that version. You may also choose to use such +Original Code under the terms of any subsequent version of this +License published by Apple. No one other than Apple has the right to +modify the terms applicable to Covered Code created under this +License. + +8. NO WARRANTY OR SUPPORT. The Covered Code may contain in whole or in +part pre-release, untested, or not fully tested works. The Covered +Code may contain errors that could cause failures or loss of data, and +may be incomplete or contain inaccuracies. You expressly acknowledge +and agree that use of the Covered Code, or any portion thereof, is at +Your sole and entire risk. THE COVERED CODE IS PROVIDED "AS IS" AND +WITHOUT WARRANTY, UPGRADES OR SUPPORT OF ANY KIND AND APPLE AND +APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE +PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM +ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT +NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF +MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR +PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NONINFRINGEMENT OF THIRD +PARTY RIGHTS. APPLE AND EACH CONTRIBUTOR DOES NOT WARRANT AGAINST +INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE +FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, +THAT THE OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR +ERROR-FREE, OR THAT DEFECTS IN THE COVERED CODE WILL BE CORRECTED. NO +ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE, AN APPLE +AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR SHALL CREATE A WARRANTY. +You acknowledge that the Covered Code is not intended for use in the +operation of nuclear facilities, aircraft navigation, communication +systems, or air traffic control machines in which case the failure of +the Covered Code could lead to death, personal injury, or severe +physical or environmental damage. + +9. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO +EVENT SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, +SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING +TO THIS LICENSE OR YOUR USE OR INABILITY TO USE THE COVERED CODE, OR +ANY PORTION THEREOF, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, +TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR OTHERWISE, EVEN IF +APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY +REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF +INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY +TO YOU. In no event shall Apple's total liability to You for all +damages (other than as may be required by applicable law) under this +License exceed the amount of fifty dollars ($50.00). + +10. Trademarks. This License does not grant any rights to use the +trademarks or trade names "Apple", "Apple Computer", "Mac", "Mac OS", +"QuickTime", "QuickTime Streaming Server" or any other trademarks, +service marks, logos or trade names belonging to Apple (collectively +"Apple Marks") or to any trademark, service mark, logo or trade name +belonging to any Contributor. You agree not to use any Apple Marks in +or as part of the name of products derived from the Original Code or +to endorse or promote products derived from the Original Code other +than as expressly permitted by and in strict compliance at all times +with Apple's third party trademark usage guidelines which are posted +at http://www.apple.com/legal/guidelinesfor3rdparties.html. + +11. Ownership. Subject to the licenses granted under this License, +each Contributor retains all rights, title and interest in and to any +Modifications made by such Contributor. Apple retains all rights, +title and interest in and to the Original Code and any Modifications +made by or on behalf of Apple ("Apple Modifications"), and such Apple +Modifications will not be automatically subject to this License. Apple +may, at its sole discretion, choose to license such Apple +Modifications under this License, or on different terms from those +contained in this License or may choose not to license them at all. + +12. Termination. + +12.1 Termination. This License and the rights granted hereunder will +terminate: + +(a) automatically without notice from Apple if You fail to comply with +any term(s) of this License and fail to cure such breach within 30 +days of becoming aware of such breach; + +(b) immediately in the event of the circumstances described in Section +13.5(b); or + +(c) automatically without notice from Apple if You, at any time during +the term of this License, commence an action for patent infringement +against Apple; provided that Apple did not first commence +an action for patent infringement against You in that instance. + +12.2 Effect of Termination. Upon termination, You agree to immediately +stop any further use, reproduction, modification, sublicensing and +distribution of the Covered Code. All sublicenses to the Covered Code +which have been properly granted prior to termination shall survive +any termination of this License. Provisions which, by their nature, +should remain in effect beyond the termination of this License shall +survive, including but not limited to Sections 3, 5, 8, 9, 10, 11, +12.2 and 13. No party will be liable to any other for compensation, +indemnity or damages of any sort solely as a result of terminating +this License in accordance with its terms, and termination of this +License will be without prejudice to any other right or remedy of +any party. + +13. Miscellaneous. + +13.1 Government End Users. The Covered Code is a "commercial item" as +defined in FAR 2.101. Government software and technical data rights in +the Covered Code include only those rights customarily provided to the +public as defined in this License. This customary commercial license +in technical data and software is provided in accordance with FAR +12.211 (Technical Data) and 12.212 (Computer Software) and, for +Department of Defense purchases, DFAR 252.227-7015 (Technical Data -- +Commercial Items) and 227.7202-3 (Rights in Commercial Computer +Software or Computer Software Documentation). Accordingly, all U.S. +Government End Users acquire Covered Code with only those rights set +forth herein. + +13.2 Relationship of Parties. This License will not be construed as +creating an agency, partnership, joint venture or any other form of +legal association between or among You, Apple or any Contributor, and +You will not represent to the contrary, whether expressly, by +implication, appearance or otherwise. + +13.3 Independent Development. Nothing in this License will impair +Apple's right to acquire, license, develop, have others develop for +it, market and/or distribute technology or products that perform the +same or similar functions as, or otherwise compete with, +Modifications, Larger Works, technology or products that You may +develop, produce, market or distribute. + +13.4 Waiver; Construction. Failure by Apple or any Contributor to +enforce any provision of this License will not be deemed a waiver of +future enforcement of that or any other provision. Any law or +regulation which provides that the language of a contract shall be +construed against the drafter will not apply to this License. + +13.5 Severability. (a) If for any reason a court of competent +jurisdiction finds any provision of this License, or portion thereof, +to be unenforceable, that provision of the License will be enforced to +the maximum extent permissible so as to effect the economic benefits +and intent of the parties, and the remainder of this License will +continue in full force and effect. (b) Notwithstanding the foregoing, +if applicable law prohibits or restricts You from fully and/or +specifically complying with Sections 2 and/or 3 or prevents the +enforceability of either of those Sections, this License will +immediately terminate and You must immediately discontinue any use of +the Covered Code and destroy all copies of it that are in your +possession or control. + +13.6 Dispute Resolution. Any litigation or other dispute resolution +between You and Apple relating to this License shall take place in the +Northern District of California, and You and Apple hereby consent to +the personal jurisdiction of, and venue in, the state and federal +courts within that District with respect to this License. The +application of the United Nations Convention on Contracts for the +International Sale of Goods is expressly excluded. + +13.7 Entire Agreement; Governing Law. This License constitutes the +entire agreement between the parties with respect to the subject +matter hereof. This License shall be governed by the laws of the +United States and the State of California, except that body of +California law concerning conflicts of law. + +Where You are located in the province of Quebec, Canada, the following +clause applies: The parties hereby confirm that they have requested +that this License and all related documents be drafted in English. Les +parties ont exige que le present contrat et tous les documents +connexes soient rediges en anglais. + +EXHIBIT A. + +"Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights +Reserved. + +This file contains Original Code and/or Modifications of Original Code +as defined in and that are subject to the Apple Public Source License +Version 2.0 (the 'License'). You may not use this file except in +compliance with the License. Please obtain a copy of the License at +http://www.opensource.apple.com/apsl/ and read it before using this +file. + +The Original Code and all software distributed under the License are +distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER +EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, +INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. +Please see the License for the specific language governing rights and +limitations under the License." Index: branches/ErmaC/ChameleonPrefPane/TODO =================================================================== --- branches/ErmaC/ChameleonPrefPane/TODO (revision 0) +++ branches/ErmaC/ChameleonPrefPane/TODO (revision 396) @@ -0,0 +1,9 @@ +Current version todo list +-------------------------- +- Implement the rescue cd booter iso generation features. (Now Implemented, need more testing+cosmetics) +- Solve chameleon vs osx uuid discrepancies in the format for now preventing the generalized use of uuid as the prefersd method because windows uuid have a different format in the boaterÉ +- Add WebView in About Panel for nicer credits. + +Priority bugs +-------------- +- Don't filter out soft-raids, which only have a disk identifier & no partition number Index: branches/ErmaC/ChameleonPrefPane/makebin =================================================================== --- branches/ErmaC/ChameleonPrefPane/makebin (revision 0) +++ branches/ErmaC/ChameleonPrefPane/makebin (revision 396) @@ -0,0 +1,13 @@ +#!/bin/sh +# +# Creates binaries archives from the current version stored in ./bin +# +# Usage: +# +# makebin +# +# (cd bin/OSX105; ditto -ck --keepParent ../../build/Release\ 10.5/Chameleon.prefPane Chameleon.zip) +(cd bin/OSX106; ditto -ck --keepParent ../../build/Release/*.prefPane Chameleon.zip) +if test "$1" != "" ; then + echo "$1" > bin/version +fi \ No newline at end of file Property changes on: branches/ErmaC/ChameleonPrefPane/makebin ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Italian.lproj/Chameleon.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Italian.lproj/Chameleon.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Italian.lproj/Localizable.strings =================================================================== --- branches/ErmaC/ChameleonPrefPane/Italian.lproj/Localizable.strings (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Italian.lproj/Localizable.strings (revision 396) @@ -0,0 +1,23 @@ +/* comment */ +"About" = "Info"; + +/* comment */ +"Advanced" = "Avanzate"; + +/* comment */ +"Boot_Flags" = "Opzioni Avvio"; + +/* comment */ +"Boot_From" = "Avvio Da ..."; + +/* comment */ +"Boot_Setup" = "Setup Avvio"; + +/* comment */ +"Efi_Inject" = "EFI String"; + +/* comment */ +"Peripherals" = "Periferiche"; + +/* comment */ +"Bios" = "BIOS"; \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/Italian.lproj/Chameleon.xib =================================================================== --- branches/ErmaC/ChameleonPrefPane/Italian.lproj/Chameleon.xib (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Italian.lproj/Chameleon.xib (revision 396) @@ -0,0 +1,11295 @@ + + + + 1050 + 11C74 + 1938 + 1138.23 + 567.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1938 + + + YES + NSButton + NSCustomObject + NSImageView + NSImageCell + NSTableView + NSCustomView + NSComboBox + NSComboBoxCell + NSTextField + NSViewController + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSTableColumn + NSBox + NSView + NSScrollView + NSTabViewItem + NSUserDefaultsController + NSScroller + NSTabView + NSTableHeaderView + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSPreferencePane + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{176, 644}, {668, 439}} + 1081606144 + << do not localize >> + NSWindow + + View + + + {224.66399999999999, 10} + + + 256 + + YES + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{0, 31}, {126, 408}} + + YES + + YES + + 2 + YES + + 130560 + 33554432 + + NSImage + background + + 0 + 1 + 0 + YES + + YES + + + + 4352 + + YES + + + 2304 + + YES + + + 4352 + {126, 410} + + 2 + YES + + + 256 + {{-26, 0}, {16, 17}} + + + YES + + 31 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + Icon + + LucidaGrande + 11 + 3100 + + + 6 + System + headerColor + + 3 + MQA + + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 67239424 + 33554432 + + LucidaGrande + 13 + 1044 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 89 + 10 + 1000 + + 75628096 + 2048 + Menu Name + + + + + + 1140981312 + 2048 + Text Cell + + LucidaGrande + 11 + 16 + + + + 4 + MSAwAA + + + 6 + System + controlTextColor + + + + 3 + YES + YES + + + + 3 + 2 + + 1 + MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTggMAA + + + 4 + MC44IDAAA + + 36 + 37781504 + + + 1 + 15 + 0 + YES + 1 + 1 + 1 + + + {126, 410} + + + 2 + + + 4 + MSAwAA + + 4 + + + + -2147483392 + {{-100, -100}, {15, 441}} + + + _doScroller: + 0.19473683834075928 + + + + -2147483392 + {{-100, -100}, {141, 15}} + + 1 + + _doScroller: + 0.99047619104385376 + + + {{0, 29}, {126, 410}} + + + YES + + YES + + 2 + 133120 + + + + QSAAAEEgAABCGAAAQhgAAA + + + + 268 + {{127, 31}, {541, 408}} + + YES + + subviews + + fromTop + fade + + YES + subtype + type + + + + 2 + + YES + + Item 1 + + + 292 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 8448 + {499, 257} + + 2 + YES + + + 256 + {499, 17} + + 2 + + + + + -2147483392 + {{457, 0}, {16, 17}} + 2 + + + YES + + 32 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + OS + + + + + + 67239424 + 33554432 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 157.640625 + 40 + 1000 + + 75628096 + 67110912 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772097 + 67110912 + Text Cell + + LucidaGrande-Bold + 14 + 16 + + + 1 + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + + YES + sr_Latn_RS + zh + ro_RO + be_BY + si_LK + fa_IR + en_BW + en_JM + ka_GE + zh_Hans_SG + mk_MK + en_HK + ar_LB + ii_CN + ru_UA + zh_Hant_HK + af + kl_GL + az_Latn + ar_SA + en_BE + bn_BD + en_MH + be + nl_NL + el_CY + az_Cyrl_AZ + ca + sr_Latn + om_ET + es_CL + bg + en_VI + es_VE + uz_Cyrl_UZ + fr_MC + am + zh_Hant + uz_Arab + en_GB + da + mr_IN + es_MX + es_PR + sq_AL + ar + fi_FI + bn + en_NA + de + as + cy_GB + en_IE + en_BZ + de_CH + en_US + sr_Latn_BA + te_IN + ar_QA + ar_TN + zh_Hans_MO + de_LI + fa + kw_GB + cs_CZ + hu_HU + zh_Hant_TW + uz_Latn + ta_IN + az + ar_EG + ar_SD + cs + ga + ar_LY + af_ZA + el + es_PA + es_CO + fi + en + ha + eo + gl_ES + cy + es_GT + ms_BN + ne_IN + he_IL + he + es + fo + en_CA + et + hr_HR + haw + gl + ar_SY + fr_SN + eu + uz_Arab_AF + id + fr + az_Latn_AZ + hi + zh_Hans_HK + ja + es_ES + ar_AE + uz_Latn_UZ + ca_ES + fr_BE + hi_IN + is_IS + ii + ps_AF + ka + tr_TR + it_CH + kk_Cyrl_KZ + gu + es_US + gv + en_PH + es_HN + hr + sv_FI + es_CR + haw_US + ar_MA + hu + nl_BE + th_TH + en_ZA + kk_Cyrl + is + it + es_PE + hy + de_DE + en_NZ + kk + kl + en_AU + pa_Guru + el_GR + km + kn + ko + nb + ar_IQ + es_PY + es_EC + en_US_POSIX + vi_VN + lv_LV + ne + kn_IN + es_AR + mk + ml + bg_BG + hy_AM_REVISED + kw + uk_UA + en_PK + pa + lt + sk_SK + nl + ur_PK + de_BE + lv + as_IN + mr + nn + en_ZW + fr_CA + ne_NP + ms + pl_PL + ti_ER + ja_JP + mt + fr_LU + om + sr_Cyrl_ME + en_IN + ga_IE + sw_KE + pl + kok + ur_IN + or + it_IT + hy_AM + ml_IN + en_SG + es_SV + am_ET + pt_BR + bn_IN + mt_MT + ar_KW + es_DO + pa_Arab + gv_GB + so_KE + ti_ET + ps + ms_MY + sl_SI + es_UY + en_MT + pt + sw_TZ + ta + nn_NO + sr_Cyrl_RS + si + te + ro + so_SO + sk + az_Cyrl + or_IN + sl + pa_Arab_PK + ru_RU + th + ar_DZ + ti + so + sr_Cyrl + es_NI + ha_Latn_NG + ru + en_TT + sq + fr_FR + sr + da_DK + es_BO + nb_NO + de_LU + uk + eu_ES + ar_JO + sv + so_ET + tr + sw + vi + zh_Hans_CN + km_KH + fa_AF + et_EE + ko_KR + pa_Guru_IN + sr_Latn_ME + so_DJ + ur + kok_IN + uz_Cyrl + zh_Hant_MO + zh_Hans + ar_YE + fo_FO + sv_SE + ha_Latn + de_AT + lt_LT + ar_OM + sr_Cyrl_BA + uz + ar_BH + id_ID + pt_PT + af_NA + om_KE + fr_CH + gu_IN + + + 3 + YES + YES + + + + 46.90234375 + 10 + 3.4028229999999999e+38 + + 75628096 + 134219776 + HD + + + + + + 69336641 + 134350848 + Text Cell + + + YES + 1 + + + + 3 + YES + + Name Displayed on the bootable partion during Chameleon boot + + + 207.3359375 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + UUID + + + + + + 67239488 + 264192 + Text Cell + + LucidaGrande + 9 + 3614 + + + + + + 3 + YES + YES + + + + 40 + 40 + 1000 + + 75628096 + 2048 + FS + + + + + + 69336641 + 133120 + Text Cell + + + YES + 1 + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 32 + -689963008 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {494, 257}} + + + 2 + + + 4 + + + + -2147483392 + {{457, 17}, {15, 227}} + + + _doScroller: + 0.94163424124513617 + + + + 256 + {{1, 259}, {494, 15}} + + YES + 1 + + _doScroller: + 0.98997995991983967 + + + + 2304 + + YES + + + {{1, 0}, {494, 17}} + + + 2 + + + 4 + + + {{6, 9}, {496, 275}} + + + 2 + 133810 + + + + + QSAAAEEgAABCCAAAQggAAA + + + {{1, 1}, {509, 294}} + + 2 + + + {{44, 217}, {511, 310}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Partition + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -140}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + 3 + MCAwAA + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{367, 8}, {158, 25}} + + 2 + YES + + 67239424 + 134217728 + Restart + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{112, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Shutdown + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{12, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Sleep + + + -2038284033 + 163 + + + 200 + 25 + + + + {541, 408} + + 2 + + Startup Disk + + 6 + System + controlColor + + + + + + Item 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 80}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Default Partition + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 12 + {{174, 79}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Hide Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 49}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 12 + {{16, 17}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Rename Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 19}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + {{1, 1}, {509, 114}} + + + 2 + + + {{44, 397}, {511, 130}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Partitions Management + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 94}, {267, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->1 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{305, 94}, {188, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->2 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 63}, {285, 18}} + + + 2 + YES + + 67239424 + 0 + Use Freezed Parts List + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 30}, {158, 18}} + + + 2 + YES + + 67239424 + 0 + Boot Config Path + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 31}, {323, 19}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{307, 64}, {190, 18}} + + + 2 + YES + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {509, 128}} + + + 2 + + + {{44, 240}, {511, 144}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Boot Selector Fixes + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{102, 37}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{102, 14}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{12, 39}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + Extra folder + + + -2034876161 + 193 + + LucidaGrande + 9 + 16 + + + + 200 + 25 + + + + + 268 + {{399, 27}, {100, 18}} + + + 2 + YES + + 67239424 + 134348800 + Create ISO + + + -2033434369 + 163 + + + 200 + 25 + + + + + 12 + {{12, 16}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + cdboot folder + + + -2034876161 + 193 + + + + 200 + 25 + + + + {{1, 1}, {509, 64}} + + + 2 + + + {{44, 148}, {511, 80}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Rescue Boot CD Creator + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-32, -140}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + Boot Setup + + + + + Item 3 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 102}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Verbose (-v) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 102}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Ignore Boot Config (-F) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 71}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Single User (-s) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 71}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Time Out + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 42}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Quiet Boot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 42}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Instant Menu + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 42}, {170, 23}} + + 2 + YES + + 67239424 + 0 + Wait + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{164, 107}, {161, 18}} + + 2 + YES + + 67239424 + 0 + Safe Boot (-x) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 12}, {164, 23}} + + 2 + YES + + 67239424 + 0 + Use GUI + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 70}, {46, 26}} + + 2 + 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 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 12 + {{16, 12}, {144, 23}} + + 2 + YES + + -2080244224 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 9}, {134, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 105} + + + 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, 1}, {509, 144}} + + 2 + + + {{13, 228}, {511, 160}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Flags + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{16, 13}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Rescan + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 13}, {174, 23}} + + 2 + YES + + 67239424 + 0 + Scan Single Drive + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 13}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Rescan Prompt + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 52}} + + 2 + + + {{13, 146}, {511, 68}} + + 2 + {0, 0} + + 67239424 + 0 + CDROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Boot Flags + + + + + Item 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{155, 17}, {208, 23}} + + 2 + YES + + 67239424 + 0 + Boot Banner + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 86}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Mode + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 86}, {134, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Enabler + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 51}, {134, 23}} + + 2 + YES + + 67239424 + 0 + VBIOS + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 17}, {141, 23}} + + 2 + YES + + 67239424 + 0 + Legacy Logo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{157, 83}, {181, 26}} + + 2 + 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 + + + + + + 268 + {{16, 53}, {141, 18}} + + 2 + YES + + 67239424 + 0 + Use Ati ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{155, 53}, {202, 18}} + + 2 + YES + + 67239424 + 0 + Use Nvidia ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 121}} + + 2 + + + {{13, 251}, {511, 137}} + + 2 + {0, 0} + + 67239424 + 0 + Graphics + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{361, 12}, {143, 23}} + + 2 + YES + + 67239424 + 0 + UHCI reset + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 12}, {173, 23}} + + 2 + YES + + 67239424 + 0 + USB Bus Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 12}, {169, 23}} + + 2 + YES + + 67239424 + 0 + EHCI acquire + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 44}} + + 2 + + + {{13, 177}, {511, 60}} + + 2 + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Ethernet Built-In + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 10}, {69, 23}} + + 2 + YES + + 67239424 + 0 + PciRoot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 12}, {138, 23}} + + 2 + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{268, 10}, {51, 26}} + + 2 + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + + YES + 0 + 1 + + + + + 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 + 1 + + + + + {{1, 1}, {509, 43}} + + 2 + + + {{13, 104}, {511, 59}} + + 2 + {0, 0} + + 67239424 + 0 + Ethernet + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Peripherals + + + + + Item 5 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 36 + + YES + + + 274 + + YES + + + 268 + {{161, 47}, {205, 23}} + + 2 + YES + + 67239424 + 0 + Force Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 19}, {146, 23}} + + 2 + YES + + 67239424 + 0 + Wake Image + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{163, 18}, {201, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 52}, {146, 18}} + + 2 + YES + + 67239424 + 0 + Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 78}} + + 2 + + + {{45, 116}, {511, 94}} + + 2 + {0, 0} + + 67239424 + 0 + Wake + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -106}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{277, 217}, {50, 23}} + + 2 + YES + + 67239424 + 0 + rd + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 112}, {102, 18}} + + 2 + YES + + 67239424 + 0 + SystemType + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{385, 107}, {59, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + + + + 274 + {13, 126} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{277, 179}, {81, 23}} + + 2 + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 217}, {63, 23}} + + 2 + YES + + 67239424 + 0 + Kernel + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{322, 219}, {159, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + + YES + + + + + + + 268 + {{277, 145}, {75, 23}} + + 2 + YES + + 67239424 + 0 + io + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 219}, {164, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 148}, {80, 18}} + + 2 + YES + + 67239424 + 0 + cpus + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 111}, {90, 23}} + + 2 + YES + + 67239424 + 0 + busratio + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 76}, {90, 18}} + + 2 + YES + + 67239424 + 0 + SystemId + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 181}, {90, 23}} + + 2 + YES + + 67239424 + 0 + arch + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 41}, {226, 18}} + + 2 + YES + + 67239424 + 0 + Disable kext blacklist + + LucidaGrande + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 75}, {339, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 41}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{102, 179}, {76, 26}} + + 2 + 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 + 1 + + + + + + 268 + {{102, 109}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{102, 142}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{358, 178}, {86, 23}} + + 2 + YES + + 343014976 + 272630784 + + + LucidaGrande + 10 + 16 + + + 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 + 1 + + + + + + 268 + {{358, 143}, {86, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF + + + + + 274 + {13, 34} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{16, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate P-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate C-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 250}} + + 2 + + + {{13, 122}, {511, 266}} + + 2 + {0, 0} + + 67239424 + 0 + Kernel + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Advanced + + + + + Item 6 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 311}, {244, 18}} + + 2 + YES + + 67239424 + 0 + Device Properties + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{327, 309}, {170, 25}} + + 2 + YES + + -2080244224 + 134217728 + Current GFX Injection + + + -2038152961 + 163 + + + 400 + 75 + + + + + 12 + + YES + + + 2304 + + YES + + + 268 + {{0, 91}, {536, 506}} + + 2 + YES + + -1809711615 + 272629760 + + + + YES + + + + + + {{1, 1}, {462, 264}} + {{0, 333}, {462, 264}} + + + 2 + + + 4 + + + + 256 + {{463, 1}, {15, 264}} + + 2 + YES + + _doScroller: + 1 + 0.52173913043478259 + + + + -2147483392 + {{-100, -100}, {536, 15}} + + 2 + YES + 1 + + _doScroller: + 0.50602412223815918 + + + {{18, 22}, {479, 266}} + + + 2 + 133842 + + + + + + {{1, 1}, {509, 348}} + + 2 + + + {{13, 24}, {511, 364}} + + 2 + {0, 0} + + 67239424 + 0 + EFI injection + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + EFI Inject + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {509, 234}} + + 2 + + + {{44, 179}, {511, 250}} + + + 2 + {0, 0} + + 67239424 + 0 + IORegistry + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 54}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + DSDT file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{370, 52}, {148, 22}} + + + 2 + YES + + 67239424 + 0 + Drop + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{139, 53}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{139, 14}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{370, 12}, {161, 23}} + + + 2 + YES + + 67239424 + 0 + Defaults + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 15}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + SMBIOS file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 87}} + + + 2 + + + {{44, 433}, {511, 103}} + + + 2 + {0, 0} + + 67239424 + 0 + DSDT & SMBIOS + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{384, 151}, {168, 25}} + + + 2 + YES + + 67239424 + 134217728 + Open smbios.plist + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{209, 151}, {168, 25}} + + 2 + YES + + 67239424 + 134217728 + Extract SMBIOS + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{47, 151}, {154, 25}} + + + 2 + YES + + -2080244224 + 134217728 + Extract ACPI + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-34, -141}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + SMBIOS + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{18, -1}, {513, 261}} + + 2 + YES + + -2080244224 + 138412032 + + + + YES + + 1 + MCAwIDAgMAA + + + 1 + MCAwIDAgMC45AA + + + + + + 268 + {{186, 338}, {172, 17}} + + 2 + YES + + 68288064 + 138413056 + Version bla bla. + + LucidaGrande-Bold + 13 + 16 + + + + + 1 + MCAwIDAgMC45AA + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{223, 243}, {100, 100}} + + 2 + YES + + 130560 + 33554432 + + NSImage + cham + + 0 + 0 + 0 + YES + + YES + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{141, 358}, {262, 45}} + + 2 + YES + + 130560 + 33554432 + + NSImage + name + + 0 + 0 + 0 + YES + + YES + + + {541, 408} + 2 + + About + + + + + + + 268435462 + YES + YES + + YES + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {675, 34} + + 2 + YES + + 130560 + 33554432 + + NSImage + footer + + 0 + 1 + 0 + YES + + YES + + + + 268 + {{0, 2}, {227.58203125, 30}} + + YES + 2 + SFAuthorizationView + + + + 268 + {{232, 8}, {419, 17}} + + 2 + _NS:4068 + YES + + 68288064 + 71304192 + + + _NS:4068 + + + + + + + {668, 439} + YES + 2 + + {{0, 0}, {1920, 1178}} + {224.66399999999999, 32} + {10000000000000, 10000000000000} + YES + + + AboutController + + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + + + EfiInjectController + + + SmbiosController + + + YES + + + TableViewsController + + + + + + YES + + + _window + + + + 26 + + + + delegate + + + + 972 + + + + dataSource + + + + 973 + + + + authView + + + + 137 + + + + onRestart: + + + + 188 + + + + mSleepButton + + + + 192 + + + + mShutDownButton + + + + 193 + + + + mRestartButton + + + + 194 + + + + onSleep: + + + + 195 + + + + onShutdown: + + + + 197 + + + + box + + + + 991 + + + + mStatusText + + + + 1351 + + + + onTextFiedChange: + + + + 1141 + + + + onCheckButtonChange: + + + + 1143 + + + + onCheckButtonChange: + + + + 1145 + + + + onTextFiedChange: + + + + 1148 + + + + onCheckButtonChange: + + + + 1150 + + + + onTextFiedChange: + + + + 1151 + + + + mDefaultPartition + + + + 1153 + + + + mHidePartition + + + + 1154 + + + + mRenamePartition + + + + 1155 + + + + mDefaultPartitionText + + + + 1156 + + + + mHidePartitionText + + + + 1157 + + + + mRenamePartitionText + + + + 1158 + + + + onCheckButtonChange: + + + + 1178 + + + + onTextFiedChange: + + + + 1179 + + + + onCheckButtonChange: + + + + 1180 + + + + onCheckButtonChange: + + + + 1181 + + + + onCheckButtonChange: + + + + 1182 + + + + onCheckButtonChange: + + + + 1183 + + + + mBootConfigPathText + + + + 1185 + + + + mSwapHD01 + + + + 1186 + + + + mSwapHD02 + + + + 1187 + + + + mBootConfigPath + + + + 1189 + + + + mFreezeParts + + + + 1190 + + + + mInjectFrozenParts + + + + 1191 + + + + onTextFiedChange: + + + + 1294 + + + + onTextFiedChange: + + + + 1295 + + + + mBootExtraPath + + + + 1298 + + + + mBootExtraPathText + + + + 1300 + + + + mBootCdbootPathText + + + + 1301 + + + + onCreateBootCD: + + + + 1302 + + + + onExtraConfigPath: + + + + 1303 + + + + onCdBootConfigPath: + + + + 1307 + + + + mBootCdbootPath + + + + 1308 + + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + onCheckButtonChange: + + + + 671 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 723 + + + + onCheckButtonChange: + + + + 725 + + + + onCheckButtonChange: + + + + 726 + + + + onCheckButtonChange: + + + + 727 + + + + onCheckButtonChange: + + + + 728 + + + + onCheckButtonChange: + + + + 729 + + + + onCheckButtonChange: + + + + 730 + + + + onCheckButtonChange: + + + + 731 + + + + onCheckButtonChange: + + + + 732 + + + + onCheckButtonChange: + + + + 778 + + + + mUseGUI + + + + 779 + + + + mTimeOutText + + + + 857 + + + + onTextFiedChange: + + + + 858 + + + + onCheckButtonChange: + + + + 871 + + + + onTextFiedChange: + + + + 874 + + + + mThemeText + + + + 875 + + + + mTheme + + + + 876 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 716 + + + + onCheckButtonChange: + + + + 717 + + + + onCheckButtonChange: + + + + 718 + + + + onCheckButtonChange: + + + + 719 + + + + onCheckButtonChange: + + + + 720 + + + + onCheckButtonChange: + + + + 721 + + + + onCheckButtonChange: + + + + 722 + + + + onCheckButtonChange: + + + + 770 + + + + mPciRoot + + + + 774 + + + + mGraphicsModeText + + + + 841 + + + + onTextFiedChange: + + + + 842 + + + + onCheckButtonChange: + + + + 861 + + + + mForceHPET + + + + 862 + + + + mPciRootText + + + + 1202 + + + + onTextFiedChange: + + + + 1203 + + + + onCheckButtonChange: + + + + 1204 + + + + mAtiVideoROM + + + + 1205 + + + + onCheckButtonChange: + + + + 1206 + + + + mNvidiaVideoROM + + + + 1207 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mCPU + + + + 650 + + + + mBusRatio + + + + 652 + + + + mDebug + + + + 654 + + + + mIO + + + + 656 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + + + + onCheckButtonChange: + + + + 699 + + + + onCheckButtonChange: + + + + 700 + + + + onCheckButtonChange: + + + + 701 + + + + onCheckButtonChange: + + + + 702 + + + + onCheckButtonChange: + + + + 703 + + + + onCheckButtonChange: + + + + 704 + + + + onCheckButtonChange: + + + + 705 + + + + onCheckButtonChange: + + + + 706 + + + + onCheckButtonChange: + + + + 707 + + + + onCheckButtonChange: + + + + 708 + + + + onCheckButtonChange: + + + + 709 + + + + onTextFiedChange: + + + + 710 + + + + onCheckButtonChange: + + + + 744 + + + + mSystemId + + + + 748 + + + + mSystemIdText + + + + 749 + + + + onTextFiedChange: + + + + 750 + + + + onCheckButtonChange: + + + + 766 + + + + mRestartFix + + + + 767 + + + + mArchText + + + + 845 + + + + onTextFiedChange: + + + + 846 + + + + mBusRatioText + + + + 849 + + + + onTextFiedChange: + + + + 850 + + + + mCPUText + + + + 853 + + + + onTextFiedChange: + + + + 854 + + + + mDebugText + + + + 865 + + + + onTextFiedChange: + + + + 866 + + + + mIOText + + + + 877 + + + + onTextFiedChange: + + + + 878 + + + + mSystemType + + + + 1208 + + + + onCheckButtonChange: + + + + 1209 + + + + mSystemTypeText + + + + 1210 + + + + onTextFiedChange: + + + + 1211 + + + + onCheckButtonChange: + + + + 1241 + + + + onCheckButtonChange: + + + + 1244 + + + + mGenerateCStates + + + + 1245 + + + + mGeneratePStates + + + + 1246 + + + + mEfiInject + + + + 789 + + + + onCheckButtonChange: + + + + 792 + + + + mCurrentGfxInjection + + + + 796 + + + + onCheckButtonChange: + + + + 797 + + + + mEfiInjectText + + + + 824 + + + + onTextFiedChange: + + + + 825 + + + + mEditSmbios + + + + 835 + + + + onCheckButtonChange: + + + + 836 + + + + onCheckButtonChange: + + + + 1218 + + + + mExtractACPITables + + + + 1219 + + + + onCheckButtonChange: + + + + 1426 + + + + mAppleSmbios + + + + 1427 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 910 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 909 + + + + value: bundleVersionNumber + + + + + + value: bundleVersionNumber + value + bundleVersionNumber + 2 + + + 913 + + + + delegate + + + + 971 + + + + dataSource + + + + 974 + + + + mMenuName + + + + 970 + + + + mPartitionImgColumn + + + + 975 + + + + mPartitionNameColumn + + + + 976 + + + + mPartitionIDColumn + + + + 977 + + + + mFileSystemColumn + + + + 978 + + + + mPartitionsTable + + + + 980 + + + + mBootFrom + + + + 981 + + + + mBootFlags + + + + 983 + + + + mPeripherals + + + + 984 + + + + mAdvanced + + + + 985 + + + + mEfiInject + + + + 986 + + + + mSmbios + + + + 987 + + + + mAbout + + + + 988 + + + + mTabViewPanes + + + + 989 + + + + mTabViewPanesSelect + + + + 994 + + + + mBootSetup + + + + 1152 + + + + mMenuIcon + + + + 1215 + + + + mPartitionUIDColumn + + + + 1252 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 12 + + + YES + + + + PrefPane + + + 6 + + + YES + + + + + + + + + + + -3 + + + Application + + + 112 + + + ChameleonPrefPane + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 788 + + + + + 834 + + + + + 893 + + + + + 897 + + + + + 947 + + + YES + + + + + + + + 948 + + + + + 949 + + + + + 950 + + + YES + + + + + + + 952 + + + YES + + + + + + 953 + + + + + 961 + + + + + 172 + + + YES + + + + + + + + + + + + + 920 + + + YES + + + + + + 921 + + + + + 995 + + + YES + + + + + + 996 + + + + + 136 + + + YES + + + + + 173 + + + YES + + + + + + 174 + + + YES + + + + + + + + + 1010 + + + YES + + + + + + 186 + + + YES + + + + + + 187 + + + + + 189 + + + YES + + + + + + 190 + + + + + 441 + + + YES + + + + + + 442 + + + YES + + + + + + + + + 1006 + + + + + 536 + + + YES + + + + + + + + 541 + + + YES + + + + + + 544 + + + + + 542 + + + YES + + + + + + 543 + + + + + 540 + + + YES + + + + + + 545 + + + + + 537 + + + YES + + + + + + + + + 538 + + + YES + + + + + + 539 + + + + + 859 + + + YES + + + + + + 860 + + + + + 768 + + + YES + + + + + + 769 + + + + + 456 + + + YES + + + + + + + + + + + + + 457 + + + YES + + + + + + 464 + + + + + 458 + + + YES + + + + + + 463 + + + + + 450 + + + YES + + + + + + 455 + + + + + 487 + + + YES + + + + + + 488 + + + + + 452 + + + YES + + + + + + 453 + + + + + 839 + + + YES + + + + + + 840 + + + + + 478 + + + YES + + + + + + 479 + + + YES + + + + + + + 511 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + + + 493 + + + YES + + + + + + 506 + + + + + 491 + + + YES + + + + + + 508 + + + + + 496 + + + YES + + + + + + 503 + + + + + 497 + + + YES + + + + + + 502 + + + + + 863 + + + YES + + + + + + 864 + + + + + 489 + + + YES + + + + + + 510 + + + + + 494 + + + YES + + + + + + 505 + + + + + 495 + + + YES + + + + + + 504 + + + + + 867 + + + YES + + + + + + 868 + + + + + 851 + + + YES + + + + + + 852 + + + + + 764 + + + YES + + + + + + 765 + + + + + 586 + + + YES + + + + + + 587 + + + + + 738 + + + YES + + + + + + 739 + + + + + 847 + + + YES + + + + + + 848 + + + + + 492 + + + YES + + + + + + 507 + + + + + 843 + + + YES + + + + + + 844 + + + + + 490 + + + YES + + + + + + 509 + + + + + 741 + + + YES + + + + + + 742 + + + + + 780 + + + YES + + + + + + 781 + + + YES + + + + + + + 793 + + + YES + + + + + + + + 820 + + + YES + + + + + + + + 818 + + + YES + + + + + + 819 + + + + + 822 + + + + + 821 + + + + + 794 + + + YES + + + + + + 795 + + + + + 786 + + + YES + + + + + + 787 + + + + + 1004 + + + + + 828 + + + YES + + + + + + 829 + + + YES + + + + + + 1003 + + + YES + + + + + + + + + + 905 + + + YES + + + + + + 906 + + + YES + + + + + + + + + + 907 + + + YES + + + + + + 908 + + + + + 1002 + + + + + 911 + + + YES + + + + + + 912 + + + + + 914 + + + YES + + + + + + 915 + + + + + 918 + + + YES + + + + + + 919 + + + + + 284 + + + YES + + + + + + 285 + + + YES + + + + + + + + 1007 + + + + + 569 + + + YES + + + + + + + + 571 + + + YES + + + + + + 574 + + + + + 570 + + + YES + + + + + + 575 + + + + + 572 + + + YES + + + + + + 573 + + + + + 286 + + + YES + + + + + + + + + + + + + + + + + 855 + + + YES + + + + + + 856 + + + + + 588 + + + YES + + + + + + 589 + + + + + 302 + + + YES + + + + + + 313 + + + + + 776 + + + YES + + + + + + 777 + + + + + 372 + + + YES + + + + + + 373 + + + + + 292 + + + YES + + + + + + 323 + + + + + 294 + + + YES + + + + + + 321 + + + + + 293 + + + YES + + + + + + 322 + + + + + 300 + + + YES + + + + + + 315 + + + + + 301 + + + YES + + + + + + 314 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + + + 1111 + + + YES + + + + + + 1112 + + + YES + + + + + + 1115 + + + YES + + + + + + + + 1113 + + + YES + + + + + + + + + + + 1128 + + + YES + + + + + + 1129 + + + YES + + + + + + 1133 + + + YES + + + + + + 1132 + + + YES + + + + + + 1131 + + + YES + + + + + + 1130 + + + YES + + + + + + 1137 + + + + + 1136 + + + + + 1135 + + + + + 1134 + + + + + 1138 + + + + + 1139 + + + + + 1165 + + + YES + + + + + + + + + + + 1171 + + + YES + + + + + + 1170 + + + YES + + + + + + 1169 + + + YES + + + + + + 1168 + + + YES + + + + + + 1167 + + + YES + + + + + + 1166 + + + YES + + + + + + 1177 + + + + + 1176 + + + + + 1175 + + + + + 1174 + + + + + 1173 + + + + + 1172 + + + + + 1192 + + + YES + + + + + + 1193 + + + YES + + + + + + 1194 + + + + + 1195 + + + + + 1196 + + + YES + + + + + + 1197 + + + YES + + + + + + 1198 + + + + + 1199 + + + + + 1005 + + + YES + + + + + + 1200 + + + YES + + + + + + 1201 + + + + + 110 + + + YES + + + + + + 111 + + + + + 1212 + + + YES + + + + + + 1214 + + + + + 937 + + + YES + + + + + + 99 + + + YES + + + + + + + + + 103 + + + + + 102 + + + YES + + + + + + + + + + 101 + + + + + 100 + + + + + 158 + + + YES + + + + + + 104 + + + YES + + + + + + 128 + + + YES + + + + + + 105 + + + YES + + + + + + 106 + + + + + 129 + + + + + 107 + + + + + 160 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 563 + + + YES + + + + + + 562 + + + YES + + + + + + 590 + + + YES + + + + + + 591 + + + + + 567 + + + + + 566 + + + + + 568 + + + + + 1239 + + + YES + + + + + + 1240 + + + + + 1242 + + + YES + + + + + + 1243 + + + + + 1249 + + + YES + + + + + + 1250 + + + + + 1254 + + + YES + + + + + + + + + + 1276 + + + YES + + + + + + 1277 + + + + + 1273 + + + YES + + + + + + 1274 + + + + + 1279 + + + YES + + + + + + 1280 + + + + + 1291 + + + YES + + + + + + 1292 + + + + + 1304 + + + YES + + + + + + 1305 + + + + + 1309 + + + YES + + + + + 523 + + + YES + + + + + + + + + + + 529 + + + YES + + + + + + 555 + + + YES + + + + + + 527 + + + YES + + + + + + 554 + + + YES + + + + + + 528 + + + YES + + + + + + 553 + + + YES + + + + + + 558 + + + + + 531 + + + + + 557 + + + + + 532 + + + + + 556 + + + + + 530 + + + + + 830 + + + YES + + + + + + 831 + + + + + 1216 + + + YES + + + + + + 1217 + + + + + 1345 + + + YES + + + + + + 1346 + + + + + 1352 + + + + + 1424 + + + YES + + + + + + 1425 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 100.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 101.IBPluginDependency + 1010.IBPluginDependency + 102.CustomClassName + 102.IBPluginDependency + 103.IBPluginDependency + 104.IBPluginDependency + 105.IBPluginDependency + 106.CustomClassName + 106.IBPluginDependency + 107.CustomClassName + 107.IBPluginDependency + 110.IBAttributePlaceholdersKey + 110.IBPluginDependency + 111.IBPluginDependency + 1111.IBPluginDependency + 1112.IBAttributePlaceholdersKey + 1112.IBPluginDependency + 1113.CustomClassName + 1113.IBPluginDependency + 1115.IBPluginDependency + 112.IBPluginDependency + 1128.IBPluginDependency + 1129.IBAttributePlaceholdersKey + 1129.IBPluginDependency + 1130.IBPluginDependency + 1131.IBAttributePlaceholdersKey + 1131.IBPluginDependency + 1132.IBAttributePlaceholdersKey + 1132.IBPluginDependency + 1133.IBPluginDependency + 1134.IBAttributePlaceholdersKey + 1134.IBPluginDependency + 1135.IBPluginDependency + 1136.IBPluginDependency + 1137.IBPluginDependency + 1138.IBPluginDependency + 1139.IBAttributePlaceholdersKey + 1139.IBPluginDependency + 1165.CustomClassName + 1165.IBPluginDependency + 1166.IBAttributePlaceholdersKey + 1166.IBPluginDependency + 1167.IBAttributePlaceholdersKey + 1167.IBPluginDependency + 1168.IBAttributePlaceholdersKey + 1168.IBPluginDependency + 1169.IBAttributePlaceholdersKey + 1169.IBPluginDependency + 1170.IBAttributePlaceholdersKey + 1170.IBPluginDependency + 1171.IBAttributePlaceholdersKey + 1171.IBPluginDependency + 1172.IBAttributePlaceholdersKey + 1172.IBPluginDependency + 1173.IBPluginDependency + 1174.IBPluginDependency + 1175.IBPluginDependency + 1176.IBPluginDependency + 1177.IBPluginDependency + 1192.IBAttributePlaceholdersKey + 1192.IBPluginDependency + 1193.IBPluginDependency + 1194.IBComboBoxObjectValuesKey.objectValues + 1194.IBPluginDependency + 1195.IBPluginDependency + 1196.IBAttributePlaceholdersKey + 1196.IBPluginDependency + 1197.IBAttributePlaceholdersKey + 1197.IBPluginDependency + 1198.IBPluginDependency + 1199.IBPluginDependency + 12.IBPluginDependency + 12.IBWindowTemplateEditedContentRect + 1200.IBPluginDependency + 1201.IBComboBoxObjectValuesKey.objectValues + 1201.IBPluginDependency + 1212.IBPluginDependency + 1214.IBPluginDependency + 1216.IBPluginDependency + 1217.IBPluginDependency + 1239.IBAttributePlaceholdersKey + 1239.IBPluginDependency + 1240.IBPluginDependency + 1242.IBAttributePlaceholdersKey + 1242.IBPluginDependency + 1243.IBPluginDependency + 1249.IBPluginDependency + 1250.CustomClassName + 1250.IBPluginDependency + 1254.CustomClassName + 1254.IBPluginDependency + 1273.IBAttributePlaceholdersKey + 1273.IBPluginDependency + 1274.IBPluginDependency + 1276.IBAttributePlaceholdersKey + 1276.IBPluginDependency + 1277.IBPluginDependency + 1279.IBAttributePlaceholdersKey + 1279.IBPluginDependency + 128.IBPluginDependency + 1280.IBPluginDependency + 129.CustomClassName + 129.IBPluginDependency + 1291.IBAttributePlaceholdersKey + 1291.IBPluginDependency + 1292.IBPluginDependency + 1304.IBAttributePlaceholdersKey + 1304.IBPluginDependency + 1305.IBPluginDependency + 1309.CustomClassName + 1309.IBPluginDependency + 1345.IBPluginDependency + 1346.IBPluginDependency + 1352.IBPluginDependency + 136.IBPluginDependency + 1424.IBPluginDependency + 1425.IBPluginDependency + 158.IBPluginDependency + 160.IBPluginDependency + 172.IBAttributePlaceholdersKey + 172.IBPluginDependency + 173.IBPluginDependency + 174.IBPluginDependency + 186.IBAttributePlaceholdersKey + 186.IBPluginDependency + 187.IBPluginDependency + 189.IBAttributePlaceholdersKey + 189.IBPluginDependency + 190.IBPluginDependency + 284.IBPluginDependency + 285.IBPluginDependency + 286.CustomClassName + 286.IBPluginDependency + 292.IBAttributePlaceholdersKey + 292.IBPluginDependency + 293.IBAttributePlaceholdersKey + 293.IBPluginDependency + 294.IBAttributePlaceholdersKey + 294.IBPluginDependency + 300.IBAttributePlaceholdersKey + 300.IBPluginDependency + 301.IBAttributePlaceholdersKey + 301.IBPluginDependency + 302.IBAttributePlaceholdersKey + 302.IBPluginDependency + 313.IBPluginDependency + 314.IBPluginDependency + 315.IBPluginDependency + 321.IBPluginDependency + 322.IBPluginDependency + 323.IBPluginDependency + 372.IBAttributePlaceholdersKey + 372.IBPluginDependency + 373.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency + 450.IBAttributePlaceholdersKey + 450.IBPluginDependency + 452.IBAttributePlaceholdersKey + 452.IBPluginDependency + 453.IBPluginDependency + 455.IBPluginDependency + 456.CustomClassName + 456.IBPluginDependency + 456.IBUserGuides + 457.IBAttributePlaceholdersKey + 457.IBPluginDependency + 458.IBAttributePlaceholdersKey + 458.IBPluginDependency + 463.IBPluginDependency + 464.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency + 487.IBAttributePlaceholdersKey + 487.IBPluginDependency + 488.IBPluginDependency + 489.IBAttributePlaceholdersKey + 489.IBPluginDependency + 490.IBAttributePlaceholdersKey + 490.IBPluginDependency + 491.IBAttributePlaceholdersKey + 491.IBPluginDependency + 492.IBAttributePlaceholdersKey + 492.IBPluginDependency + 493.IBAttributePlaceholdersKey + 493.IBPluginDependency + 494.IBAttributePlaceholdersKey + 494.IBPluginDependency + 495.IBAttributePlaceholdersKey + 495.IBPluginDependency + 496.IBAttributePlaceholdersKey + 496.IBPluginDependency + 497.IBAttributePlaceholdersKey + 497.IBPluginDependency + 502.IBPluginDependency + 503.IBPluginDependency + 504.IBPluginDependency + 505.IBPluginDependency + 506.IBPluginDependency + 507.IBPluginDependency + 508.IBPluginDependency + 509.IBPluginDependency + 510.IBPluginDependency + 511.CustomClassName + 511.IBPluginDependency + 523.CustomClassName + 523.IBPluginDependency + 527.IBAttributePlaceholdersKey + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.CustomClassName + 536.IBPluginDependency + 537.CustomClassName + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBAttributePlaceholdersKey + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 560.CustomClassName + 560.IBPluginDependency + 561.IBAttributePlaceholdersKey + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.CustomClassName + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency + 6.IBPluginDependency + 6.IBViewIntegration.shadowBlurRadius + 6.IBViewIntegration.shadowColor + 6.IBViewIntegration.shadowOffsetHeight + 6.IBViewIntegration.shadowOffsetWidth + 738.IBAttributePlaceholdersKey + 738.IBPluginDependency + 739.IBPluginDependency + 741.IBAttributePlaceholdersKey + 741.IBPluginDependency + 742.IBPluginDependency + 764.IBAttributePlaceholdersKey + 764.IBPluginDependency + 765.IBPluginDependency + 768.IBAttributePlaceholdersKey + 768.IBPluginDependency + 769.IBPluginDependency + 776.IBAttributePlaceholdersKey + 776.IBPluginDependency + 777.IBPluginDependency + 780.IBPluginDependency + 781.IBPluginDependency + 786.IBAttributePlaceholdersKey + 786.IBPluginDependency + 787.IBPluginDependency + 788.IBPluginDependency + 793.CustomClassName + 793.IBPluginDependency + 794.IBPluginDependency + 795.IBPluginDependency + 818.IBPluginDependency + 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 830.IBPluginDependency + 831.IBPluginDependency + 834.IBPluginDependency + 839.IBPluginDependency + 840.IBComboBoxObjectValuesKey.objectValues + 840.IBPluginDependency + 843.IBPluginDependency + 844.IBComboBoxObjectValuesKey.objectValues + 844.IBPluginDependency + 847.IBPluginDependency + 848.IBComboBoxObjectValuesKey.objectValues + 848.IBPluginDependency + 851.IBPluginDependency + 852.IBComboBoxObjectValuesKey.objectValues + 852.IBPluginDependency + 855.IBPluginDependency + 856.IBComboBoxObjectValuesKey.objectValues + 856.IBPluginDependency + 859.IBAttributePlaceholdersKey + 859.IBPluginDependency + 860.IBPluginDependency + 863.IBPluginDependency + 864.IBComboBoxObjectValuesKey.objectValues + 864.IBPluginDependency + 867.IBPluginDependency + 868.IBComboBoxObjectValuesKey.objectValues + 868.IBPluginDependency + 869.IBAttributePlaceholdersKey + 869.IBPluginDependency + 870.IBPluginDependency + 872.IBPluginDependency + 873.IBComboBoxObjectValuesKey.objectValues + 873.IBPluginDependency + 893.IBPluginDependency + 897.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 914.IBPluginDependency + 915.IBPluginDependency + 918.IBPluginDependency + 919.IBPluginDependency + 920.IBPluginDependency + 920.IBViewIntegration.shadowBlurRadius + 920.IBViewIntegration.shadowColor + 920.IBViewIntegration.shadowOffsetHeight + 920.IBViewIntegration.shadowOffsetWidth + 921.IBPluginDependency + 937.CustomClassName + 937.IBPluginDependency + 947.IBPluginDependency + 947.IBViewIntegration.shadowBlurRadius + 947.IBViewIntegration.shadowColor + 947.IBViewIntegration.shadowOffsetHeight + 947.IBViewIntegration.shadowOffsetWidth + 948.IBPluginDependency + 948.IBShouldRemoveOnLegacySave + 949.IBPluginDependency + 949.IBShouldRemoveOnLegacySave + 950.IBPluginDependency + 952.IBPluginDependency + 953.CustomClassName + 953.IBPluginDependency + 961.IBPluginDependency + 99.IBAttributePlaceholdersKey + 99.IBPluginDependency + 995.IBPluginDependency + 996.IBPluginDependency + + + YES + 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 + CustomTableView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Shuts down the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0IHRoZSBib290IHBhcnRpdGlvbnMgaGQoeCx5KSB0byBoaWRlICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the boot partitions "hd(x,y) MyVolumeName " where 'x' is the disk number, 'y' the partition number and MyVolumeName is the alias you want to give to this partition. (i.e: useful for renaming System Reserved boot partition for Windows 7) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate ATI ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate Nvidia ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0 + 1 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Chameleon Extra folder location. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Folder location where the file 'cdboot' is located. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating your chameleon Extra folder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Creates a BootCD.iso file. When successfully run, a Chameleon Folder is created on your Desktop with that ISO to burn to a CD. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating the directory that contains the binary bootfile named 'cdboot'. It is needed for the image to build. Usaully in the sym/i386 subdirectory of your chameleon source distribution. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Put the sytem in Sleep mode + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in Single User Mode (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in verbose (text) mode, log info will be stored and accessible by the Console application (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Ignore Boot Configuration file (default: No). If set, then org.chameleon.Boot.plist will not be loaded during the boot, only defaults options will be set. + + + 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 + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + + 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 + + Use Wait to make the booter wait for a key press before it starts the mach kernel. Useful for debugging your boot configuration + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Show boot banner in GUI mode (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + ToolTip + + ToolTip + + Automatic device-properties generation for graphics cards (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the legacy (grey on white) apple logo (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable kernel debug mode flags (i.e 0x0144). + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + io 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 + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Skip the SSDT tables while relocating the ACPI tables (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI and UHCI fixes (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the UHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force using the sleepimage (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Scan the drive only where the booter got loaded from (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Prompts for enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force to boot in safe mode. Useful in certains situations (i.e: when one kexts hangs the system) + + + 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 + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Override the automatic pciroot detection, and manually inject a pciroot number at boot time + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable GUI at boot time. (Enabled by Default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets additional device properties like gfx card efi injection, network . + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + YES + 800x600x32 + 1024x768x32 + 1280x800x32 + 1280x1024x32 + 1440x900x32 + 1680x1050x32 + 1920x1080x32 + 1920x1200x32 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + X86_64 + i386 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 20 + 21 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 4 + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + + 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 + + YES + 0x12A + 0x144 + 0x14E + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + 0x80 + 0xFFFFFFFF + + 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 + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Click on a partition to make it the default boot partition. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + + + + YES + + + + + 1427 + + + + YES + + AboutController + NSObject + + onAbout: + id + + + onAbout: + + onAbout: + id + + + + mAboutDlg + NSPanel + + + mAboutDlg + + mAboutDlg + NSPanel + + + + IBProjectSource + ./Classes/AboutController.h + + + + AdvancedSetupController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSButton + NSTextField + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + + mArch + NSButton + + + mArchText + NSComboBox + + + mBusRatio + NSButton + + + mBusRatioText + NSComboBox + + + mCPU + NSButton + + + mCPUText + NSComboBox + + + mDSDTDrop + NSButton + + + mDSDTFile + NSButton + + + mDSDTFileText + NSTextField + + + mDebug + NSButton + + + mDebugText + NSComboBox + + + mDeviceRd + NSButton + + + mDeviceRdText + NSTextField + + + mDisableKextsBlacklisting + NSButton + + + mForceWake + NSButton + + + mGenerateCStates + NSButton + + + mGeneratePStates + NSButton + + + mIO + NSButton + + + mIOText + NSComboBox + + + mKernel + NSButton + + + mKernelText + NSTextField + + + mRestartFix + NSButton + + + mSMBIOSDefaults + NSButton + + + mSMBIOSFile + NSButton + + + mSMBIOSFileText + NSTextField + + + mSystemId + NSButton + + + mSystemIdText + NSTextField + + + mSystemType + NSButton + + + mSystemTypeText + NSComboBox + + + mWake + NSButton + + + mWakeImage + NSButton + + + mWakeImageText + NSTextField + + + + + IBProjectSource + ./Classes/AdvancedSetupController.h + + + + BootFlagsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + + mIgnoreBootConfig + NSButton + + + mInstantMenu + NSButton + + + mQuietBoot + NSButton + + + mRescan + NSButton + + + mRescanPrompt + NSButton + + + mRescanSingleDrive + NSButton + + + mSafeBoot + NSButton + + + mSingleUser + NSButton + + + mTheme + NSButton + + + mThemeText + NSComboBox + + + mTimeOut + NSButton + + + mTimeOutText + NSTextField + + + mUseGUI + NSButton + + + mVerbose + NSButton + + + mWait + NSButton + + + + + IBProjectSource + ./Classes/BootFlagsController.h + + + + BootSetupController + PreferencesControllerBase + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + id + NSButton + id + id + id + NSTextField + + + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + + onCdBootConfigPath: + id + + + onCheckButtonChange: + NSButton + + + onCreateBootCD: + id + + + onExtraConfigPath: + id + + + onForceBootConfigPath: + id + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + + mBootCdbootPath + NSButton + + + mBootCdbootPathText + NSTextField + + + mBootConfigPath + NSButton + + + mBootConfigPathText + NSTextField + + + mBootExtraPath + NSButton + + + mBootExtraPathText + NSTextField + + + mDefaultPartition + NSButton + + + mDefaultPartitionText + NSTextField + + + mFreezeParts + NSButton + + + mHidePartition + NSButton + + + mHidePartitionText + NSTextField + + + mInjectFrozenParts + NSButton + + + mRenamePartition + NSButton + + + mRenamePartitionText + NSTextField + + + mSwapHD01 + NSButton + + + mSwapHD02 + NSButton + + + + + IBProjectSource + ./Classes/BootSetupController.h + + + + CenteredTextFieldCell + NSTextFieldCell + + IBProjectSource + ./Classes/CenteredTextFieldCell.h + + + + ChameleonPrefPane + NSPreferencePane + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + id + id + id + + + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + + onRestart: + id + + + onShutdown: + id + + + onSleep: + id + + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + SFAuthorizationView + NSColorWell + NSColorWell + RoundedBox + RoundedBox + NSColorWell + NSColorWell + NSBox + NSButton + NSButton + NSButton + NSTextField + NSView + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + + authView + SFAuthorizationView + + + backgroundColorWell + NSColorWell + + + borderColorWell + NSColorWell + + + box + RoundedBox + + + footer + RoundedBox + + + gradientEndColorWell + NSColorWell + + + gradientStartColorWell + NSColorWell + + + mOptions + NSBox + + + mRestartButton + NSButton + + + mShutDownButton + NSButton + + + mSleepButton + NSButton + + + mStatusText + NSTextField + + + mainView + NSView + + + + + IBProjectSource + ./Classes/ChameleonPrefPane.h + + + + CustomTableView + NSTableView + + IBProjectSource + ./Classes/CustomTableView.h + + + + EfiInjectController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + NSButton + NSButton + NSTextField + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + + mCurrentGfxInjection + NSButton + + + mEfiInject + NSButton + + + mEfiInjectText + NSTextField + + + + + IBProjectSource + ./Classes/EfiInjectController.h + + + + NSPreferencePane + NSObject + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + NSView + NSView + NSView + NSWindow + + + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + + IBProjectSource + ./Classes/NSPreferencePane.h + + + + PeripheralsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + + mAtiVideoROM + NSButton + + + mBootBanner + NSButton + + + mEHCIacquire + NSButton + + + mEthernetBuiltIn + NSButton + + + mForceHPET + NSButton + + + mGraphicsEnabler + NSButton + + + mGraphicsMode + NSButton + + + mGraphicsModeText + NSComboBox + + + mLegacyLogo + NSButton + + + mNvidiaVideoROM + NSButton + + + mPciRoot + NSButton + + + mPciRootText + NSTextField + + + mUHCIreset + NSButton + + + mUSBBusFix + NSButton + + + mVBIOS + NSButton + + + + + IBProjectSource + ./Classes/PeripheralsController.h + + + + PreferencesControllerBase + NSObject + + IBProjectSource + ./Classes/PreferencesControllerBase.h + + + + RoundedBox + NSBox + + IBProjectSource + ./Classes/RoundedBox.h + + + + SFAuthorizationView + NSView + + IBProjectSource + ./Classes/SFAuthorizationView.h + + + + SmbiosController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + NSButton + NSButton + NSButton + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + + mAppleSmbios + NSButton + + + mEditSmbios + NSButton + + + mExtractACPITables + NSButton + + + + + IBProjectSource + ./Classes/SmbiosController.h + + + + TableViewsController + NSObject + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + CustomTableView + NSTabViewItem + NSTabViewItem + NSTabView + NSTableView + + + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + + mAbout + NSTabViewItem + + + mAdvanced + NSTabViewItem + + + mBootFlags + NSTabViewItem + + + mBootFrom + NSTabViewItem + + + mBootSetup + NSTabViewItem + + + mEfiInject + NSTabViewItem + + + mFileSystemColumn + NSTableColumn + + + mHideOrViewColumn + NSTableColumn + + + mMenuIcon + NSTableColumn + + + mMenuName + NSTableColumn + + + mPartitionIDColumn + NSTableColumn + + + mPartitionImgColumn + NSTableColumn + + + mPartitionNameColumn + NSTableColumn + + + mPartitionUIDColumn + NSTableColumn + + + mPartitionsTable + CustomTableView + + + mPeripherals + NSTabViewItem + + + mSmbios + NSTabViewItem + + + mTabViewPanes + NSTabView + + + mTabViewPanesSelect + NSTableView + + + + + IBProjectSource + ./Classes/TableViewsController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + YES + + YES + NSSwitch + background + cham + footer + name + + + YES + {15, 15} + {130, 1} + {344, 378} + {1, 34} + {262, 45} + + + + Index: branches/ErmaC/ChameleonPrefPane/bin/OSX105/Chameleon.105.zip =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/bin/OSX105/Chameleon.105.zip ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/bin/OSX106/Chameleon.zip =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/bin/OSX106/Chameleon.zip ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/bin/version =================================================================== --- branches/ErmaC/ChameleonPrefPane/bin/version (revision 0) +++ branches/ErmaC/ChameleonPrefPane/bin/version (revision 396) @@ -0,0 +1 @@ +r394 Index: branches/ErmaC/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj =================================================================== --- branches/ErmaC/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 0) +++ branches/ErmaC/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj (revision 396) @@ -0,0 +1,923 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 01466A931104062500088464 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466A921104062500088464 /* Security.framework */; }; + 01466C2A110408CC00088464 /* SecurityInterface.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C29110408CC00088464 /* SecurityInterface.framework */; }; + 01466C381104091400088464 /* SecurityFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C371104091400088464 /* SecurityFoundation.framework */; }; + 0154039814706D71008E088A /* PartitionInfoElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 0154039614706D71008E088A /* PartitionInfoElement.h */; }; + 0154039914706D71008E088A /* PartitionInfoElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0154039714706D71008E088A /* PartitionInfoElement.mm */; }; + 015403A014706EAC008E088A /* PartitionInfoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0154039E14706EAC008E088A /* PartitionInfoManager.h */; }; + 015403A114706EAC008E088A /* PartitionInfoManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0154039F14706EAC008E088A /* PartitionInfoManager.mm */; }; + 0196529B11066CC0009E8F2F /* README in Resources */ = {isa = PBXBuildFile; fileRef = 0196529A11066CC0009E8F2F /* README */; }; + 019930E1110A0CB4003B056E /* BootSetupController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930DF110A0CB4003B056E /* BootSetupController.h */; }; + 019930E2110A0CB4003B056E /* BootSetupController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930E0110A0CB4003B056E /* BootSetupController.mm */; }; + 019930E8110A0D80003B056E /* BootFlagsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930E6110A0D80003B056E /* BootFlagsController.h */; }; + 019930E9110A0D80003B056E /* BootFlagsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930E7110A0D80003B056E /* BootFlagsController.mm */; }; + 019930FE110A0E6F003B056E /* PeripheralsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 019930FC110A0E6F003B056E /* PeripheralsController.h */; }; + 019930FF110A0E6F003B056E /* PeripheralsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019930FD110A0E6F003B056E /* PeripheralsController.mm */; }; + 01993115110A0EB9003B056E /* AdvancedSetupController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01993113110A0EB9003B056E /* AdvancedSetupController.h */; }; + 01993116110A0EB9003B056E /* AdvancedSetupController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01993114110A0EB9003B056E /* AdvancedSetupController.mm */; }; + 019931DD110A37FA003B056E /* PreferencesControllerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 019931DB110A37FA003B056E /* PreferencesControllerBase.h */; }; + 019931DE110A37FA003B056E /* PreferencesControllerBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 019931DC110A37FA003B056E /* PreferencesControllerBase.mm */; }; + 01993567110AA9FA003B056E /* ChameleonPropertyList.h in Headers */ = {isa = PBXBuildFile; fileRef = 01993565110AA9FA003B056E /* ChameleonPropertyList.h */; }; + 01993568110AA9FA003B056E /* ChameleonPropertyList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01993566110AA9FA003B056E /* ChameleonPropertyList.cpp */; }; + 01A25D2E111108C80024EA7E /* AboutController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D0E111108C80024EA7E /* AboutController.h */; }; + 01A25D2F111108C80024EA7E /* AboutController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D0F111108C80024EA7E /* AboutController.mm */; }; + 01A25D3B111108C80024EA7E /* CustomTableView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D1B111108C80024EA7E /* CustomTableView.mm */; }; + 01A25D3C111108C80024EA7E /* EfiInjectController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D1C111108C80024EA7E /* EfiInjectController.h */; }; + 01A25D3D111108C80024EA7E /* EfiInjectController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D1D111108C80024EA7E /* EfiInjectController.mm */; }; + 01A25D3E111108C80024EA7E /* file_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D1E111108C80024EA7E /* file_util.h */; }; + 01A25D3F111108C80024EA7E /* GroupControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D1F111108C80024EA7E /* GroupControllerProtocol.h */; }; + 01A25D40111108C80024EA7E /* KernOptionsParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D20111108C80024EA7E /* KernOptionsParser.cpp */; }; + 01A25D41111108C80024EA7E /* KernOptionsParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D21111108C80024EA7E /* KernOptionsParser.h */; }; + 01A25D4A111108C80024EA7E /* SmbiosController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A25D2A111108C80024EA7E /* SmbiosController.h */; }; + 01A25D4B111108C80024EA7E /* SmbiosController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D2B111108C80024EA7E /* SmbiosController.mm */; }; + 01A25D4C111108C80024EA7E /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01A25D2C111108C80024EA7E /* string_util.cpp */; }; + 01A25D6B111109FF0024EA7E /* cdBootCreator.sh in Resources */ = {isa = PBXBuildFile; fileRef = 01A25D68111109FF0024EA7E /* cdBootCreator.sh */; }; + 01A25D6C111109FF0024EA7E /* getDevProp.sh in Resources */ = {isa = PBXBuildFile; fileRef = 01A25D69111109FF0024EA7E /* getDevProp.sh */; }; + 01A25D6D111109FF0024EA7E /* gfxutil in Resources */ = {isa = PBXBuildFile; fileRef = 01A25D6A111109FF0024EA7E /* gfxutil */; }; + 01A40F75110550F4002A74CD /* CHANGES in Resources */ = {isa = PBXBuildFile; fileRef = 01A40F74110550F4002A74CD /* CHANGES */; }; + 01B0E8141108B85A00ACF21B /* ChameleonPrefPane.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */; }; + 01B0E8151108B85A00ACF21B /* ChameleonPrefPane.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */; }; + 01B0E8161108B85A00ACF21B /* ShellProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01B0E8101108B85A00ACF21B /* ShellProcess.cpp */; }; + 01B0E8171108B85A00ACF21B /* ShellProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B0E8111108B85A00ACF21B /* ShellProcess.h */; }; + 01B0E8181108B85A00ACF21B /* PropertyList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01B0E8121108B85A00ACF21B /* PropertyList.cpp */; }; + 01B0E8191108B85A00ACF21B /* PropertyList.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B0E8131108B85A00ACF21B /* PropertyList.h */; }; + 01B0E8271108B89100ACF21B /* CREDITS in Resources */ = {isa = PBXBuildFile; fileRef = 01B0E8261108B89100ACF21B /* CREDITS */; }; + 01B0E8291108B89D00ACF21B /* version in Resources */ = {isa = PBXBuildFile; fileRef = 01B0E8281108B89D00ACF21B /* version */; }; + 01B3BBBF146DE24B00AEBCA4 /* CenterTextFieldCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B3BBBD146DE24B00AEBCA4 /* CenterTextFieldCell.h */; }; + 01B3BBC0146DE24B00AEBCA4 /* CenterTextFieldCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01B3BBBE146DE24B00AEBCA4 /* CenterTextFieldCell.mm */; }; + 01B4591C146F6D13002C3699 /* DiskArbitration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01B4591B146F6D13002C3699 /* DiskArbitration.framework */; }; + 01E0E9511108F9ED004EF6E8 /* TODO in Resources */ = {isa = PBXBuildFile; fileRef = 01E0E9501108F9ED004EF6E8 /* TODO */; }; + 61A9E7B21389404D00043B27 /* extractAcpi.sh in Resources */ = {isa = PBXBuildFile; fileRef = 61A9E7B11389404D00043B27 /* extractAcpi.sh */; }; + 8485B9FF1482F640005DF2E4 /* SmbiosExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8485B9FD1482F640005DF2E4 /* SmbiosExtractor.h */; }; + 8485BA001482F640005DF2E4 /* SmbiosExtractor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8485B9FE1482F640005DF2E4 /* SmbiosExtractor.mm */; }; + 84DDA075148346AA00A7C8FF /* smbios.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84DDA070148346AA00A7C8FF /* smbios.cpp */; }; + 84DDA076148346AA00A7C8FF /* smbios.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DDA071148346AA00A7C8FF /* smbios.h */; }; + 8D202CEA0486D31800D8A456 /* StartupPrefPane_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCFA20370C41700C91783 /* StartupPrefPane_Prefix.pch */; }; + 8D202CEF0486D31800D8A456 /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = F506C042013D9D8C01CA16C8 /* Chameleon.xib */; }; + 8D202CF30486D31800D8A456 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */; }; + 8D202CF40486D31800D8A456 /* PreferencePanes.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F506C035013D953901CA16C8 /* PreferencePanes.framework */; }; + B316F46A111C604B007EFE5E /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F45A111C604B007EFE5E /* Chameleon.strings */; }; + B316F46B111C604B007EFE5E /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B316F45C111C604B007EFE5E /* Chameleon.xib */; }; + B316F46C111C604B007EFE5E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F45E111C604B007EFE5E /* Localizable.strings */; }; + B316F46D111C604B007EFE5E /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F461111C604B007EFE5E /* Chameleon.strings */; }; + B316F46E111C604B007EFE5E /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B316F463111C604B007EFE5E /* Chameleon.xib */; }; + B316F46F111C604B007EFE5E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F465111C604B007EFE5E /* Localizable.strings */; }; + B316F477111C6056007EFE5E /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F471111C6056007EFE5E /* Chameleon.strings */; }; + B316F478111C6056007EFE5E /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B316F473111C6056007EFE5E /* Chameleon.xib */; }; + B316F479111C6056007EFE5E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F475111C6056007EFE5E /* Localizable.strings */; }; + B316F483111C6087007EFE5E /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F47B111C6087007EFE5E /* Chameleon.strings */; }; + B316F484111C6087007EFE5E /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B316F47D111C6087007EFE5E /* Chameleon.xib */; }; + B316F485111C6087007EFE5E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F47F111C6087007EFE5E /* InfoPlist.strings */; }; + B316F486111C6087007EFE5E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B316F481111C6087007EFE5E /* Localizable.strings */; }; + B316F4F7111C62FE007EFE5E /* Chameleon.icns in Resources */ = {isa = PBXBuildFile; fileRef = B316F4E6111C62FE007EFE5E /* Chameleon.icns */; }; + B316F4F8111C62FE007EFE5E /* advanced.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4E7111C62FE007EFE5E /* advanced.png */; }; + B316F4F9111C62FE007EFE5E /* background.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4E8111C62FE007EFE5E /* background.png */; }; + B316F4FA111C62FE007EFE5E /* CDROM.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4E9111C62FE007EFE5E /* CDROM.png */; }; + B316F4FB111C62FE007EFE5E /* cham.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4EA111C62FE007EFE5E /* cham.png */; }; + B316F4FC111C62FE007EFE5E /* chamsmall.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4EB111C62FE007EFE5E /* chamsmall.png */; }; + B316F4FD111C62FE007EFE5E /* chip.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4EC111C62FE007EFE5E /* chip.png */; }; + B316F4FE111C62FE007EFE5E /* disk.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4ED111C62FE007EFE5E /* disk.png */; }; + B316F4FF111C62FE007EFE5E /* flag.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4EE111C62FE007EFE5E /* flag.png */; }; + B316F500111C62FE007EFE5E /* footer.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4EF111C62FE007EFE5E /* footer.png */; }; + B316F501111C62FE007EFE5E /* Linux.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F0111C62FE007EFE5E /* Linux.png */; }; + B316F502111C62FE007EFE5E /* MacOSX.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F1111C62FE007EFE5E /* MacOSX.png */; }; + B316F503111C62FE007EFE5E /* name.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F2111C62FE007EFE5E /* name.png */; }; + B316F504111C62FE007EFE5E /* plug.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F3111C62FE007EFE5E /* plug.png */; }; + B316F505111C62FE007EFE5E /* syringe.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F4111C62FE007EFE5E /* syringe.png */; }; + B316F506111C62FE007EFE5E /* Windows.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F5111C62FE007EFE5E /* Windows.png */; }; + B316F507111C62FE007EFE5E /* wrench.png in Resources */ = {isa = PBXBuildFile; fileRef = B316F4F6111C62FE007EFE5E /* wrench.png */; }; + B316F50A111C6339007EFE5E /* Chameleon.tiff in Resources */ = {isa = PBXBuildFile; fileRef = B316F509111C6339007EFE5E /* Chameleon.tiff */; }; + B3981D401113292A009E2520 /* CustomTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = B3981D3F1113292A009E2520 /* CustomTableView.h */; }; + B3981D8411132A13009E2520 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = B3981D8311132A13009E2520 /* string_util.h */; }; + B3981F7D1113376C009E2520 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B3981F7C1113376C009E2520 /* QuartzCore.framework */; }; + B398220D111349F5009E2520 /* RoundedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B398220A111349F5009E2520 /* RoundedBox.h */; }; + B39822E911134F8B009E2520 /* RoundedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = B398220B111349F5009E2520 /* RoundedBox.m */; }; + B3E370081115D2B000BBF949 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E370061115D2B000BBF949 /* Localizable.strings */; }; + B3F352341125C0290051DFA5 /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3F3522E1125C0290051DFA5 /* Chameleon.strings */; }; + B3F352351125C0290051DFA5 /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B3F352301125C0290051DFA5 /* Chameleon.xib */; }; + B3F352361125C0290051DFA5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3F352321125C0290051DFA5 /* Localizable.strings */; }; + B3F8855D11146A460022CA5D /* TableViewsController.h in Headers */ = {isa = PBXBuildFile; fileRef = B3F8855B11146A460022CA5D /* TableViewsController.h */; }; + B3F8855E11146A460022CA5D /* TableViewsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3F8855C11146A460022CA5D /* TableViewsController.mm */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 011B2DE81113937D008A540F /* Chameleon.prefPane */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Chameleon.prefPane; sourceTree = BUILT_PRODUCTS_DIR; }; + 01466A921104062500088464 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; + 01466C29110408CC00088464 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = System/Library/Frameworks/SecurityInterface.framework; sourceTree = SDKROOT; }; + 01466C371104091400088464 /* SecurityFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityFoundation.framework; path = System/Library/Frameworks/SecurityFoundation.framework; sourceTree = SDKROOT; }; + 0154039614706D71008E088A /* PartitionInfoElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PartitionInfoElement.h; path = Sources/PartitionInfoElement.h; sourceTree = ""; }; + 0154039714706D71008E088A /* PartitionInfoElement.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PartitionInfoElement.mm; path = Sources/PartitionInfoElement.mm; sourceTree = ""; }; + 0154039E14706EAC008E088A /* PartitionInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PartitionInfoManager.h; path = Sources/PartitionInfoManager.h; sourceTree = ""; }; + 0154039F14706EAC008E088A /* PartitionInfoManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PartitionInfoManager.mm; path = Sources/PartitionInfoManager.mm; sourceTree = ""; }; + 0196529A11066CC0009E8F2F /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; + 019930DF110A0CB4003B056E /* BootSetupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BootSetupController.h; path = Sources/BootSetupController.h; sourceTree = ""; }; + 019930E0110A0CB4003B056E /* BootSetupController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BootSetupController.mm; path = Sources/BootSetupController.mm; sourceTree = ""; }; + 019930E6110A0D80003B056E /* BootFlagsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BootFlagsController.h; path = Sources/BootFlagsController.h; sourceTree = ""; }; + 019930E7110A0D80003B056E /* BootFlagsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BootFlagsController.mm; path = Sources/BootFlagsController.mm; sourceTree = ""; }; + 019930FC110A0E6F003B056E /* PeripheralsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PeripheralsController.h; path = Sources/PeripheralsController.h; sourceTree = ""; }; + 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 = ""; }; + 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 = ""; }; + 01993566110AA9FA003B056E /* ChameleonPropertyList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ChameleonPropertyList.cpp; path = Sources/ChameleonPropertyList.cpp; sourceTree = ""; }; + 01A25D0E111108C80024EA7E /* AboutController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutController.h; path = Sources/AboutController.h; sourceTree = ""; }; + 01A25D0F111108C80024EA7E /* AboutController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AboutController.mm; path = Sources/AboutController.mm; sourceTree = ""; }; + 01A25D1B111108C80024EA7E /* CustomTableView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = CustomTableView.mm; path = Sources/CustomTableView.mm; sourceTree = ""; }; + 01A25D1C111108C80024EA7E /* EfiInjectController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EfiInjectController.h; path = Sources/EfiInjectController.h; sourceTree = ""; }; + 01A25D1D111108C80024EA7E /* EfiInjectController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = EfiInjectController.mm; path = Sources/EfiInjectController.mm; sourceTree = ""; }; + 01A25D1E111108C80024EA7E /* file_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = file_util.h; path = Sources/file_util.h; sourceTree = ""; }; + 01A25D1F111108C80024EA7E /* GroupControllerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupControllerProtocol.h; path = Sources/GroupControllerProtocol.h; sourceTree = ""; }; + 01A25D20111108C80024EA7E /* KernOptionsParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KernOptionsParser.cpp; path = Sources/KernOptionsParser.cpp; sourceTree = ""; }; + 01A25D21111108C80024EA7E /* KernOptionsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KernOptionsParser.h; path = Sources/KernOptionsParser.h; sourceTree = ""; }; + 01A25D2A111108C80024EA7E /* SmbiosController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmbiosController.h; path = Sources/SmbiosController.h; sourceTree = ""; }; + 01A25D2B111108C80024EA7E /* SmbiosController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = SmbiosController.mm; path = Sources/SmbiosController.mm; sourceTree = ""; }; + 01A25D2C111108C80024EA7E /* string_util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cpp; path = Sources/string_util.cpp; sourceTree = ""; }; + 01A25D68111109FF0024EA7E /* cdBootCreator.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = cdBootCreator.sh; path = Resources/cdBootCreator.sh; sourceTree = ""; }; + 01A25D69111109FF0024EA7E /* getDevProp.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = getDevProp.sh; path = Resources/getDevProp.sh; sourceTree = ""; }; + 01A25D6A111109FF0024EA7E /* gfxutil */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = gfxutil; path = Resources/gfxutil; sourceTree = ""; }; + 01A40F74110550F4002A74CD /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = ""; }; + 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChameleonPrefPane.h; path = Sources/ChameleonPrefPane.h; sourceTree = ""; }; + 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ChameleonPrefPane.mm; path = Sources/ChameleonPrefPane.mm; sourceTree = ""; }; + 01B0E8101108B85A00ACF21B /* ShellProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ShellProcess.cpp; path = Sources/ShellProcess.cpp; sourceTree = ""; }; + 01B0E8111108B85A00ACF21B /* ShellProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ShellProcess.h; path = Sources/ShellProcess.h; sourceTree = ""; }; + 01B0E8121108B85A00ACF21B /* PropertyList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyList.cpp; path = Sources/PropertyList.cpp; sourceTree = ""; }; + 01B0E8131108B85A00ACF21B /* PropertyList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropertyList.h; path = Sources/PropertyList.h; sourceTree = ""; }; + 01B0E8261108B89100ACF21B /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = ""; }; + 01B0E8281108B89D00ACF21B /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = version; path = bin/version; sourceTree = ""; }; + 01B3BBBD146DE24B00AEBCA4 /* CenterTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CenterTextFieldCell.h; path = Sources/CenterTextFieldCell.h; sourceTree = ""; }; + 01B3BBBE146DE24B00AEBCA4 /* CenterTextFieldCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = CenterTextFieldCell.mm; path = Sources/CenterTextFieldCell.mm; sourceTree = ""; }; + 01B4591B146F6D13002C3699 /* DiskArbitration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiskArbitration.framework; path = System/Library/Frameworks/DiskArbitration.framework; sourceTree = SDKROOT; }; + 01E0E9501108F9ED004EF6E8 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = SOURCE_ROOT; }; + 089C1672FE841209C02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 089C167FFE841241C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 32DBCFA20370C41700C91783 /* StartupPrefPane_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartupPrefPane_Prefix.pch; sourceTree = ""; }; + 61A9E7B11389404D00043B27 /* extractAcpi.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = extractAcpi.sh; path = Resources/extractAcpi.sh; sourceTree = ""; }; + 8485B9FD1482F640005DF2E4 /* SmbiosExtractor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmbiosExtractor.h; path = Sources/SmbiosExtractor.h; sourceTree = ""; }; + 8485B9FE1482F640005DF2E4 /* SmbiosExtractor.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = SmbiosExtractor.mm; path = Sources/SmbiosExtractor.mm; sourceTree = ""; }; + 84DDA070148346AA00A7C8FF /* smbios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smbios.cpp; sourceTree = ""; }; + 84DDA071148346AA00A7C8FF /* smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = ""; }; + 8D202CF70486D31800D8A456 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + B316F45B111C604B007EFE5E /* French */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = French; path = Chameleon.strings; sourceTree = ""; }; + B316F45D111C604B007EFE5E /* French */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = French; path = Chameleon.xib; sourceTree = ""; }; + B316F45F111C604B007EFE5E /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = Localizable.strings; sourceTree = ""; }; + B316F462111C604B007EFE5E /* German */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = German; path = Chameleon.strings; sourceTree = ""; }; + B316F464111C604B007EFE5E /* German */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = German; path = Chameleon.xib; sourceTree = ""; }; + B316F466111C604B007EFE5E /* German */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = German; path = Localizable.strings; sourceTree = ""; }; + B316F472111C6056007EFE5E /* Italian */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Italian; path = Chameleon.strings; sourceTree = ""; }; + B316F474111C6056007EFE5E /* Italian */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Italian; path = Chameleon.xib; sourceTree = ""; }; + B316F476111C6056007EFE5E /* Italian */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Italian; path = Localizable.strings; sourceTree = ""; }; + B316F47C111C6087007EFE5E /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = Chameleon.strings; sourceTree = ""; }; + B316F47E111C6087007EFE5E /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Chameleon.xib; sourceTree = ""; }; + B316F480111C6087007EFE5E /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = InfoPlist.strings; sourceTree = ""; }; + B316F482111C6087007EFE5E /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = Localizable.strings; sourceTree = ""; }; + B316F4E6111C62FE007EFE5E /* Chameleon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = Chameleon.icns; path = Resources/Chameleon.icns; sourceTree = ""; }; + B316F4E7111C62FE007EFE5E /* advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = advanced.png; path = Resources/advanced.png; sourceTree = ""; }; + B316F4E8111C62FE007EFE5E /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = background.png; path = Resources/background.png; sourceTree = ""; }; + B316F4E9111C62FE007EFE5E /* CDROM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CDROM.png; path = Resources/CDROM.png; sourceTree = ""; }; + B316F4EA111C62FE007EFE5E /* cham.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cham.png; path = Resources/cham.png; sourceTree = ""; }; + B316F4EB111C62FE007EFE5E /* chamsmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = chamsmall.png; path = Resources/chamsmall.png; sourceTree = ""; }; + B316F4EC111C62FE007EFE5E /* chip.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = chip.png; path = Resources/chip.png; sourceTree = ""; }; + B316F4ED111C62FE007EFE5E /* disk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = disk.png; path = Resources/disk.png; sourceTree = ""; }; + B316F4EE111C62FE007EFE5E /* flag.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = flag.png; path = Resources/flag.png; sourceTree = ""; }; + B316F4EF111C62FE007EFE5E /* footer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = footer.png; path = Resources/footer.png; sourceTree = ""; }; + B316F4F0111C62FE007EFE5E /* Linux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Linux.png; path = Resources/Linux.png; sourceTree = ""; }; + B316F4F1111C62FE007EFE5E /* MacOSX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MacOSX.png; path = Resources/MacOSX.png; sourceTree = ""; }; + B316F4F2111C62FE007EFE5E /* name.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = name.png; path = Resources/name.png; sourceTree = ""; }; + B316F4F3111C62FE007EFE5E /* plug.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = plug.png; path = Resources/plug.png; sourceTree = ""; }; + B316F4F4111C62FE007EFE5E /* syringe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = syringe.png; path = Resources/syringe.png; sourceTree = ""; }; + B316F4F5111C62FE007EFE5E /* Windows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Windows.png; path = Resources/Windows.png; sourceTree = ""; }; + B316F4F6111C62FE007EFE5E /* wrench.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = wrench.png; path = Resources/wrench.png; sourceTree = ""; }; + B316F509111C6339007EFE5E /* Chameleon.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = Chameleon.tiff; path = Resources/Chameleon.tiff; sourceTree = ""; }; + B3981D3F1113292A009E2520 /* CustomTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomTableView.h; path = Sources/CustomTableView.h; sourceTree = ""; }; + B3981D8311132A13009E2520 /* string_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = Sources/string_util.h; sourceTree = ""; }; + B3981F7C1113376C009E2520 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /System/Library/Frameworks/QuartzCore.framework; sourceTree = ""; }; + B398220A111349F5009E2520 /* RoundedBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RoundedBox.h; path = Sources/RoundedBox.h; sourceTree = ""; }; + B398220B111349F5009E2520 /* RoundedBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RoundedBox.m; path = Sources/RoundedBox.m; sourceTree = ""; }; + B3E370071115D2B000BBF949 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = ""; }; + B3F3522F1125C0290051DFA5 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Spanish; path = Chameleon.strings; sourceTree = ""; }; + B3F352311125C0290051DFA5 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Spanish; path = Chameleon.xib; sourceTree = ""; }; + B3F352331125C0290051DFA5 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Localizable.strings; sourceTree = ""; }; + B3F8855B11146A460022CA5D /* TableViewsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableViewsController.h; path = Sources/TableViewsController.h; sourceTree = ""; }; + B3F8855C11146A460022CA5D /* TableViewsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = TableViewsController.mm; path = Sources/TableViewsController.mm; sourceTree = ""; }; + F506C035013D953901CA16C8 /* PreferencePanes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PreferencePanes.framework; path = /System/Library/Frameworks/PreferencePanes.framework; sourceTree = ""; }; + F506C043013D9D8C01CA16C8 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/Chameleon.xib; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D202CF20486D31800D8A456 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D202CF30486D31800D8A456 /* Cocoa.framework in Frameworks */, + 8D202CF40486D31800D8A456 /* PreferencePanes.framework in Frameworks */, + 01466A931104062500088464 /* Security.framework in Frameworks */, + 01466C2A110408CC00088464 /* SecurityInterface.framework in Frameworks */, + 01466C381104091400088464 /* SecurityFoundation.framework in Frameworks */, + B3981F7D1113376C009E2520 /* QuartzCore.framework in Frameworks */, + 01B4591C146F6D13002C3699 /* DiskArbitration.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 01E314A9110FF91C0058F210 /* Controllers */ = { + isa = PBXGroup; + children = ( + 01B3BBBD146DE24B00AEBCA4 /* CenterTextFieldCell.h */, + 01B3BBBE146DE24B00AEBCA4 /* CenterTextFieldCell.mm */, + B3F8855B11146A460022CA5D /* TableViewsController.h */, + B3F8855C11146A460022CA5D /* TableViewsController.mm */, + 01A25D0E111108C80024EA7E /* AboutController.h */, + 01A25D0F111108C80024EA7E /* AboutController.mm */, + 01A25D1F111108C80024EA7E /* 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 */, + 01A25D1C111108C80024EA7E /* EfiInjectController.h */, + 01A25D1D111108C80024EA7E /* EfiInjectController.mm */, + 01A25D2A111108C80024EA7E /* SmbiosController.h */, + 01A25D2B111108C80024EA7E /* SmbiosController.mm */, + ); + name = Controllers; + sourceTree = ""; + }; + 01E314AA110FF9430058F210 /* GUI */ = { + isa = PBXGroup; + children = ( + B3981F2E11132ED5009E2520 /* RoundedBox */, + 01E314A9110FF91C0058F210 /* Controllers */, + 01B0E80E1108B85A00ACF21B /* ChameleonPrefPane.h */, + 01B0E80F1108B85A00ACF21B /* ChameleonPrefPane.mm */, + B3981D3F1113292A009E2520 /* CustomTableView.h */, + 01A25D1B111108C80024EA7E /* CustomTableView.mm */, + ); + name = GUI; + sourceTree = ""; + }; + 01E314AB110FF95C0058F210 /* Utilities */ = { + isa = PBXGroup; + children = ( + 0154039614706D71008E088A /* PartitionInfoElement.h */, + 0154039714706D71008E088A /* PartitionInfoElement.mm */, + 0154039E14706EAC008E088A /* PartitionInfoManager.h */, + 0154039F14706EAC008E088A /* PartitionInfoManager.mm */, + 8485B9FD1482F640005DF2E4 /* SmbiosExtractor.h */, + 8485B9FE1482F640005DF2E4 /* SmbiosExtractor.mm */, + 01A25D1E111108C80024EA7E /* file_util.h */, + 01A25D2C111108C80024EA7E /* string_util.cpp */, + B3981D8311132A13009E2520 /* string_util.h */, + 01B0E8111108B85A00ACF21B /* ShellProcess.h */, + 01B0E8101108B85A00ACF21B /* ShellProcess.cpp */, + 01B0E8131108B85A00ACF21B /* PropertyList.h */, + 01B0E8121108B85A00ACF21B /* PropertyList.cpp */, + 01993565110AA9FA003B056E /* ChameleonPropertyList.h */, + 01993566110AA9FA003B056E /* ChameleonPropertyList.cpp */, + 01A25D20111108C80024EA7E /* KernOptionsParser.cpp */, + 01A25D21111108C80024EA7E /* KernOptionsParser.h */, + ); + name = Utilities; + sourceTree = ""; + }; + 089C166AFE841209C02AAC07 /* StartupPrefPane */ = { + isa = PBXGroup; + children = ( + 08FB77AFFE84173DC02AAC07 /* Classes */, + 32DBCFA10370C40200C91783 /* Other Sources */, + 089C167CFE841241C02AAC07 /* Resources */, + 089C1671FE841209C02AAC07 /* Frameworks and Libraries */, + 19C28FB8FE9D52D311CA2CBB /* Products */, + ); + name = StartupPrefPane; + sourceTree = ""; + }; + 089C1671FE841209C02AAC07 /* Frameworks and Libraries */ = { + isa = PBXGroup; + children = ( + 1058C7ACFEA557BF11CA2CBB /* Linked Frameworks */, + 1058C7AEFEA557BF11CA2CBB /* Other Frameworks */, + ); + name = "Frameworks and Libraries"; + sourceTree = ""; + }; + 089C167CFE841241C02AAC07 /* Resources */ = { + isa = PBXGroup; + children = ( + 61A9E7B11389404D00043B27 /* extractAcpi.sh */, + B3F3522D1125C0290051DFA5 /* Spanish.lproj */, + B316F508111C632B007EFE5E /* Images */, + B316F47A111C6087007EFE5E /* English.lproj */, + B316F470111C6056007EFE5E /* Italian.lproj */, + B316F459111C604B007EFE5E /* French.lproj */, + B316F460111C604B007EFE5E /* German.lproj */, + B3E370061115D2B000BBF949 /* Localizable.strings */, + 01A25D68111109FF0024EA7E /* cdBootCreator.sh */, + 01A25D69111109FF0024EA7E /* getDevProp.sh */, + 01A25D6A111109FF0024EA7E /* gfxutil */, + 01B0E8261108B89100ACF21B /* CREDITS */, + 8D202CF70486D31800D8A456 /* Info.plist */, + F506C042013D9D8C01CA16C8 /* Chameleon.xib */, + ); + name = Resources; + sourceTree = ""; + }; + 08FB77AFFE84173DC02AAC07 /* Classes */ = { + isa = PBXGroup; + children = ( + 84DDA06F148346AA00A7C8FF /* smbios */, + 01E314AA110FF9430058F210 /* GUI */, + 01E314AB110FF95C0058F210 /* Utilities */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7ACFEA557BF11CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + B3981F7C1113376C009E2520 /* QuartzCore.framework */, + 1058C7ADFEA557BF11CA2CBB /* Cocoa.framework */, + F506C035013D953901CA16C8 /* PreferencePanes.framework */, + 01B4591B146F6D13002C3699 /* DiskArbitration.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7AEFEA557BF11CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 089C1672FE841209C02AAC07 /* Foundation.framework */, + 089C167FFE841241C02AAC07 /* AppKit.framework */, + 01466A921104062500088464 /* Security.framework */, + 01466C29110408CC00088464 /* SecurityInterface.framework */, + 01466C371104091400088464 /* SecurityFoundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FB8FE9D52D311CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 011B2DE81113937D008A540F /* Chameleon.prefPane */, + ); + name = Products; + sourceTree = ""; + }; + 32DBCFA10370C40200C91783 /* Other Sources */ = { + isa = PBXGroup; + children = ( + 01E0E9501108F9ED004EF6E8 /* TODO */, + 01B0E8281108B89D00ACF21B /* version */, + 32DBCFA20370C41700C91783 /* StartupPrefPane_Prefix.pch */, + 01A40F74110550F4002A74CD /* CHANGES */, + 0196529A11066CC0009E8F2F /* README */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 84DDA06F148346AA00A7C8FF /* smbios */ = { + isa = PBXGroup; + children = ( + 84DDA070148346AA00A7C8FF /* smbios.cpp */, + 84DDA071148346AA00A7C8FF /* smbios.h */, + ); + name = smbios; + path = Sources/smbios; + sourceTree = ""; + }; + B316F459111C604B007EFE5E /* French.lproj */ = { + isa = PBXGroup; + children = ( + B316F45A111C604B007EFE5E /* Chameleon.strings */, + B316F45C111C604B007EFE5E /* Chameleon.xib */, + B316F45E111C604B007EFE5E /* Localizable.strings */, + ); + path = French.lproj; + sourceTree = ""; + }; + B316F460111C604B007EFE5E /* German.lproj */ = { + isa = PBXGroup; + children = ( + B316F461111C604B007EFE5E /* Chameleon.strings */, + B316F463111C604B007EFE5E /* Chameleon.xib */, + B316F465111C604B007EFE5E /* Localizable.strings */, + ); + path = German.lproj; + sourceTree = ""; + }; + B316F470111C6056007EFE5E /* Italian.lproj */ = { + isa = PBXGroup; + children = ( + B316F471111C6056007EFE5E /* Chameleon.strings */, + B316F473111C6056007EFE5E /* Chameleon.xib */, + B316F475111C6056007EFE5E /* Localizable.strings */, + ); + path = Italian.lproj; + sourceTree = ""; + }; + B316F47A111C6087007EFE5E /* English.lproj */ = { + isa = PBXGroup; + children = ( + B316F47B111C6087007EFE5E /* Chameleon.strings */, + B316F47D111C6087007EFE5E /* Chameleon.xib */, + B316F47F111C6087007EFE5E /* InfoPlist.strings */, + B316F481111C6087007EFE5E /* Localizable.strings */, + ); + path = English.lproj; + sourceTree = ""; + }; + B316F508111C632B007EFE5E /* Images */ = { + isa = PBXGroup; + children = ( + B316F509111C6339007EFE5E /* Chameleon.tiff */, + B316F4E6111C62FE007EFE5E /* Chameleon.icns */, + B316F4E7111C62FE007EFE5E /* advanced.png */, + B316F4E8111C62FE007EFE5E /* background.png */, + B316F4E9111C62FE007EFE5E /* CDROM.png */, + B316F4EA111C62FE007EFE5E /* cham.png */, + B316F4EB111C62FE007EFE5E /* chamsmall.png */, + B316F4EC111C62FE007EFE5E /* chip.png */, + B316F4ED111C62FE007EFE5E /* disk.png */, + B316F4EE111C62FE007EFE5E /* flag.png */, + B316F4EF111C62FE007EFE5E /* footer.png */, + B316F4F0111C62FE007EFE5E /* Linux.png */, + B316F4F1111C62FE007EFE5E /* MacOSX.png */, + B316F4F2111C62FE007EFE5E /* name.png */, + B316F4F3111C62FE007EFE5E /* plug.png */, + B316F4F4111C62FE007EFE5E /* syringe.png */, + B316F4F5111C62FE007EFE5E /* Windows.png */, + B316F4F6111C62FE007EFE5E /* wrench.png */, + ); + name = Images; + sourceTree = ""; + }; + B3981F2E11132ED5009E2520 /* RoundedBox */ = { + isa = PBXGroup; + children = ( + B398220A111349F5009E2520 /* RoundedBox.h */, + B398220B111349F5009E2520 /* RoundedBox.m */, + ); + name = RoundedBox; + sourceTree = ""; + }; + B3F3522D1125C0290051DFA5 /* Spanish.lproj */ = { + isa = PBXGroup; + children = ( + B3F3522E1125C0290051DFA5 /* Chameleon.strings */, + B3F352301125C0290051DFA5 /* Chameleon.xib */, + B3F352321125C0290051DFA5 /* Localizable.strings */, + ); + path = Spanish.lproj; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 8D202CE90486D31800D8A456 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D202CEA0486D31800D8A456 /* StartupPrefPane_Prefix.pch in Headers */, + 01B0E8141108B85A00ACF21B /* ChameleonPrefPane.h in Headers */, + 01B0E8171108B85A00ACF21B /* ShellProcess.h in Headers */, + 01B0E8191108B85A00ACF21B /* PropertyList.h in Headers */, + 019930E1110A0CB4003B056E /* BootSetupController.h in Headers */, + 019930E8110A0D80003B056E /* BootFlagsController.h in Headers */, + 019930FE110A0E6F003B056E /* PeripheralsController.h in Headers */, + 01993115110A0EB9003B056E /* AdvancedSetupController.h in Headers */, + 019931DD110A37FA003B056E /* PreferencesControllerBase.h in Headers */, + 01993567110AA9FA003B056E /* ChameleonPropertyList.h in Headers */, + 01A25D2E111108C80024EA7E /* AboutController.h in Headers */, + 01A25D3C111108C80024EA7E /* EfiInjectController.h in Headers */, + 01A25D3E111108C80024EA7E /* file_util.h in Headers */, + 01A25D3F111108C80024EA7E /* GroupControllerProtocol.h in Headers */, + 01A25D41111108C80024EA7E /* KernOptionsParser.h in Headers */, + 01A25D4A111108C80024EA7E /* SmbiosController.h in Headers */, + B3981D401113292A009E2520 /* CustomTableView.h in Headers */, + B3981D8411132A13009E2520 /* string_util.h in Headers */, + B398220D111349F5009E2520 /* RoundedBox.h in Headers */, + B3F8855D11146A460022CA5D /* TableViewsController.h in Headers */, + 01B3BBBF146DE24B00AEBCA4 /* CenterTextFieldCell.h in Headers */, + 0154039814706D71008E088A /* PartitionInfoElement.h in Headers */, + 015403A014706EAC008E088A /* PartitionInfoManager.h in Headers */, + 8485B9FF1482F640005DF2E4 /* SmbiosExtractor.h in Headers */, + 84DDA076148346AA00A7C8FF /* smbios.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 8D202CE80486D31800D8A456 /* CStartup */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1DBD214808BA80EA00186707 /* Build configuration list for PBXNativeTarget "CStartup" */; + buildPhases = ( + 8D202CE90486D31800D8A456 /* Headers */, + 8D202CEC0486D31800D8A456 /* Resources */, + 8D202CF00486D31800D8A456 /* Sources */, + 8D202CF20486D31800D8A456 /* Frameworks */, + 8D202CF50486D31800D8A456 /* Rez */, + ); + buildRules = ( + ); + comments = "Chameleon Startup PreferencePane By Rekursor, 1/17/2010.\n"; + dependencies = ( + ); + name = CStartup; + productInstallPath = "$(HOME)/Library/PreferencePanes"; + productName = StartupPrefPane; + productReference = 011B2DE81113937D008A540F /* Chameleon.prefPane */; + productType = "com.apple.product-type.bundle"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 089C1669FE841209C02AAC07 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + }; + buildConfigurationList = 1DBD214C08BA80EA00186707 /* Build configuration list for PBXProject "ChameleonPrefPane" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + de_DE, + it_IT, + Italian, + Spanish, + ); + mainGroup = 089C166AFE841209C02AAC07 /* StartupPrefPane */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D202CE80486D31800D8A456 /* CStartup */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D202CEC0486D31800D8A456 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D202CEF0486D31800D8A456 /* Chameleon.xib in Resources */, + 01A40F75110550F4002A74CD /* CHANGES in Resources */, + 0196529B11066CC0009E8F2F /* README in Resources */, + 01B0E8271108B89100ACF21B /* CREDITS in Resources */, + 01B0E8291108B89D00ACF21B /* version in Resources */, + 01E0E9511108F9ED004EF6E8 /* TODO in Resources */, + 01A25D6B111109FF0024EA7E /* cdBootCreator.sh in Resources */, + 01A25D6C111109FF0024EA7E /* getDevProp.sh in Resources */, + 01A25D6D111109FF0024EA7E /* gfxutil in Resources */, + B3E370081115D2B000BBF949 /* Localizable.strings in Resources */, + B316F46A111C604B007EFE5E /* Chameleon.strings in Resources */, + B316F46B111C604B007EFE5E /* Chameleon.xib in Resources */, + B316F46C111C604B007EFE5E /* Localizable.strings in Resources */, + B316F46D111C604B007EFE5E /* Chameleon.strings in Resources */, + B316F46E111C604B007EFE5E /* Chameleon.xib in Resources */, + B316F46F111C604B007EFE5E /* Localizable.strings in Resources */, + B316F477111C6056007EFE5E /* Chameleon.strings in Resources */, + B316F478111C6056007EFE5E /* Chameleon.xib in Resources */, + B316F479111C6056007EFE5E /* Localizable.strings in Resources */, + B316F483111C6087007EFE5E /* Chameleon.strings in Resources */, + B316F484111C6087007EFE5E /* Chameleon.xib in Resources */, + B316F485111C6087007EFE5E /* InfoPlist.strings in Resources */, + B316F486111C6087007EFE5E /* Localizable.strings in Resources */, + B316F4F7111C62FE007EFE5E /* Chameleon.icns in Resources */, + B316F4F8111C62FE007EFE5E /* advanced.png in Resources */, + B316F4F9111C62FE007EFE5E /* background.png in Resources */, + B316F4FA111C62FE007EFE5E /* CDROM.png in Resources */, + B316F4FB111C62FE007EFE5E /* cham.png in Resources */, + B316F4FC111C62FE007EFE5E /* chamsmall.png in Resources */, + B316F4FD111C62FE007EFE5E /* chip.png in Resources */, + B316F4FE111C62FE007EFE5E /* disk.png in Resources */, + B316F4FF111C62FE007EFE5E /* flag.png in Resources */, + B316F500111C62FE007EFE5E /* footer.png in Resources */, + B316F501111C62FE007EFE5E /* Linux.png in Resources */, + B316F502111C62FE007EFE5E /* MacOSX.png in Resources */, + B316F503111C62FE007EFE5E /* name.png in Resources */, + B316F504111C62FE007EFE5E /* plug.png in Resources */, + B316F505111C62FE007EFE5E /* syringe.png in Resources */, + B316F506111C62FE007EFE5E /* Windows.png in Resources */, + B316F507111C62FE007EFE5E /* wrench.png in Resources */, + B316F50A111C6339007EFE5E /* Chameleon.tiff in Resources */, + B3F352341125C0290051DFA5 /* Chameleon.strings in Resources */, + B3F352351125C0290051DFA5 /* Chameleon.xib in Resources */, + B3F352361125C0290051DFA5 /* Localizable.strings in Resources */, + 61A9E7B21389404D00043B27 /* extractAcpi.sh in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXRezBuildPhase section */ + 8D202CF50486D31800D8A456 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXRezBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D202CF00486D31800D8A456 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 01B0E8151108B85A00ACF21B /* ChameleonPrefPane.mm in Sources */, + 01B0E8161108B85A00ACF21B /* ShellProcess.cpp in Sources */, + 01B0E8181108B85A00ACF21B /* PropertyList.cpp in Sources */, + 019930E2110A0CB4003B056E /* BootSetupController.mm in Sources */, + 019930E9110A0D80003B056E /* BootFlagsController.mm in Sources */, + 019930FF110A0E6F003B056E /* PeripheralsController.mm in Sources */, + 01993116110A0EB9003B056E /* AdvancedSetupController.mm in Sources */, + 019931DE110A37FA003B056E /* PreferencesControllerBase.mm in Sources */, + 01993568110AA9FA003B056E /* ChameleonPropertyList.cpp in Sources */, + 01A25D2F111108C80024EA7E /* AboutController.mm in Sources */, + 01A25D3B111108C80024EA7E /* CustomTableView.mm in Sources */, + 01A25D3D111108C80024EA7E /* EfiInjectController.mm in Sources */, + 01A25D40111108C80024EA7E /* KernOptionsParser.cpp in Sources */, + 01A25D4B111108C80024EA7E /* SmbiosController.mm in Sources */, + 01A25D4C111108C80024EA7E /* string_util.cpp in Sources */, + B39822E911134F8B009E2520 /* RoundedBox.m in Sources */, + B3F8855E11146A460022CA5D /* TableViewsController.mm in Sources */, + 01B3BBC0146DE24B00AEBCA4 /* CenterTextFieldCell.mm in Sources */, + 0154039914706D71008E088A /* PartitionInfoElement.mm in Sources */, + 015403A114706EAC008E088A /* PartitionInfoManager.mm in Sources */, + 8485BA001482F640005DF2E4 /* SmbiosExtractor.mm in Sources */, + 84DDA075148346AA00A7C8FF /* smbios.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + B316F45A111C604B007EFE5E /* Chameleon.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F45B111C604B007EFE5E /* French */, + ); + name = Chameleon.strings; + sourceTree = ""; + }; + B316F45C111C604B007EFE5E /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + B316F45D111C604B007EFE5E /* French */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; + B316F45E111C604B007EFE5E /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F45F111C604B007EFE5E /* French */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + B316F461111C604B007EFE5E /* Chameleon.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F462111C604B007EFE5E /* German */, + ); + name = Chameleon.strings; + sourceTree = ""; + }; + B316F463111C604B007EFE5E /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + B316F464111C604B007EFE5E /* German */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; + B316F465111C604B007EFE5E /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F466111C604B007EFE5E /* German */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + B316F471111C6056007EFE5E /* Chameleon.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F472111C6056007EFE5E /* Italian */, + ); + name = Chameleon.strings; + sourceTree = ""; + }; + B316F473111C6056007EFE5E /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + B316F474111C6056007EFE5E /* Italian */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; + B316F475111C6056007EFE5E /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F476111C6056007EFE5E /* Italian */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + B316F47B111C6087007EFE5E /* Chameleon.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F47C111C6087007EFE5E /* English */, + ); + name = Chameleon.strings; + sourceTree = ""; + }; + B316F47D111C6087007EFE5E /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + B316F47E111C6087007EFE5E /* English */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; + B316F47F111C6087007EFE5E /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F480111C6087007EFE5E /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + B316F481111C6087007EFE5E /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B316F482111C6087007EFE5E /* English */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + B3E370061115D2B000BBF949 /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B3E370071115D2B000BBF949 /* English */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + B3F3522E1125C0290051DFA5 /* Chameleon.strings */ = { + isa = PBXVariantGroup; + children = ( + B3F3522F1125C0290051DFA5 /* Spanish */, + ); + name = Chameleon.strings; + sourceTree = ""; + }; + B3F352301125C0290051DFA5 /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + B3F352311125C0290051DFA5 /* Spanish */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; + B3F352321125C0290051DFA5 /* Localizable.strings */ = { + isa = PBXVariantGroup; + children = ( + B3F352331125C0290051DFA5 /* Spanish */, + ); + name = Localizable.strings; + sourceTree = ""; + }; + F506C042013D9D8C01CA16C8 /* Chameleon.xib */ = { + isa = PBXVariantGroup; + children = ( + F506C043013D9D8C01CA16C8 /* English */, + ); + name = Chameleon.xib; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 1DBD214908BA80EA00186707 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CONFIGURATION_BUILD_DIR = build/Debug; + COPY_PHASE_STRIP = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)\"", + ); + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_GC = supported; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = StartupPrefPane_Prefix.pch; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Library/PreferencePanes"; + PRODUCT_NAME = Chameleon; + WRAPPER_EXTENSION = prefPane; + ZERO_LINK = YES; + }; + name = Debug; + }; + 1DBD214A08BA80EA00186707 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)\"", + ); + GCC_ENABLE_OBJC_GC = supported; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = StartupPrefPane_Prefix.pch; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Library/PreferencePanes"; + PRODUCT_NAME = Chameleon; + VALID_ARCHS = "i386 x86_64"; + WRAPPER_EXTENSION = prefPane; + }; + name = Release; + }; + 1DBD214D08BA80EA00186707 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + DEPLOYMENT_LOCATION = YES; + DSTROOT = /; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_GC = supported; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INSTALL_PATH = "~/Library/PreferencePanes"; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx10.6; + VALID_ARCHS = "i386 x86_64"; + }; + name = Debug; + }; + 1DBD214E08BA80EA00186707 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_GC = supported; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + SDKROOT = macosx10.6; + VALID_ARCHS = "i386 x86_64"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1DBD214808BA80EA00186707 /* Build configuration list for PBXNativeTarget "CStartup" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DBD214908BA80EA00186707 /* Debug */, + 1DBD214A08BA80EA00186707 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1DBD214C08BA80EA00186707 /* Build configuration list for PBXProject "ChameleonPrefPane" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DBD214D08BA80EA00186707 /* Debug */, + 1DBD214E08BA80EA00186707 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 089C1669FE841209C02AAC07 /* Project object */; +} Index: branches/ErmaC/ChameleonPrefPane/CHANGES =================================================================== --- branches/ErmaC/ChameleonPrefPane/CHANGES (revision 0) +++ branches/ErmaC/ChameleonPrefPane/CHANGES (revision 396) @@ -0,0 +1,52 @@ +- OSX 10.5 officially not supported anymore, focus on SL and Lion only +- Added table view direct edition of partition name +- Added Rescue Boot Disk ISO creation utility integration in Boot Setup +- Added Partition UUID (OS X standard uuid, so chamelon ntfs/fat partition uuid's are for now not compatible). +- Added new Partition Extractor engine, complety rewritten in objective c. +- Added About Dialog, made the displayed version numbers all rely on the info.plist file +- Fixed refresh and on checked associated button state, made sure the string is disabled if value is 0 +- Fixed crash when using swap hd 0<->2 +- 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! +- Create a makebin script (to enhance) that creates zip archives and sets a version + in the bin dir +- Fixed default value to Yes not included in the boot config would not be checked + by default in interface +- Added RestartFix boot option +- Added forceBootConfigPath to the tabview panel for quicker setup, so now no + need to edit the preferences file manually. +- Added SystemId +- Added full bootOptions loading into the interface with no custom code needed, + all loading features are implemented in base class PreferencesControllerBase, + with the automatic parser engine. +- Implemented the bootOption automatic and generic parsing engine. + Now any option is parsed from bootFile automatically (incl. defaults) + thanks to the underlying engine based on a dynamically constructed + id to desc map and also to the group panel registration init process +- Fixed dmg archives would appear in dynamic partition listing +- Added FREEZE (lock) features, see README. +- Refined cosmetics for the GUI +- Added images icon on the first column of each partition entries +- Added APSL and README for instructions +- Added swap disk (01 and 02) fixes +- Added Rename and Hide display from bootConfig +- Fixed 10.5 and 10.6 would crash because of memory references erased +- Added more bootConfig paths and an option to force it + (i.e:if not found automatically) +- Added new paths for bootConfig search now looking in this order: + "/", + "/Extra/", + "/Volumes/EFI/Extra/", + "/Volumes/Cham/Extra/", + "/Volumes/BootLoaders/Extra/", + "/Library/Preferences/SystemConfiguration/", +- Change the restart by replacing the internal reboot shell cmd by an applescript + eq. to the AppleMenu/Restart command +- Fixed nib file loading and initialization problem, possibly fixes the lock pb as well? +- Added Apple_Free filter to filter these free partitions + Index: branches/ErmaC/ChameleonPrefPane/StartupPrefPane_Prefix.pch =================================================================== --- branches/ErmaC/ChameleonPrefPane/StartupPrefPane_Prefix.pch (revision 0) +++ branches/ErmaC/ChameleonPrefPane/StartupPrefPane_Prefix.pch (revision 396) @@ -0,0 +1,8 @@ +// +// Prefix header for all source files of the 'StartupPrefPane' target in the 'StartupPrefPane' project. +// + +#ifdef __OBJC__ + #import + #import +#endif Index: branches/ErmaC/ChameleonPrefPane/Resources/extractAcpi.sh =================================================================== --- branches/ErmaC/ChameleonPrefPane/Resources/extractAcpi.sh (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Resources/extractAcpi.sh (revision 396) @@ -0,0 +1,40 @@ +#/bin/sh +set -e +set -u +ACPI_DIR="${HOME}/Desktop/Chameleon/ACPI" +ioreg= +if [[ $# -eq 1 && -f "$1" ]]; then + ioreg="$(grep ' "ACPI Tables" =' "$1")" +else + ioreg="$(ioreg -lw0 | grep ' "ACPI Tables" =')" +fi + +ioreg=${ioreg#*\{} +ioreg=${ioreg%\}*} + +declare -a tables +ioreg="${ioreg//,/ }" + +tables=($ioreg) + +echo "Number of ACPI tables: ${#tables[@]}" +re='"([^"]+)"=<([^>]+)>' +dumped=0 +for t in "${tables[@]}"; do + #echo Table: $t + if [[ $t =~ $re ]]; then + [[ $dumped = 0 ]] && mkdir -p ${ACPI_DIR} + ((++dumped)) + echo + echo "Dumping table: ${BASH_REMATCH[1]}" + #echo "Content: ${BASH_REMATCH[2]}" + echo "${BASH_REMATCH[2]}" | xxd -r -p > "${ACPI_DIR}/${BASH_REMATCH[1]}".aml + echo "AML code dumped to \"${ACPI_DIR}/${BASH_REMATCH[1]}.aml\"" + type -p iasl &>/dev/null && iasl -d "${ACPI_DIR}/${BASH_REMATCH[1]}".aml \ + && echo "DSL code decompiled to \"${ACPI_DIR}/${BASH_REMATCH[1]}.dsl\"" + echo + fi +done +#if [[ $dumped -gt 0 ]]; then +# zip -r ACPI.zip ACPI && echo "Zipped your ACPI tables in file \"ACPI.zip\"" +#fi Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/extractAcpi.sh ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Resources/footer.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/footer.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/gfxutil =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/gfxutil ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/Chameleon.tiff =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/Chameleon.tiff ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/Linux.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/Linux.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/chamsmall.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/chamsmall.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/Chameleon.icns =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/Chameleon.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/CDROM.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/CDROM.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/iasl =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/iasl ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/getDevProp.sh =================================================================== --- branches/ErmaC/ChameleonPrefPane/Resources/getDevProp.sh (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Resources/getDevProp.sh (revision 396) @@ -0,0 +1,38 @@ +#!/bin/sh + +# getDevProp.sh +# smbios-cham +# +# Created by ronan & thomas on 12/08/09. +# Copyright 2009 org.darwinx86.app. All rights reserved. +# adapted for Chameleon control panel use by Rekursor +# +# Directories +cdir=`dirname $0` +tmpDir=/tmp/Chameleon +dmpdir=${tmpDir}/devprop + +# Create a dump directory +if [[ ! -d $dmpdir ]];then + mkdir -p $dmpdir +fi +if [[ ! -d $tmpDir ]];then + mkdir -p $tmpDir +fi +# Dump Device properties +ioreg -lw0 -p IODeviceTree -n efi -r -x |grep device-properties | sed 's/.*.*//;' | cat > $dmpdir/chameleon-devprop.hex + +$cdir/gfxutil -s -n -i hex -o xml $dmpdir/chameleon-devprop.hex $dmpdir/chameleon-devprop.plist + + +# Splash the result up !! +open $dmpdir/chameleon-devprop.plist +if [[ ! -d $dmpdir ]];then + rm -r $dmpdir +fi +if [[ ! -d $tmpDir ]];then + rm -r $tmpDir +fi + +#end +#echo $? \ No newline at end of file Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/getDevProp.sh ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Resources/advanced.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/advanced.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/plug.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/plug.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/cham.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/cham.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/flag.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/flag.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/background.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/background.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/cdBootCreator.sh =================================================================== --- branches/ErmaC/ChameleonPrefPane/Resources/cdBootCreator.sh (revision 0) +++ branches/ErmaC/ChameleonPrefPane/Resources/cdBootCreator.sh (revision 396) @@ -0,0 +1,137 @@ +#!/bin/sh + +# Copyright 2009 org.darwinx86.app. All rights reserved. +# + +# Modified Nov 18th 2011 by Rekursor +# Added 2 parameters to specify repectively : +# $1 = Extra dir location +# $2 = cdboot file dir location +# Added error return codes to be able to better interface the script from the prefpane call +# Fixed BootCD.iso would be generated in the current script working directory +# + + +# Directories +if [[ $# < 1 ]];then + extra="/Extra" +else + extra="$1" +fi + +if [[ $# < 2 ]];then + cdBootDir="${extra}" +else + cdBootDir="$2" +fi + +echo "Extra dir is ${extra} and cdboot dir is ${cdBootDir}" +mydir=`dirname $0` + +tempDir=/tmp +finaldir=~/Desktop/Chameleon +isodir=/tmp/newiso +extradir=/tmp/newiso/Extra +preDir=/tmp/newiso/Extra/Preboot +prebootDir="${preDir}/Extra" +bkpdir="${finaldir}/Previous-dmg" + +echo "Starting CD Boot ISO creation script..." + +#errors +if ([ ! -f $extra/Extensions.mkext ] && [ ! -d $extra/Extensions ]);then + echo "*** Error: no Extensions.mkext or Extensions folder. One of them is required" + exit 1 +fi + +if [ ! -f $extra/org.chameleon.Boot.plist ];then + echo "*** Error: no org.chameleon.Boot.plist found. File required" + exit 1 +fi + +if [ ! -f $cdBootDir/cdboot ];then + echo "*** Error: no cdboot found. File required" + exit 1 +fi + +# Create a work directory +echo " Creating folders ..." +#copy Extra files to temp directory +if ([ ! -d $prebootDir ]);then + mkdir -p $prebootDir +fi +if ([ ! -d $bkpdir ]);then + mkdir -p $bkpdir +fi +echo " Copying files ..." + +if [ -f $cdBootDir/cdboot ];then + cp -R $cdBootDir/cdboot $isodir +fi + +if [ -f $extra/dsdt.aml ];then + cp -R $extra/dsdt.aml $prebootDir +fi + +if [ -f $extra/DSDT.aml ];then + cp -R $extra/DSDT.aml $prebootDir +fi + +if [ -f $extra/NVIDIA.ROM ];then + cp -R $extra/NVIDIA.ROM $prebootDir +fi + +if [ -f $extra/smbios.plist ];then + cp -R $extra/smbios.plist $prebootDir +fi + +if [ -f $extra/Extensions.mkext ];then + cp -R $extra/Extensions.mkext $prebootDir +fi + +if [ -d $extra/Extensions ];then + cp -Rp $extra/Extensions $prebootDir +fi + +if [ -f $extra/org.chameleon.Boot.plist ];then + cp -R $extra/org.chameleon.Boot.plist $prebootDir +fi +if [ -f $tempDir/org.chameleon.Boot.plist ];then + cp -R $tempDir/org.chameleon.Boot.plist $extradir +fi + +echo " Files copied in temp folder" + +# ramdisk creator +if [ -f $extradir/Preboot.dmg ];then + rm $extradir/Preboot.dmg +fi +hdiutil create -srcfolder $preDir/ -layout GPTSPUD -fs HFS+ -format UDRW -volname Preboot $extradir/Preboot.dmg +rm -R $preDir +echo " Ram disk created" + +# boot cd creator +hdiutil makehybrid -o $tempDir/BootCD.iso $isodir/ -iso -hfs -joliet -eltorito-boot $isodir/cdboot -no-emul-boot -hfs-volume-name "Boot CD" -joliet-volume-name "Boot CD" +if [ ! -f $tempDir/BootCD.iso ];then + echo "*** Error: couldn't Create ISO Image." + exit 1 +else + echo " Hybrid image created" +fi + +# Create output and backup directories +if [ -f $finaldir/BootCD.iso ];then + if [ ! -d $bkpdir ];then + mkdir -p $bkpdir + echo " Backup folder created" + fi + mv -f $finaldir/BootCD.iso $bkpdir/BootCd-$(date +"%d-%y-%Hh%M").iso + echo " Previous ISO moved into backup folder" +fi +mv $tempDir/BootCD.iso $finaldir +echo " ISO moved on desktop" + +# cleanup +rm -rf $isodir/* +echo " ISO created successfully" +exit 0 \ No newline at end of file Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/cdBootCreator.sh ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/Resources/name.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/name.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/syringe.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/syringe.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/chip.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/chip.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/wrench.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/wrench.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/disk.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/disk.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/Windows.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/Windows.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/Resources/MacOSX.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/Resources/MacOSX.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/test_util/test_util_Prefix.pch =================================================================== --- branches/ErmaC/ChameleonPrefPane/test_util/test_util_Prefix.pch (revision 0) +++ branches/ErmaC/ChameleonPrefPane/test_util/test_util_Prefix.pch (revision 396) @@ -0,0 +1,7 @@ +// +// Prefix header for all source files of the 'test_util' target in the 'test_util' project. +// + +#ifdef __OBJC__ + #import +#endif Index: branches/ErmaC/ChameleonPrefPane/test_util/test_util.mm =================================================================== --- branches/ErmaC/ChameleonPrefPane/test_util/test_util.mm (revision 0) +++ branches/ErmaC/ChameleonPrefPane/test_util/test_util.mm (revision 396) @@ -0,0 +1,79 @@ +// +// ChameleonPrefPane +// +// test utility for the chameleon preference pane +// +// Created by Rekursor on 11-11-12. +// + +#import +#import "PartitionInfoElement.h" +#import "PartitionInfoManager.h" +#import "SmbiosExtractor.h" +#import "ShellProcess.h" + +void testDiskInfoWith(NSString * bsd) +{ + PartitionInfoElement* di = [[PartitionInfoElement alloc] initWithBSDName: bsd]; + + if ([di isValid] && [di.vUUID length] >0) + { +#if 0 + NSLog(@"bsdName %@", [di bsdName] ); + NSLog(@"deviceProtocol %@", [ di devProtocol] ); + NSLog(@"volumeName %@", [di vName]); + NSLog(@"volumeKind %@", [di vKind]); + NSLog(@"deviceInternal %i", (int) [ di devInternal] ); + NSLog(@"volumeUUID %@", [di vUUID]); + NSLog(@"mediaPath %@", [di mediaPath]); + NSLog(@"mediaRemovable %i", (int) [di mediaRemovable]); + + NSLog(@"\n"); + +#else + int i = 0; + for (NSString* o in di.descDict) + { + id value = [di.descDict objectForKey: o]; + if (value == nil) value = @""; + NSLog(@"Key: %@, Value: %@", o, value ); + i++; + } +#endif + } + + [di release]; +} + +int main (int argc, const char * argv[]) +{ + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + + SmbiosExtractor* smbe = [[SmbiosExtractor alloc] init]; + [smbe save:@"/tmp/chmIOreg.plist"]; + NSLog(@"SMBIOS = \n%@", smbe); + +#if 1 + NSArray* arr = [PartitionInfoElement createBSDPartitionList]; + NSLog(@"List of existing bsd disk partitions:\n %@", arr); + + for (PartitionInfoElement* part in [PartsInfoMgr parts]) + NSLog(@"PartionBootable = %i\n%@", (int) [part isBootable], part); +/* + [PartsInfoMgr hideParts: @"\"Macintosh HD\" hd(0,3)"]; + [PartsInfoMgr hideParts: @"disk0s2 hd(0,2) "]; + [PartsInfoMgr hideParts: @"BOOTCAMP \"Macintosh HD\""]; + [PartsInfoMgr hideParts: @"3E9C6A92-3737-4C0F-9003-20B2482D61FB"]; +*/ + [PartsInfoMgr renameParts: @"hd(0,2) \"Test\""]; + [PartsInfoMgr renameParts: @"hd(0,3) Fantastic"]; + [PartsInfoMgr renameParts: @"hd(0,4) \"A BC\"; hd(0,2) DEF"]; + +#else + testDiskInfoWith(@"disk0s2"); + testDiskInfoWith(@"disk0s3"); +#endif + + [pool drain]; + return 0; +} Index: branches/ErmaC/ChameleonPrefPane/test_util/test_util.xcodeproj/project.pbxproj =================================================================== --- branches/ErmaC/ChameleonPrefPane/test_util/test_util.xcodeproj/project.pbxproj (revision 0) +++ branches/ErmaC/ChameleonPrefPane/test_util/test_util.xcodeproj/project.pbxproj (revision 396) @@ -0,0 +1,323 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 45; + objects = { + +/* Begin PBXBuildFile section */ + 0144DE0E146F8F0300731EAB /* ChameleonPropertyList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0144DE03146F8F0300731EAB /* ChameleonPropertyList.cpp */; }; + 0144DE0F146F8F0300731EAB /* KernOptionsParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0144DE06146F8F0300731EAB /* KernOptionsParser.cpp */; }; + 0144DE10146F8F0300731EAB /* PropertyList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0144DE08146F8F0300731EAB /* PropertyList.cpp */; }; + 0144DE11146F8F0300731EAB /* ShellProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0144DE0A146F8F0300731EAB /* ShellProcess.cpp */; }; + 0144DE12146F8F0300731EAB /* string_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0144DE0C146F8F0300731EAB /* string_util.cpp */; }; + 0144DE85146F8FE400731EAB /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0144DE84146F8FE400731EAB /* QuartzCore.framework */; }; + 0144DE89146F8FF000731EAB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0144DE88146F8FF000731EAB /* Cocoa.framework */; }; + 0144DE8F146F8FFF00731EAB /* PreferencePanes.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0144DE8E146F8FFF00731EAB /* PreferencePanes.framework */; }; + 0144DED7146F90EF00731EAB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0144DED6146F90EF00731EAB /* Security.framework */; }; + 015403AE1470705C008E088A /* PartitionInfoManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 015403AD1470705C008E088A /* PartitionInfoManager.mm */; }; + 01B45A6A146F721E002C3699 /* PartitionInfoElement.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01B45A69146F721E002C3699 /* PartitionInfoElement.mm */; }; + 01B45A7D146F72F0002C3699 /* DiskArbitration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01B45A7C146F72F0002C3699 /* DiskArbitration.framework */; }; + 8485BA071482F662005DF2E4 /* SmbiosExtractor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8485BA061482F662005DF2E4 /* SmbiosExtractor.mm */; }; + 84DDA1371483527000A7C8FF /* smbios.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84DDA1321483527000A7C8FF /* smbios.cpp */; }; + 8DD76F9A0486AA7600D96B5E /* test_util.mm in Sources */ = {isa = PBXBuildFile; fileRef = 08FB7796FE84155DC02AAC07 /* test_util.mm */; settings = {ATTRIBUTES = (); }; }; + 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08FB779EFE84155DC02AAC07 /* Foundation.framework */; }; + 8DD76F9F0486AA7600D96B5E /* test_util.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = C6859EA3029092ED04C91782 /* test_util.1 */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 8DD76F9E0486AA7600D96B5E /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 8; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + 8DD76F9F0486AA7600D96B5E /* test_util.1 in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 1; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 0144DE03146F8F0300731EAB /* ChameleonPropertyList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ChameleonPropertyList.cpp; path = ../Sources/ChameleonPropertyList.cpp; sourceTree = SOURCE_ROOT; }; + 0144DE04146F8F0300731EAB /* ChameleonPropertyList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChameleonPropertyList.h; path = ../Sources/ChameleonPropertyList.h; sourceTree = SOURCE_ROOT; }; + 0144DE05146F8F0300731EAB /* file_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = file_util.h; path = ../Sources/file_util.h; sourceTree = SOURCE_ROOT; }; + 0144DE06146F8F0300731EAB /* KernOptionsParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KernOptionsParser.cpp; path = ../Sources/KernOptionsParser.cpp; sourceTree = SOURCE_ROOT; }; + 0144DE07146F8F0300731EAB /* KernOptionsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KernOptionsParser.h; path = ../Sources/KernOptionsParser.h; sourceTree = SOURCE_ROOT; }; + 0144DE08146F8F0300731EAB /* PropertyList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyList.cpp; path = ../Sources/PropertyList.cpp; sourceTree = SOURCE_ROOT; }; + 0144DE09146F8F0300731EAB /* PropertyList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropertyList.h; path = ../Sources/PropertyList.h; sourceTree = SOURCE_ROOT; }; + 0144DE0A146F8F0300731EAB /* ShellProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ShellProcess.cpp; path = ../Sources/ShellProcess.cpp; sourceTree = SOURCE_ROOT; }; + 0144DE0B146F8F0300731EAB /* ShellProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ShellProcess.h; path = ../Sources/ShellProcess.h; sourceTree = SOURCE_ROOT; }; + 0144DE0C146F8F0300731EAB /* string_util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cpp; path = ../Sources/string_util.cpp; sourceTree = SOURCE_ROOT; }; + 0144DE0D146F8F0300731EAB /* string_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = ../Sources/string_util.h; sourceTree = SOURCE_ROOT; }; + 0144DE84146F8FE400731EAB /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = ../../../../../../../../System/Library/Frameworks/QuartzCore.framework; sourceTree = SOURCE_ROOT; }; + 0144DE88146F8FF000731EAB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = ../../../../../../../../System/Library/Frameworks/Cocoa.framework; sourceTree = SOURCE_ROOT; }; + 0144DE8E146F8FFF00731EAB /* PreferencePanes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PreferencePanes.framework; path = ../../../../../../../../System/Library/Frameworks/PreferencePanes.framework; sourceTree = SOURCE_ROOT; }; + 0144DED6146F90EF00731EAB /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = "../../../../../../../../Volumes/Macintosh HD/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Security.framework"; sourceTree = SOURCE_ROOT; }; + 015403AC1470705C008E088A /* PartitionInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PartitionInfoManager.h; path = ../Sources/PartitionInfoManager.h; sourceTree = SOURCE_ROOT; }; + 015403AD1470705C008E088A /* PartitionInfoManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PartitionInfoManager.mm; path = ../Sources/PartitionInfoManager.mm; sourceTree = SOURCE_ROOT; }; + 01B45A68146F721E002C3699 /* PartitionInfoElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PartitionInfoElement.h; path = ../Sources/PartitionInfoElement.h; sourceTree = SOURCE_ROOT; }; + 01B45A69146F721E002C3699 /* PartitionInfoElement.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PartitionInfoElement.mm; path = ../Sources/PartitionInfoElement.mm; sourceTree = SOURCE_ROOT; }; + 01B45A7C146F72F0002C3699 /* DiskArbitration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiskArbitration.framework; path = "../../../../../../../../Volumes/Macintosh HD/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/DiskArbitration.framework"; sourceTree = SOURCE_ROOT; }; + 08FB7796FE84155DC02AAC07 /* test_util.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = test_util.mm; sourceTree = ""; }; + 08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32A70AAB03705E1F00C91783 /* test_util_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test_util_Prefix.pch; sourceTree = ""; }; + 8485BA051482F662005DF2E4 /* SmbiosExtractor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmbiosExtractor.h; path = ../Sources/SmbiosExtractor.h; sourceTree = SOURCE_ROOT; }; + 8485BA061482F662005DF2E4 /* SmbiosExtractor.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = SmbiosExtractor.mm; path = ../Sources/SmbiosExtractor.mm; sourceTree = SOURCE_ROOT; }; + 84DDA1321483527000A7C8FF /* smbios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smbios.cpp; sourceTree = ""; }; + 84DDA1331483527000A7C8FF /* smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = ""; }; + 8DD76FA10486AA7600D96B5E /* test_util */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test_util; sourceTree = BUILT_PRODUCTS_DIR; }; + C6859EA3029092ED04C91782 /* test_util.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = test_util.1; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8DD76F9B0486AA7600D96B5E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */, + 01B45A7D146F72F0002C3699 /* DiskArbitration.framework in Frameworks */, + 0144DE85146F8FE400731EAB /* QuartzCore.framework in Frameworks */, + 0144DE89146F8FF000731EAB /* Cocoa.framework in Frameworks */, + 0144DE8F146F8FFF00731EAB /* PreferencePanes.framework in Frameworks */, + 0144DED7146F90EF00731EAB /* Security.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0144DE13146F8F6F00731EAB /* PrefPaneFIles */ = { + isa = PBXGroup; + children = ( + 8485BA051482F662005DF2E4 /* SmbiosExtractor.h */, + 8485BA061482F662005DF2E4 /* SmbiosExtractor.mm */, + 0144DE03146F8F0300731EAB /* ChameleonPropertyList.cpp */, + 0144DE04146F8F0300731EAB /* ChameleonPropertyList.h */, + 0144DE05146F8F0300731EAB /* file_util.h */, + 0144DE06146F8F0300731EAB /* KernOptionsParser.cpp */, + 0144DE07146F8F0300731EAB /* KernOptionsParser.h */, + 0144DE08146F8F0300731EAB /* PropertyList.cpp */, + 0144DE09146F8F0300731EAB /* PropertyList.h */, + 0144DE0A146F8F0300731EAB /* ShellProcess.cpp */, + 0144DE0B146F8F0300731EAB /* ShellProcess.h */, + 0144DE0C146F8F0300731EAB /* string_util.cpp */, + 0144DE0D146F8F0300731EAB /* string_util.h */, + 01B45A68146F721E002C3699 /* PartitionInfoElement.h */, + 01B45A69146F721E002C3699 /* PartitionInfoElement.mm */, + 015403AC1470705C008E088A /* PartitionInfoManager.h */, + 015403AD1470705C008E088A /* PartitionInfoManager.mm */, + ); + name = PrefPaneFIles; + sourceTree = ""; + }; + 08FB7794FE84155DC02AAC07 /* test_util */ = { + isa = PBXGroup; + children = ( + 08FB7795FE84155DC02AAC07 /* Source */, + C6859EA2029092E104C91782 /* Documentation */, + 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */, + 1AB674ADFE9D54B511CA2CBB /* Products */, + ); + name = test_util; + sourceTree = ""; + }; + 08FB7795FE84155DC02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 84DDA1311483527000A7C8FF /* smbios */, + 0144DE13146F8F6F00731EAB /* PrefPaneFIles */, + 32A70AAB03705E1F00C91783 /* test_util_Prefix.pch */, + 08FB7796FE84155DC02AAC07 /* test_util.mm */, + ); + name = Source; + sourceTree = ""; + }; + 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */ = { + isa = PBXGroup; + children = ( + 0144DED6146F90EF00731EAB /* Security.framework */, + 0144DE8E146F8FFF00731EAB /* PreferencePanes.framework */, + 0144DE88146F8FF000731EAB /* Cocoa.framework */, + 0144DE84146F8FE400731EAB /* QuartzCore.framework */, + 01B45A7C146F72F0002C3699 /* DiskArbitration.framework */, + 08FB779EFE84155DC02AAC07 /* Foundation.framework */, + ); + name = "External Frameworks and Libraries"; + sourceTree = ""; + }; + 1AB674ADFE9D54B511CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8DD76FA10486AA7600D96B5E /* test_util */, + ); + name = Products; + sourceTree = ""; + }; + 84DDA1311483527000A7C8FF /* smbios */ = { + isa = PBXGroup; + children = ( + 84DDA1321483527000A7C8FF /* smbios.cpp */, + 84DDA1331483527000A7C8FF /* smbios.h */, + ); + name = smbios; + path = ../Sources/smbios; + sourceTree = SOURCE_ROOT; + }; + C6859EA2029092E104C91782 /* Documentation */ = { + isa = PBXGroup; + children = ( + C6859EA3029092ED04C91782 /* test_util.1 */, + ); + name = Documentation; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8DD76F960486AA7600D96B5E /* test_util */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "test_util" */; + buildPhases = ( + 8DD76F990486AA7600D96B5E /* Sources */, + 8DD76F9B0486AA7600D96B5E /* Frameworks */, + 8DD76F9E0486AA7600D96B5E /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = test_util; + productInstallPath = "$(HOME)/bin"; + productName = test_util; + productReference = 8DD76FA10486AA7600D96B5E /* test_util */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 08FB7793FE84155DC02AAC07 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "test_util" */; + compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 08FB7794FE84155DC02AAC07 /* test_util */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8DD76F960486AA7600D96B5E /* test_util */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 8DD76F990486AA7600D96B5E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DD76F9A0486AA7600D96B5E /* test_util.mm in Sources */, + 01B45A6A146F721E002C3699 /* PartitionInfoElement.mm in Sources */, + 0144DE0E146F8F0300731EAB /* ChameleonPropertyList.cpp in Sources */, + 0144DE0F146F8F0300731EAB /* KernOptionsParser.cpp in Sources */, + 0144DE10146F8F0300731EAB /* PropertyList.cpp in Sources */, + 0144DE11146F8F0300731EAB /* ShellProcess.cpp in Sources */, + 0144DE12146F8F0300731EAB /* string_util.cpp in Sources */, + 015403AE1470705C008E088A /* PartitionInfoManager.mm in Sources */, + 8485BA071482F662005DF2E4 /* SmbiosExtractor.mm in Sources */, + 84DDA1371483527000A7C8FF /* smbios.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 1DEB927508733DD40010E9CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = test_util_Prefix.pch; + INSTALL_PATH = /usr/local/bin; + PRODUCT_NAME = test_util; + }; + name = Debug; + }; + 1DEB927608733DD40010E9CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = test_util_Prefix.pch; + INSTALL_PATH = /usr/local/bin; + PRODUCT_NAME = test_util; + }; + name = Release; + }; + 1DEB927908733DD40010E9CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_GC = supported; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + ONLY_ACTIVE_ARCH = YES; + PREBINDING = NO; + SDKROOT = macosx10.6; + }; + name = Debug; + }; + 1DEB927A08733DD40010E9CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_GC = supported; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + PREBINDING = NO; + SDKROOT = macosx10.6; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "test_util" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB927508733DD40010E9CD /* Debug */, + 1DEB927608733DD40010E9CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "test_util" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB927908733DD40010E9CD /* Debug */, + 1DEB927A08733DD40010E9CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; +} Index: branches/ErmaC/ChameleonPrefPane/test_util/test_util.1 =================================================================== --- branches/ErmaC/ChameleonPrefPane/test_util/test_util.1 (revision 0) +++ branches/ErmaC/ChameleonPrefPane/test_util/test_util.1 (revision 396) @@ -0,0 +1,79 @@ +.\"Modified from man(1) of FreeBSD, the NetBSD mdoc.template, and mdoc.samples. +.\"See Also: +.\"man mdoc.samples for a complete listing of options +.\"man mdoc for the short list of editing options +.\"/usr/share/misc/mdoc.template +.Dd 11-11-12 \" DATE +.Dt test_util 1 \" Program name and manual section number +.Os Darwin +.Sh NAME \" Section Header - required - don't modify +.Nm test_util, +.\" The following lines are read in generating the apropos(man -k) database. Use only key +.\" words here as the database is built based on the words here and in the .ND line. +.Nm Other_name_for_same_program(), +.Nm Yet another name for the same program. +.\" Use .Nm macro to designate other names for the documented program. +.Nd This line parsed for whatis database. +.Sh SYNOPSIS \" Section Header - required - don't modify +.Nm +.Op Fl abcd \" [-abcd] +.Op Fl a Ar path \" [-a path] +.Op Ar file \" [file] +.Op Ar \" [file ...] +.Ar arg0 \" Underlined argument - use .Ar anywhere to underline +arg2 ... \" Arguments +.Sh DESCRIPTION \" Section Header - required - don't modify +Use the .Nm macro to refer to your program throughout the man page like such: +.Nm +Underlining is accomplished with the .Ar macro like this: +.Ar underlined text . +.Pp \" Inserts a space +A list of items with descriptions: +.Bl -tag -width -indent \" Begins a tagged list +.It item a \" Each item preceded by .It macro +Description of item a +.It item b +Description of item b +.El \" Ends the list +.Pp +A list of flags and their descriptions: +.Bl -tag -width -indent \" Differs from above in tag removed +.It Fl a \"-a flag as a list item +Description of -a flag +.It Fl b +Description of -b flag +.El \" Ends the list +.Pp +.\" .Sh ENVIRONMENT \" May not be needed +.\" .Bl -tag -width "ENV_VAR_1" -indent \" ENV_VAR_1 is width of the string ENV_VAR_1 +.\" .It Ev ENV_VAR_1 +.\" Description of ENV_VAR_1 +.\" .It Ev ENV_VAR_2 +.\" Description of ENV_VAR_2 +.\" .El +.Sh FILES \" File used or created by the topic of the man page +.Bl -tag -width "/Users/joeuser/Library/really_long_file_name" -compact +.It Pa /usr/share/file_name +FILE_1 description +.It Pa /Users/joeuser/Library/really_long_file_name +FILE_2 description +.El \" Ends the list +.\" .Sh DIAGNOSTICS \" May not be needed +.\" .Bl -diag +.\" .It Diagnostic Tag +.\" Diagnostic informtion here. +.\" .It Diagnostic Tag +.\" Diagnostic informtion here. +.\" .El +.Sh SEE ALSO +.\" List links in ascending order by section, alphabetically within a section. +.\" Please do not reference files that do not exist without filing a bug report +.Xr a 1 , +.Xr b 1 , +.Xr c 1 , +.Xr a 2 , +.Xr b 2 , +.Xr a 3 , +.Xr b 3 +.\" .Sh BUGS \" Document known, unremedied bugs +.\" .Sh HISTORY \" Document history if command behaves in a unique manner \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/xibupdate_all =================================================================== --- branches/ErmaC/ChameleonPrefPane/xibupdate_all (revision 0) +++ branches/ErmaC/ChameleonPrefPane/xibupdate_all (revision 396) @@ -0,0 +1,12 @@ +echo "German" +cp English.lproj/Chameleon.xib German.lproj/ +./ibimport German.lproj/Chameleon +echo "Italian" +cp English.lproj/Chameleon.xib Italian.lproj/ +./ibimport Italian.lproj/Chameleon +echo "French" +cp English.lproj/Chameleon.xib French.lproj/ +./ibimport French.lproj/Chameleon +echo "Spanish" +cp English.lproj/Chameleon.xib Spanish.lproj/ +./ibimport Spanish.lproj/Chameleon Property changes on: branches/ErmaC/ChameleonPrefPane/xibupdate_all ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/ChameleonPrefPane/English.lproj/InfoPlist.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/English.lproj/InfoPlist.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/English.lproj/Chameleon.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/ChameleonPrefPane/English.lproj/Chameleon.strings ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/ChameleonPrefPane/English.lproj/Localizable.strings =================================================================== --- branches/ErmaC/ChameleonPrefPane/English.lproj/Localizable.strings (revision 0) +++ branches/ErmaC/ChameleonPrefPane/English.lproj/Localizable.strings (revision 396) @@ -0,0 +1,27 @@ +/* comment */ +"About" = "About"; + +/* comment */ +"Advanced" = "Advanced"; + +/* comment */ +"Bios" = "BIOS"; + +/* comment */ +"Boot_Flags" = "Boot Flags"; + +/* comment */ +"Boot_From" = "Startup Disk"; + +/* comment */ +"Boot_Setup" = "Boot Setup"; + +/* comment */ +"Efi_Inject" = "EFI Inject"; + +/* comment */ +"Peripherals" = "Peripherals"; + +/* error message 1*/ +"Error while parsing" = "ERROR123456"; +"Error searching for" = "ERROR123456"; \ No newline at end of file Index: branches/ErmaC/ChameleonPrefPane/English.lproj/Chameleon.xib =================================================================== --- branches/ErmaC/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 0) +++ branches/ErmaC/ChameleonPrefPane/English.lproj/Chameleon.xib (revision 396) @@ -0,0 +1,11852 @@ + + + + 1050 + 11C74 + 851 + 1138.23 + 567.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 851 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSPreferencePane + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{176, 644}, {668, 439}} + 1081606144 + << do not localize >> + NSWindow + + View + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {224.66399999999999, 10} + + + 256 + + YES + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{0, 31}, {126, 408}} + + YES + + YES + + 2 + YES + + 130560 + 33554432 + + NSImage + background + + 0 + 1 + 0 + YES + + YES + + + + 4352 + + YES + + + 2304 + + YES + + + 4352 + {126, 410} + + 2 + YES + + + 256 + {{-26, 0}, {16, 17}} + + + YES + + 31 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + Icon + + LucidaGrande + 11 + 3088 + + + 6 + System + headerColor + + 3 + MQA + + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 67239424 + 33554432 + + LucidaGrande + 13 + 1040 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 89 + 10 + 1000 + + 75628096 + 2048 + Menu Name + + + + + + 1140981312 + 2048 + Text Cell + + LucidaGrande + 11 + 16 + + + + 4 + MSAwAA + + + 6 + System + controlTextColor + + + + 3 + YES + YES + + + + 3 + 2 + + 1 + MC44MzkyMTU2OTU5IDAuODY2NjY2Njc0NiAwLjg5ODAzOTIyMTggMAA + + + 4 + MC44IDAAA + + 36 + 37781504 + + + 1 + 15 + 0 + YES + 1 + 1 + 1 + + + {126, 410} + + + 2 + + + 4 + MSAwAA + + 4 + + + + -2147483392 + {{-100, -100}, {15, 441}} + + + _doScroller: + 0.19473683834075928 + + + + -2147483392 + {{-100, -100}, {141, 15}} + + 1 + + _doScroller: + 0.99047619104385376 + + + {{0, 29}, {126, 410}} + + + YES + + YES + + 2 + 133120 + + + + QSAAAEEgAABCGAAAQhgAAA + + + + 268 + {{127, 31}, {541, 408}} + + YES + + subviews + + fromTop + fade + + YES + subtype + type + + + + 2 + + YES + + Item 1 + + + 292 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 8448 + {499, 257} + + 2 + YES + + + 256 + {499, 17} + + 2 + + + + + -2147483392 + {{457, 0}, {16, 17}} + 2 + + + YES + + 32 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + OS + + + + + + 67239424 + 33554432 + + 0 + 0 + 0 + NO + + 3 + YES + YES + + + + 157.640625 + 40 + 1000 + + 75628096 + 67110912 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772097 + 67110912 + Text Cell + + LucidaGrande-Bold + 14 + 16 + + + 1 + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + + YES + sr_Latn_RS + zh + ro_RO + be_BY + si_LK + fa_IR + en_BW + en_JM + ka_GE + zh_Hans_SG + mk_MK + en_HK + ar_LB + ii_CN + ru_UA + zh_Hant_HK + af + kl_GL + az_Latn + ar_SA + en_BE + bn_BD + en_MH + be + nl_NL + el_CY + az_Cyrl_AZ + ca + sr_Latn + om_ET + es_CL + bg + en_VI + es_VE + uz_Cyrl_UZ + fr_MC + am + zh_Hant + uz_Arab + en_GB + da + mr_IN + es_MX + es_PR + sq_AL + ar + fi_FI + bn + en_NA + de + as + cy_GB + en_IE + en_BZ + de_CH + en_US + sr_Latn_BA + te_IN + ar_QA + ar_TN + zh_Hans_MO + de_LI + fa + kw_GB + cs_CZ + hu_HU + zh_Hant_TW + uz_Latn + ta_IN + az + ar_EG + ar_SD + cs + ga + ar_LY + af_ZA + el + es_PA + es_CO + fi + en + ha + eo + gl_ES + cy + es_GT + ms_BN + ne_IN + he_IL + he + es + fo + en_CA + et + hr_HR + haw + gl + ar_SY + fr_SN + eu + uz_Arab_AF + id + fr + az_Latn_AZ + hi + zh_Hans_HK + ja + es_ES + ar_AE + uz_Latn_UZ + ca_ES + fr_BE + hi_IN + is_IS + ii + ps_AF + ka + tr_TR + it_CH + kk_Cyrl_KZ + gu + es_US + gv + en_PH + es_HN + hr + sv_FI + es_CR + haw_US + ar_MA + hu + nl_BE + th_TH + en_ZA + kk_Cyrl + is + it + es_PE + hy + de_DE + en_NZ + kk + kl + en_AU + pa_Guru + el_GR + km + kn + ko + nb + ar_IQ + es_PY + es_EC + en_US_POSIX + vi_VN + lv_LV + ne + kn_IN + es_AR + mk + ml + bg_BG + hy_AM_REVISED + kw + uk_UA + en_PK + pa + lt + sk_SK + nl + ur_PK + de_BE + lv + as_IN + mr + nn + en_ZW + fr_CA + ne_NP + ms + pl_PL + ti_ER + ja_JP + mt + fr_LU + om + sr_Cyrl_ME + en_IN + ga_IE + sw_KE + pl + kok + ur_IN + or + it_IT + hy_AM + ml_IN + en_SG + es_SV + am_ET + pt_BR + bn_IN + mt_MT + ar_KW + es_DO + pa_Arab + gv_GB + so_KE + ti_ET + ps + ms_MY + sl_SI + es_UY + en_MT + pt + sw_TZ + ta + nn_NO + sr_Cyrl_RS + si + te + ro + so_SO + sk + az_Cyrl + or_IN + sl + pa_Arab_PK + ru_RU + th + ar_DZ + ti + so + sr_Cyrl + es_NI + ha_Latn_NG + ru + en_TT + sq + fr_FR + sr + da_DK + es_BO + nb_NO + de_LU + uk + eu_ES + ar_JO + sv + so_ET + tr + sw + vi + zh_Hans_CN + km_KH + fa_AF + et_EE + ko_KR + pa_Guru_IN + sr_Latn_ME + so_DJ + ur + kok_IN + uz_Cyrl + zh_Hant_MO + zh_Hans + ar_YE + fo_FO + sv_SE + ha_Latn + de_AT + lt_LT + ar_OM + sr_Cyrl_BA + uz + ar_BH + id_ID + pt_PT + af_NA + om_KE + fr_CH + gu_IN + + + 3 + YES + YES + + + + 46.90234375 + 10 + 3.4028229999999999e+38 + + 75628096 + 134219776 + HD + + + + + + 69336641 + 134350848 + Text Cell + + + YES + 1 + + + + 3 + YES + + Name Displayed on the bootable partion during Chameleon boot + + + 207.3359375 + 10 + 3.4028234663852886e+38 + + 75628096 + 2048 + UUID + + + + + + 67239488 + 264192 + Text Cell + + LucidaGrande + 9 + 3600 + + + + + + 3 + YES + YES + + + + 40 + 40 + 1000 + + 75628096 + 2048 + FS + + + + + + 69336641 + 133120 + Text Cell + + + YES + 1 + + + + 3 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 32 + -689963008 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {494, 257}} + + + 2 + + + 4 + + + + -2147483392 + {{457, 17}, {15, 227}} + + + _doScroller: + 0.94163424124513617 + + + + 256 + {{1, 259}, {494, 15}} + + YES + 1 + + _doScroller: + 0.98997995991983967 + + + + 2304 + + YES + + + {{1, 0}, {494, 17}} + + + 2 + + + 4 + + + {{6, 9}, {496, 275}} + + + 2 + 133810 + + + + + QSAAAEEgAABCCAAAQggAAA + + + {{1, 1}, {509, 294}} + + 2 + + + {{44, 217}, {511, 310}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Partition + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -140}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + 3 + MCAwAA + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{367, 8}, {158, 25}} + + 2 + YES + + 67239424 + 134217728 + Restart + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{112, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Shutdown + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{12, 8}, {90, 25}} + + 2 + YES + + 67239424 + 134217728 + Sleep + + + -2038284033 + 163 + + + 200 + 25 + + + + {541, 408} + + 2 + + Startup Disk + + 6 + System + controlColor + + + + + + Item 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 80}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Default Partition + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 12 + {{174, 79}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 12 + {{16, 47}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Hide Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 49}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 12 + {{16, 17}, {152, 23}} + + + 2 + YES + + 67239424 + 0 + Rename Partitions + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 19}, {323, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + {{1, 1}, {509, 114}} + + + 2 + + + {{44, 397}, {511, 130}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Partitions Management + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 94}, {267, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->1 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{305, 94}, {188, 18}} + + + 2 + YES + + 67239424 + 0 + Swap hd 0<->2 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 63}, {285, 18}} + + + 2 + YES + + 67239424 + 0 + Use Freezed Parts List + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 30}, {158, 18}} + + + 2 + YES + + 67239424 + 0 + Boot Config Path + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{174, 31}, {323, 19}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{307, 64}, {190, 18}} + + + 2 + YES + + 67239424 + 134348800 + Inject Parts in Freeze File + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {509, 128}} + + + 2 + + + {{44, 240}, {511, 144}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Boot Selector Fixes + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{102, 37}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{102, 14}, {289, 22}} + + + 2 + YES + + 879885889 + 272761856 + /Extra + + + YES + + + + + + + 12 + {{12, 39}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + Extra folder + + + -2034876161 + 193 + + LucidaGrande + 9 + 16 + + + + 200 + 25 + + + + + 268 + {{399, 27}, {100, 18}} + + + 2 + YES + + 67239424 + 134348800 + Create ISO + + + -2033434369 + 163 + + + 200 + 25 + + + + + 12 + {{12, 16}, {83, 16}} + + + 2 + YES + + 67239424 + 134479872 + cdboot folder + + + -2034876161 + 193 + + + + 200 + 25 + + + + {{1, 1}, {509, 64}} + + + 2 + + + {{44, 148}, {511, 80}} + + + YES + 2 + {0, 0} + + 67239424 + 0 + Rescue Boot CD Creator + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-32, -140}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + Boot Setup + + + + + Item 3 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 12 + + YES + + + 274 + + YES + + + 12 + {{16, 102}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Verbose (-v) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 102}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Ignore Boot Config (-F) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 71}, {175, 23}} + + 2 + YES + + 67239424 + 0 + Single User (-s) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 71}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Time Out + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 42}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Quiet Boot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 42}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Instant Menu + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 42}, {170, 23}} + + 2 + YES + + 67239424 + 0 + Wait + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{164, 107}, {161, 18}} + + 2 + YES + + 67239424 + 0 + Safe Boot (-x) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 12}, {164, 23}} + + 2 + YES + + 67239424 + 0 + Use GUI + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 70}, {46, 26}} + + 2 + 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 + + + LucidaGrande + 12 + 16 + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 1024 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 12 + {{16, 12}, {144, 23}} + + 2 + YES + + -2080244224 + 0 + Boot Theme + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{166, 9}, {134, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + Default + Bullet + MSI_netbook + Pinktink + Twilight + + + + + 274 + {13, 105} + + + 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, 1}, {509, 144}} + + 2 + + + {{13, 228}, {511, 160}} + + 2 + {0, 0} + + 67239424 + 0 + Boot Flags + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{16, 13}, {144, 23}} + + 2 + YES + + 67239424 + 0 + Rescan + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{329, 13}, {174, 23}} + + 2 + YES + + 67239424 + 0 + Scan Single Drive + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{164, 13}, {161, 23}} + + 2 + YES + + 67239424 + 0 + Rescan Prompt + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 52}} + + 2 + + + {{13, 146}, {511, 68}} + + 2 + {0, 0} + + 67239424 + 0 + CDROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Boot Flags + + + + + Item 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{155, 17}, {208, 23}} + + 2 + YES + + 67239424 + 0 + Boot Banner + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 86}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Mode + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 86}, {134, 23}} + + 2 + YES + + 67239424 + 0 + Graphics Enabler + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 51}, {134, 23}} + + 2 + YES + + 67239424 + 0 + VBIOS + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 17}, {141, 23}} + + 2 + YES + + 67239424 + 0 + Legacy Logo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{157, 83}, {181, 26}} + + 2 + 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 + + + + + + 268 + {{16, 53}, {141, 18}} + + 2 + YES + + 67239424 + 0 + Use Ati ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{155, 53}, {202, 18}} + + 2 + YES + + 67239424 + 0 + Use Nvidia ROM + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 121}} + + 2 + + + {{13, 251}, {511, 137}} + + 2 + {0, 0} + + 67239424 + 0 + Graphics + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{361, 12}, {143, 23}} + + 2 + YES + + 67239424 + 0 + UHCI reset + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 12}, {173, 23}} + + 2 + YES + + 67239424 + 0 + USB Bus Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 12}, {169, 23}} + + 2 + YES + + 67239424 + 0 + EHCI acquire + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 44}} + + 2 + + + {{13, 177}, {511, 60}} + + 2 + {0, 0} + + 67239424 + 0 + USB + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {135, 23}} + + 2 + YES + + 67239424 + 0 + Ethernet Built-In + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{193, 10}, {69, 23}} + + 2 + YES + + 67239424 + 0 + PciRoot + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{361, 12}, {138, 23}} + + 2 + YES + + 67239424 + 0 + Force HPET + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{268, 10}, {51, 26}} + + 2 + YES + + 343539264 + 272630784 + + + + YES + + + 5 + YES + + YES + 0 + 1 + + + + + 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 + 1 + + + + + {{1, 1}, {509, 43}} + + 2 + + + {{13, 104}, {511, 59}} + + 2 + {0, 0} + + 67239424 + 0 + Ethernet + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Peripherals + + + + + Item 5 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 36 + + YES + + + 274 + + YES + + + 268 + {{161, 47}, {205, 23}} + + 2 + YES + + 67239424 + 0 + Force Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 19}, {146, 23}} + + 2 + YES + + 67239424 + 0 + Wake Image + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{163, 18}, {201, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 52}, {146, 18}} + + 2 + YES + + 67239424 + 0 + Wake + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 78}} + + 2 + + + {{45, 116}, {511, 94}} + + 2 + {0, 0} + + 67239424 + 0 + Wake + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{1, 1}, {603, 566}} + + 2 + + + {{-32, -106}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 12 + {{277, 217}, {50, 23}} + + 2 + YES + + 67239424 + 0 + rd + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 112}, {102, 18}} + + 2 + YES + + 67239424 + 0 + SystemType + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{385, 107}, {59, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 1 + 2 + 3 + 4 + 5 + 6 + + + + + 274 + {13, 126} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 19 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{277, 179}, {81, 23}} + + 2 + YES + + 67239424 + 0 + debug + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{16, 217}, {63, 23}} + + 2 + YES + + 67239424 + 0 + Kernel + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{322, 219}, {159, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + + YES + + + + + + + 268 + {{277, 145}, {75, 23}} + + 2 + YES + + 67239424 + 0 + io + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 219}, {164, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 148}, {80, 18}} + + 2 + YES + + 67239424 + 0 + cpus + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 111}, {90, 23}} + + 2 + YES + + 67239424 + 0 + busratio + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 76}, {90, 18}} + + 2 + YES + + 67239424 + 0 + SystemId + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 181}, {90, 23}} + + 2 + YES + + 67239424 + 0 + arch + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 41}, {226, 18}} + + 2 + YES + + 67239424 + 0 + Disable kext blacklist + + LucidaGrande + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 12 + {{102, 75}, {339, 22}} + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{16, 41}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Restart Fix + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{102, 179}, {76, 26}} + + 2 + 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 + 1 + + + + + + 268 + {{102, 109}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{102, 142}, {76, 26}} + + 2 + YES + + 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 + 1 + + + + + + 268 + {{358, 178}, {86, 23}} + + 2 + YES + + 343014976 + 272630784 + + + LucidaGrande + 10 + 16 + + + 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 + 1 + + + + + + 268 + {{358, 143}, {86, 26}} + + 2 + YES + + 343014976 + 272630784 + + + + YES + + + 5 + YES + + YES + 0x80 + 0xFFFFFFFF + + + + + 274 + {13, 34} + + + YES + + YES + + 10 + 10 + 1000 + + 75628032 + 0 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 338820672 + 268436480 + + + YES + + + + 3 + YES + + + + 3 + 2 + + + 15 + tableViewAction: + -765427712 + + + + 1 + 15 + 0 + YES + 0 + 1 + + + + + + 268 + {{16, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate P-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{277, 12}, {183, 18}} + + 2 + YES + + 67239424 + 0 + Generate C-States + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 250}} + + 2 + + + {{13, 122}, {511, 266}} + + 2 + {0, 0} + + 67239424 + 0 + Kernel + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + Advanced + + + + + Item 6 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 36 + + YES + + + 274 + + YES + + + 268 + {{16, 311}, {244, 18}} + + 2 + YES + + 67239424 + 0 + Device Properties + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{327, 309}, {170, 25}} + + 2 + YES + + -2080244224 + 134217728 + Current GFX Injection + + + -2038152961 + 163 + + + 400 + 75 + + + + + 12 + + YES + + + 2304 + + YES + + + 268 + {{0, 91}, {536, 506}} + + 2 + YES + + -1809711615 + 272629760 + + + + YES + + + + + + {{1, 1}, {462, 264}} + {{0, 333}, {462, 264}} + + + 2 + + + 4 + + + + 256 + {{463, 1}, {15, 264}} + + 2 + YES + + _doScroller: + 1 + 0.52173913043478259 + + + + -2147483392 + {{-100, -100}, {536, 15}} + + 2 + YES + 1 + + _doScroller: + 0.50602412223815918 + + + {{18, 22}, {479, 266}} + + + 2 + 133842 + + + + + + {{1, 1}, {509, 348}} + + 2 + + + {{13, 24}, {511, 364}} + + 2 + {0, 0} + + 67239424 + 0 + EFI injection + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {541, 408} + 2 + + EFI Inject + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {509, 234}} + + 2 + + + {{44, 179}, {511, 250}} + + + 2 + {0, 0} + + 67239424 + 0 + IORegistry + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 54}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + DSDT file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{370, 52}, {148, 22}} + + + 2 + YES + + 67239424 + 0 + Drop + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{139, 53}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{139, 14}, {208, 22}} + + + 2 + YES + + 611450433 + 272630784 + + + + YES + + + + + + + 268 + {{370, 12}, {161, 23}} + + + 2 + YES + + 67239424 + 0 + Defaults + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 268 + {{16, 15}, {117, 23}} + + + 2 + YES + + 67239424 + 0 + SMBIOS file + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{1, 1}, {509, 87}} + + + 2 + + + {{44, 433}, {511, 103}} + + + 2 + {0, 0} + + 67239424 + 0 + DSDT & SMBIOS + + + + 3 + MCAwLjgwMDAwMDAxAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{384, 151}, {168, 25}} + + + 2 + YES + + 67239424 + 134217728 + Open smbios.plist + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{209, 151}, {168, 25}} + + 2 + YES + + 67239424 + 134217728 + Extract SMBIOS + + + -2038284033 + 163 + + + 200 + 25 + + + + + 268 + {{47, 151}, {154, 25}} + + + 2 + YES + + -2080244224 + 134217728 + Extract ACPI + + + -2038284033 + 163 + + + 200 + 25 + + + + {{1, 1}, {603, 566}} + + + 2 + + + {{-34, -141}, {605, 568}} + + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + {541, 408} + + 2 + + SMBIOS + + + + + Item 7 + + + 256 + + YES + + + 12 + + YES + + + 274 + {{1, 1}, {603, 566}} + + 2 + + + {{-33, -139}, {605, 568}} + + 2 + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 4 + 0 + NO + + + 3 + MC42OTcwODAyOTIAA + + + + + 268 + {{18, -1}, {513, 261}} + + 2 + YES + + -2080244224 + 138412032 + + + + YES + + 1 + MCAwIDAgMAA + + + 1 + MCAwIDAgMC45AA + + + + + + 268 + {{186, 338}, {172, 17}} + + 2 + YES + + 68288064 + 138413056 + Version bla bla. + + LucidaGrande-Bold + 13 + 16 + + + + + 1 + MCAwIDAgMC45AA + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{223, 243}, {100, 100}} + + 2 + YES + + 130560 + 33554432 + + NSImage + cham + + 0 + 0 + 0 + YES + + YES + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{141, 358}, {262, 45}} + + 2 + YES + + 130560 + 33554432 + + NSImage + name + + 0 + 0 + 0 + YES + + YES + + + {541, 408} + 2 + + About + + + + + + + 268435462 + YES + YES + + YES + + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {675, 34} + + 2 + YES + + 130560 + 33554432 + + NSImage + footer + + 0 + 1 + 0 + YES + + YES + + + + 268 + {{0, 2}, {227.58203125, 30}} + + YES + 2 + SFAuthorizationView + + + + 268 + {{232, 8}, {419, 17}} + + 2 + _NS:4068 + YES + + 68288064 + 71304192 + + + _NS:4068 + + + + + + + {668, 439} + + YES + 2 + + {{0, 0}, {1920, 1178}} + {224.66399999999999, 32} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + AboutController + + + ChameleonPrefPane + + + BootSetupController + + + BootFlagsController + + + PeripheralsController + + + AdvancedSetupController + + + EfiInjectController + + + SmbiosController + + + YES + + + TableViewsController + + + + + + YES + + + _window + + + + 26 + + + + authView + + + + 137 + + + + onRestart: + + + + 188 + + + + mSleepButton + + + + 192 + + + + mShutDownButton + + + + 193 + + + + mRestartButton + + + + 194 + + + + onSleep: + + + + 195 + + + + onShutdown: + + + + 197 + + + + mVerbose + + + + 616 + + + + mSafeBoot + + + + 617 + + + + mIgnoreBootConfig + + + + 618 + + + + mTimeOut + + + + 619 + + + + mSingleUser + + + + 621 + + + + mQuietBoot + + + + 622 + + + + mInstantMenu + + + + 623 + + + + mWait + + + + 624 + + + + mRescan + + + + 625 + + + + mRescanPrompt + + + + 626 + + + + mRescanSingleDrive + + + + 627 + + + + mLegacyLogo + + + + 628 + + + + mBootBanner + + + + 629 + + + + mVBIOS + + + + 631 + + + + mGraphicsMode + + + + 633 + + + + mGraphicsEnabler + + + + 635 + + + + mUSBBusFix + + + + 636 + + + + mEHCIacquire + + + + 637 + + + + mUHCIreset + + + + 638 + + + + mEthernetBuiltIn + + + + 639 + + + + mKernel + + + + 640 + + + + mKernelText + + + + 641 + + + + mDeviceRd + + + + 642 + + + + mDeviceRdText + + + + 647 + + + + mArch + + + + 648 + + + + mCPU + + + + 650 + + + + mBusRatio + + + + 652 + + + + mDebug + + + + 654 + + + + mIO + + + + 656 + + + + mDisableKextsBlacklisting + + + + 658 + + + + mDSDTFile + + + + 659 + + + + mDSDTFileText + + + + 660 + + + + mDSDTDrop + + + + 661 + + + + mSMBIOSFile + + + + 662 + + + + mSMBIOSFileText + + + + 663 + + + + mSMBIOSDefaults + + + + 664 + + + + mWake + + + + 665 + + + + mForceWake + + + + 666 + + + + mWakeImage + + + + 667 + + + + mWakeImageText + + + + 668 + + + + onCheckButtonChange: + + + + 671 + + + + onCheckButtonChange: + + + + 673 + + + + onCheckButtonChange: + + + + 676 + + + + onCheckButtonChange: + + + + 677 + + + + onCheckButtonChange: + + + + 678 + + + + onTextFiedChange: + + + + 679 + + + + onCheckButtonChange: + + + + 680 + + + + onTextFiedChange: + + + + 681 + + + + onCheckButtonChange: + + + + 682 + + + + onTextFiedChange: + + + + 683 + + + + onCheckButtonChange: + + + + 684 + + + + onTextFiedChange: + + + + 685 + + + + onCheckButtonChange: + + + + 699 + + + + onCheckButtonChange: + + + + 700 + + + + onCheckButtonChange: + + + + 701 + + + + onCheckButtonChange: + + + + 702 + + + + onCheckButtonChange: + + + + 703 + + + + onCheckButtonChange: + + + + 704 + + + + onCheckButtonChange: + + + + 705 + + + + onCheckButtonChange: + + + + 706 + + + + onCheckButtonChange: + + + + 707 + + + + onCheckButtonChange: + + + + 708 + + + + onCheckButtonChange: + + + + 709 + + + + onTextFiedChange: + + + + 710 + + + + onCheckButtonChange: + + + + 716 + + + + onCheckButtonChange: + + + + 717 + + + + onCheckButtonChange: + + + + 718 + + + + onCheckButtonChange: + + + + 719 + + + + onCheckButtonChange: + + + + 720 + + + + onCheckButtonChange: + + + + 721 + + + + onCheckButtonChange: + + + + 722 + + + + onCheckButtonChange: + + + + 723 + + + + onCheckButtonChange: + + + + 725 + + + + onCheckButtonChange: + + + + 726 + + + + onCheckButtonChange: + + + + 727 + + + + onCheckButtonChange: + + + + 728 + + + + onCheckButtonChange: + + + + 729 + + + + onCheckButtonChange: + + + + 730 + + + + onCheckButtonChange: + + + + 731 + + + + onCheckButtonChange: + + + + 732 + + + + onCheckButtonChange: + + + + 744 + + + + mSystemId + + + + 748 + + + + mSystemIdText + + + + 749 + + + + onTextFiedChange: + + + + 750 + + + + onCheckButtonChange: + + + + 766 + + + + mRestartFix + + + + 767 + + + + onCheckButtonChange: + + + + 770 + + + + mPciRoot + + + + 774 + + + + onCheckButtonChange: + + + + 778 + + + + mUseGUI + + + + 779 + + + + mEfiInject + + + + 789 + + + + onCheckButtonChange: + + + + 792 + + + + mCurrentGfxInjection + + + + 796 + + + + onCheckButtonChange: + + + + 797 + + + + mEfiInjectText + + + + 824 + + + + 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 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 909 + + + + value: credits + + + + + + value: credits + value + credits + 2 + + + 910 + + + + value: bundleVersionNumber + + + + + + value: bundleVersionNumber + value + bundleVersionNumber + 2 + + + 913 + + + + mMenuName + + + + 970 + + + + delegate + + + + 971 + + + + delegate + + + + 972 + + + + dataSource + + + + 973 + + + + dataSource + + + + 974 + + + + mPartitionImgColumn + + + + 975 + + + + mPartitionNameColumn + + + + 976 + + + + mPartitionIDColumn + + + + 977 + + + + mFileSystemColumn + + + + 978 + + + + mPartitionsTable + + + + 980 + + + + mBootFrom + + + + 981 + + + + mBootFlags + + + + 983 + + + + mPeripherals + + + + 984 + + + + mAdvanced + + + + 985 + + + + mEfiInject + + + + 986 + + + + mSmbios + + + + 987 + + + + mAbout + + + + 988 + + + + mTabViewPanes + + + + 989 + + + + box + + + + 991 + + + + mTabViewPanesSelect + + + + 994 + + + + onTextFiedChange: + + + + 1141 + + + + onCheckButtonChange: + + + + 1143 + + + + onCheckButtonChange: + + + + 1145 + + + + onTextFiedChange: + + + + 1148 + + + + onCheckButtonChange: + + + + 1150 + + + + onTextFiedChange: + + + + 1151 + + + + mBootSetup + + + + 1152 + + + + mDefaultPartition + + + + 1153 + + + + mHidePartition + + + + 1154 + + + + mRenamePartition + + + + 1155 + + + + mDefaultPartitionText + + + + 1156 + + + + mHidePartitionText + + + + 1157 + + + + mRenamePartitionText + + + + 1158 + + + + onCheckButtonChange: + + + + 1178 + + + + onTextFiedChange: + + + + 1179 + + + + onCheckButtonChange: + + + + 1180 + + + + onCheckButtonChange: + + + + 1181 + + + + onCheckButtonChange: + + + + 1182 + + + + onCheckButtonChange: + + + + 1183 + + + + mBootConfigPathText + + + + 1185 + + + + mSwapHD01 + + + + 1186 + + + + mSwapHD02 + + + + 1187 + + + + mBootConfigPath + + + + 1189 + + + + mFreezeParts + + + + 1190 + + + + mInjectFrozenParts + + + + 1191 + + + + mPciRootText + + + + 1202 + + + + onTextFiedChange: + + + + 1203 + + + + onCheckButtonChange: + + + + 1204 + + + + mAtiVideoROM + + + + 1205 + + + + onCheckButtonChange: + + + + 1206 + + + + mNvidiaVideoROM + + + + 1207 + + + + mSystemType + + + + 1208 + + + + onCheckButtonChange: + + + + 1209 + + + + mSystemTypeText + + + + 1210 + + + + onTextFiedChange: + + + + 1211 + + + + mMenuIcon + + + + 1215 + + + + onCheckButtonChange: + + + + 1218 + + + + mExtractACPITables + + + + 1219 + + + + onCheckButtonChange: + + + + 1241 + + + + onCheckButtonChange: + + + + 1244 + + + + mGenerateCStates + + + + 1245 + + + + mGeneratePStates + + + + 1246 + + + + mPartitionUIDColumn + + + + 1252 + + + + onTextFiedChange: + + + + 1294 + + + + onTextFiedChange: + + + + 1295 + + + + mBootExtraPath + + + + 1298 + + + + mBootExtraPathText + + + + 1300 + + + + mBootCdbootPathText + + + + 1301 + + + + onCreateBootCD: + + + + 1302 + + + + onExtraConfigPath: + + + + 1303 + + + + onCdBootConfigPath: + + + + 1307 + + + + mBootCdbootPath + + + + 1308 + + + + mStatusText + + + + 1351 + + + + onCheckButtonChange: + + + + 1426 + + + + mAppleSmbios + + + + 1427 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 12 + + + YES + + + + PrefPane + + + 6 + + + YES + + + + + + + + + + + -3 + + + Application + + + 112 + + + ChameleonPrefPane + + + 596 + + + + + 597 + + + + + 598 + + + + + 599 + + + + + 788 + + + + + 834 + + + + + 893 + + + + + 897 + + + + + 947 + + + YES + + + + + + + + 948 + + + + + 949 + + + + + 950 + + + YES + + + + + + + 952 + + + YES + + + + + + 953 + + + + + 961 + + + + + 172 + + + YES + + + + + + + + + + + + + 920 + + + YES + + + + + + 921 + + + + + 995 + + + YES + + + + + + 996 + + + + + 136 + + + YES + + + + + 173 + + + YES + + + + + + 174 + + + YES + + + + + + + + + 1010 + + + YES + + + + + + 186 + + + YES + + + + + + 187 + + + + + 189 + + + YES + + + + + + 190 + + + + + 441 + + + YES + + + + + + 442 + + + YES + + + + + + + + + 1006 + + + + + 536 + + + YES + + + + + + + + 541 + + + YES + + + + + + 544 + + + + + 542 + + + YES + + + + + + 543 + + + + + 540 + + + YES + + + + + + 545 + + + + + 537 + + + YES + + + + + + + + + 538 + + + YES + + + + + + 539 + + + + + 859 + + + YES + + + + + + 860 + + + + + 768 + + + YES + + + + + + 769 + + + + + 456 + + + YES + + + + + + + + + + + + + 457 + + + YES + + + + + + 464 + + + + + 458 + + + YES + + + + + + 463 + + + + + 450 + + + YES + + + + + + 455 + + + + + 487 + + + YES + + + + + + 488 + + + + + 452 + + + YES + + + + + + 453 + + + + + 839 + + + YES + + + + + + 840 + + + + + 478 + + + YES + + + + + + 479 + + + YES + + + + + + + 511 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + + + 493 + + + YES + + + + + + 506 + + + + + 491 + + + YES + + + + + + 508 + + + + + 496 + + + YES + + + + + + 503 + + + + + 497 + + + YES + + + + + + 502 + + + + + 863 + + + YES + + + + + + 864 + + + + + 489 + + + YES + + + + + + 510 + + + + + 494 + + + YES + + + + + + 505 + + + + + 495 + + + YES + + + + + + 504 + + + + + 867 + + + YES + + + + + + 868 + + + + + 851 + + + YES + + + + + + 852 + + + + + 764 + + + YES + + + + + + 765 + + + + + 586 + + + YES + + + + + + 587 + + + + + 738 + + + YES + + + + + + 739 + + + + + 847 + + + YES + + + + + + 848 + + + + + 492 + + + YES + + + + + + 507 + + + + + 843 + + + YES + + + + + + 844 + + + + + 490 + + + YES + + + + + + 509 + + + + + 741 + + + YES + + + + + + 742 + + + + + 780 + + + YES + + + + + + 781 + + + YES + + + + + + + 793 + + + YES + + + + + + + + 820 + + + YES + + + + + + + + 818 + + + YES + + + + + + 819 + + + + + 822 + + + + + 821 + + + + + 794 + + + YES + + + + + + 795 + + + + + 786 + + + YES + + + + + + 787 + + + + + 1004 + + + + + 828 + + + YES + + + + + + 829 + + + YES + + + + + + 1003 + + + YES + + + + + + + + + + 905 + + + YES + + + + + + 906 + + + YES + + + + + + + + + + 907 + + + YES + + + + + + 908 + + + + + 1002 + + + + + 911 + + + YES + + + + + + 912 + + + + + 914 + + + YES + + + + + + 915 + + + + + 918 + + + YES + + + + + + 919 + + + + + 284 + + + YES + + + + + + 285 + + + YES + + + + + + + + 1007 + + + + + 569 + + + YES + + + + + + + + 571 + + + YES + + + + + + 574 + + + + + 570 + + + YES + + + + + + 575 + + + + + 572 + + + YES + + + + + + 573 + + + + + 286 + + + YES + + + + + + + + + + + + + + + + + 855 + + + YES + + + + + + 856 + + + + + 588 + + + YES + + + + + + 589 + + + + + 302 + + + YES + + + + + + 313 + + + + + 776 + + + YES + + + + + + 777 + + + + + 372 + + + YES + + + + + + 373 + + + + + 292 + + + YES + + + + + + 323 + + + + + 294 + + + YES + + + + + + 321 + + + + + 293 + + + YES + + + + + + 322 + + + + + 300 + + + YES + + + + + + 315 + + + + + 301 + + + YES + + + + + + 314 + + + + + 869 + + + YES + + + + + + 870 + + + + + 872 + + + YES + + + + + + 873 + + + + + 1111 + + + YES + + + + + + 1112 + + + YES + + + + + + 1115 + + + YES + + + + + + + + 1113 + + + YES + + + + + + + + + + + 1128 + + + YES + + + + + + 1129 + + + YES + + + + + + 1133 + + + YES + + + + + + 1132 + + + YES + + + + + + 1131 + + + YES + + + + + + 1130 + + + YES + + + + + + 1137 + + + + + 1136 + + + + + 1135 + + + + + 1134 + + + + + 1138 + + + + + 1139 + + + + + 1165 + + + YES + + + + + + + + + + + 1171 + + + YES + + + + + + 1170 + + + YES + + + + + + 1169 + + + YES + + + + + + 1168 + + + YES + + + + + + 1167 + + + YES + + + + + + 1166 + + + YES + + + + + + 1177 + + + + + 1176 + + + + + 1175 + + + + + 1174 + + + + + 1173 + + + + + 1172 + + + + + 1192 + + + YES + + + + + + 1193 + + + YES + + + + + + 1194 + + + + + 1195 + + + + + 1196 + + + YES + + + + + + 1197 + + + YES + + + + + + 1198 + + + + + 1199 + + + + + 1005 + + + YES + + + + + + 1200 + + + YES + + + + + + 1201 + + + + + 110 + + + YES + + + + + + 111 + + + + + 1212 + + + YES + + + + + + 1214 + + + + + 937 + + + YES + + + + + + 99 + + + YES + + + + + + + + + 103 + + + + + 102 + + + YES + + + + + + + + + + 101 + + + + + 100 + + + + + 158 + + + YES + + + + + + 104 + + + YES + + + + + + 128 + + + YES + + + + + + 105 + + + YES + + + + + + 106 + + + + + 129 + + + + + 107 + + + + + 160 + + + + + 560 + + + YES + + + + + + + + + 561 + + + YES + + + + + + 563 + + + YES + + + + + + 562 + + + YES + + + + + + 590 + + + YES + + + + + + 591 + + + + + 567 + + + + + 566 + + + + + 568 + + + + + 1239 + + + YES + + + + + + 1240 + + + + + 1242 + + + YES + + + + + + 1243 + + + + + 1249 + + + YES + + + + + + 1250 + + + + + 1254 + + + YES + + + + + + + + + + 1276 + + + YES + + + + + + 1277 + + + + + 1273 + + + YES + + + + + + 1274 + + + + + 1279 + + + YES + + + + + + 1280 + + + + + 1291 + + + YES + + + + + + 1292 + + + + + 1304 + + + YES + + + + + + 1305 + + + + + 1309 + + + YES + + + + + 523 + + + YES + + + + + + + + + + + 529 + + + YES + + + + + + 555 + + + YES + + + + + + 527 + + + YES + + + + + + 554 + + + YES + + + + + + 528 + + + YES + + + + + + 553 + + + YES + + + + + + 558 + + + + + 531 + + + + + 557 + + + + + 532 + + + + + 556 + + + + + 530 + + + + + 830 + + + YES + + + + + + 831 + + + + + 1216 + + + YES + + + + + + 1217 + + + + + 1345 + + + YES + + + + + + 1346 + + + + + 1352 + + + + + 1424 + + + YES + + + + + + 1425 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 100.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1003.IBViewBoundsToFrameTransform + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 101.IBPluginDependency + 1010.IBPluginDependency + 102.CustomClassName + 102.IBPluginDependency + 103.IBPluginDependency + 104.IBPluginDependency + 105.IBPluginDependency + 106.CustomClassName + 106.IBPluginDependency + 107.CustomClassName + 107.IBPluginDependency + 110.IBAttributePlaceholdersKey + 110.IBPluginDependency + 111.IBPluginDependency + 1111.IBPluginDependency + 1112.IBAttributePlaceholdersKey + 1112.IBPluginDependency + 1113.CustomClassName + 1113.IBPluginDependency + 1115.IBPluginDependency + 112.IBPluginDependency + 1128.IBPluginDependency + 1129.IBAttributePlaceholdersKey + 1129.IBPluginDependency + 1130.IBPluginDependency + 1131.IBAttributePlaceholdersKey + 1131.IBPluginDependency + 1132.IBAttributePlaceholdersKey + 1132.IBPluginDependency + 1133.IBPluginDependency + 1134.IBAttributePlaceholdersKey + 1134.IBPluginDependency + 1135.IBPluginDependency + 1136.IBPluginDependency + 1137.IBPluginDependency + 1138.IBPluginDependency + 1139.IBAttributePlaceholdersKey + 1139.IBPluginDependency + 1165.CustomClassName + 1165.IBPluginDependency + 1166.IBAttributePlaceholdersKey + 1166.IBPluginDependency + 1167.IBAttributePlaceholdersKey + 1167.IBPluginDependency + 1168.IBAttributePlaceholdersKey + 1168.IBPluginDependency + 1169.IBAttributePlaceholdersKey + 1169.IBPluginDependency + 1170.IBAttributePlaceholdersKey + 1170.IBPluginDependency + 1171.IBAttributePlaceholdersKey + 1171.IBPluginDependency + 1172.IBAttributePlaceholdersKey + 1172.IBPluginDependency + 1173.IBPluginDependency + 1174.IBPluginDependency + 1175.IBPluginDependency + 1176.IBPluginDependency + 1177.IBPluginDependency + 1192.IBAttributePlaceholdersKey + 1192.IBPluginDependency + 1193.IBPluginDependency + 1194.IBPluginDependency + 1195.IBPluginDependency + 1196.IBAttributePlaceholdersKey + 1196.IBPluginDependency + 1197.IBAttributePlaceholdersKey + 1197.IBPluginDependency + 1198.IBPluginDependency + 1199.IBPluginDependency + 12.IBEditorWindowLastContentRect + 12.IBPluginDependency + 12.IBWindowTemplateEditedContentRect + 12.windowTemplate.hasMinSize + 12.windowTemplate.minSize + 1200.IBPluginDependency + 1201.IBPluginDependency + 1212.IBPluginDependency + 1214.IBPluginDependency + 1216.IBPluginDependency + 1217.IBPluginDependency + 1239.IBAttributePlaceholdersKey + 1239.IBPluginDependency + 1240.IBPluginDependency + 1242.IBAttributePlaceholdersKey + 1242.IBPluginDependency + 1243.IBPluginDependency + 1249.IBPluginDependency + 1250.CustomClassName + 1250.IBPluginDependency + 1254.CustomClassName + 1254.IBPluginDependency + 1273.IBAttributePlaceholdersKey + 1273.IBPluginDependency + 1274.IBPluginDependency + 1276.IBAttributePlaceholdersKey + 1276.IBPluginDependency + 1277.IBPluginDependency + 1279.IBAttributePlaceholdersKey + 1279.IBPluginDependency + 128.IBPluginDependency + 1280.IBPluginDependency + 129.CustomClassName + 129.IBPluginDependency + 1291.IBAttributePlaceholdersKey + 1291.IBPluginDependency + 1292.IBPluginDependency + 1304.IBAttributePlaceholdersKey + 1304.IBPluginDependency + 1305.IBPluginDependency + 1309.CustomClassName + 1309.IBPluginDependency + 1309.IBViewBoundsToFrameTransform + 1345.IBPluginDependency + 1346.IBPluginDependency + 1352.IBPluginDependency + 136.IBPluginDependency + 1424.IBPluginDependency + 1424.IBViewBoundsToFrameTransform + 1425.IBPluginDependency + 158.IBPluginDependency + 160.IBPluginDependency + 172.IBAttributePlaceholdersKey + 172.IBPluginDependency + 173.IBPluginDependency + 174.IBPluginDependency + 186.IBAttributePlaceholdersKey + 186.IBPluginDependency + 187.IBPluginDependency + 189.IBAttributePlaceholdersKey + 189.IBPluginDependency + 190.IBPluginDependency + 284.IBPluginDependency + 285.IBPluginDependency + 286.CustomClassName + 286.IBPluginDependency + 292.IBAttributePlaceholdersKey + 292.IBPluginDependency + 293.IBAttributePlaceholdersKey + 293.IBPluginDependency + 294.IBAttributePlaceholdersKey + 294.IBPluginDependency + 300.IBAttributePlaceholdersKey + 300.IBPluginDependency + 301.IBAttributePlaceholdersKey + 301.IBPluginDependency + 302.IBAttributePlaceholdersKey + 302.IBPluginDependency + 313.IBPluginDependency + 314.IBPluginDependency + 315.IBPluginDependency + 321.IBPluginDependency + 322.IBPluginDependency + 323.IBPluginDependency + 372.IBAttributePlaceholdersKey + 372.IBPluginDependency + 373.IBPluginDependency + 441.IBPluginDependency + 442.IBPluginDependency + 450.IBAttributePlaceholdersKey + 450.IBPluginDependency + 452.IBAttributePlaceholdersKey + 452.IBPluginDependency + 453.IBPluginDependency + 455.IBPluginDependency + 456.CustomClassName + 456.IBPluginDependency + 456.IBUserGuides + 457.IBAttributePlaceholdersKey + 457.IBPluginDependency + 458.IBAttributePlaceholdersKey + 458.IBPluginDependency + 463.IBPluginDependency + 464.IBPluginDependency + 478.IBPluginDependency + 479.IBPluginDependency + 487.IBAttributePlaceholdersKey + 487.IBPluginDependency + 488.IBPluginDependency + 489.IBAttributePlaceholdersKey + 489.IBPluginDependency + 490.IBAttributePlaceholdersKey + 490.IBPluginDependency + 491.IBAttributePlaceholdersKey + 491.IBPluginDependency + 492.IBAttributePlaceholdersKey + 492.IBPluginDependency + 493.IBAttributePlaceholdersKey + 493.IBPluginDependency + 494.IBAttributePlaceholdersKey + 494.IBPluginDependency + 495.IBAttributePlaceholdersKey + 495.IBPluginDependency + 496.IBAttributePlaceholdersKey + 496.IBPluginDependency + 497.IBAttributePlaceholdersKey + 497.IBPluginDependency + 502.IBPluginDependency + 503.IBPluginDependency + 504.IBPluginDependency + 505.IBPluginDependency + 506.IBPluginDependency + 507.IBPluginDependency + 508.IBPluginDependency + 509.IBPluginDependency + 510.IBPluginDependency + 511.CustomClassName + 511.IBPluginDependency + 523.CustomClassName + 523.IBPluginDependency + 527.IBAttributePlaceholdersKey + 527.IBPluginDependency + 528.IBAttributePlaceholdersKey + 528.IBPluginDependency + 529.IBAttributePlaceholdersKey + 529.IBPluginDependency + 530.IBPluginDependency + 531.IBPluginDependency + 532.IBPluginDependency + 536.CustomClassName + 536.IBPluginDependency + 537.CustomClassName + 537.IBPluginDependency + 538.IBAttributePlaceholdersKey + 538.IBPluginDependency + 539.IBPluginDependency + 540.IBAttributePlaceholdersKey + 540.IBPluginDependency + 541.IBAttributePlaceholdersKey + 541.IBPluginDependency + 542.IBAttributePlaceholdersKey + 542.IBPluginDependency + 543.IBPluginDependency + 544.IBPluginDependency + 545.IBPluginDependency + 553.IBAttributePlaceholdersKey + 553.IBPluginDependency + 554.IBAttributePlaceholdersKey + 554.IBPluginDependency + 555.IBAttributePlaceholdersKey + 555.IBPluginDependency + 556.IBPluginDependency + 557.IBPluginDependency + 558.IBPluginDependency + 560.CustomClassName + 560.IBPluginDependency + 561.IBAttributePlaceholdersKey + 561.IBPluginDependency + 562.IBAttributePlaceholdersKey + 562.IBPluginDependency + 563.IBAttributePlaceholdersKey + 563.IBPluginDependency + 566.IBPluginDependency + 567.IBPluginDependency + 568.IBPluginDependency + 569.CustomClassName + 569.IBPluginDependency + 570.IBAttributePlaceholdersKey + 570.IBPluginDependency + 571.IBAttributePlaceholdersKey + 571.IBPluginDependency + 572.IBAttributePlaceholdersKey + 572.IBPluginDependency + 573.IBPluginDependency + 574.IBPluginDependency + 575.IBPluginDependency + 586.IBAttributePlaceholdersKey + 586.IBPluginDependency + 587.IBPluginDependency + 588.IBAttributePlaceholdersKey + 588.IBPluginDependency + 589.IBPluginDependency + 590.IBPluginDependency + 591.IBPluginDependency + 596.IBPluginDependency + 597.IBPluginDependency + 598.IBPluginDependency + 599.IBPluginDependency + 6.IBPluginDependency + 6.IBViewIntegration.shadowBlurRadius + 6.IBViewIntegration.shadowColor + 6.IBViewIntegration.shadowOffsetHeight + 6.IBViewIntegration.shadowOffsetWidth + 738.IBAttributePlaceholdersKey + 738.IBPluginDependency + 739.IBPluginDependency + 741.IBAttributePlaceholdersKey + 741.IBPluginDependency + 742.IBPluginDependency + 764.IBAttributePlaceholdersKey + 764.IBPluginDependency + 765.IBPluginDependency + 768.IBAttributePlaceholdersKey + 768.IBPluginDependency + 769.IBPluginDependency + 776.IBAttributePlaceholdersKey + 776.IBPluginDependency + 777.IBPluginDependency + 780.IBPluginDependency + 781.IBPluginDependency + 786.IBAttributePlaceholdersKey + 786.IBPluginDependency + 787.IBPluginDependency + 788.IBPluginDependency + 793.CustomClassName + 793.IBPluginDependency + 794.IBPluginDependency + 795.IBPluginDependency + 818.IBPluginDependency + 819.IBPluginDependency + 820.IBPluginDependency + 821.IBPluginDependency + 822.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 830.IBPluginDependency + 830.IBViewBoundsToFrameTransform + 831.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 + 893.IBPluginDependency + 897.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 914.IBPluginDependency + 915.IBPluginDependency + 918.IBPluginDependency + 919.IBPluginDependency + 920.IBPluginDependency + 920.IBViewIntegration.shadowBlurRadius + 920.IBViewIntegration.shadowColor + 920.IBViewIntegration.shadowOffsetHeight + 920.IBViewIntegration.shadowOffsetWidth + 921.IBPluginDependency + 937.CustomClassName + 937.IBPluginDependency + 947.IBPluginDependency + 947.IBViewIntegration.shadowBlurRadius + 947.IBViewIntegration.shadowColor + 947.IBViewIntegration.shadowOffsetHeight + 947.IBViewIntegration.shadowOffsetWidth + 948.IBPluginDependency + 948.IBShouldRemoveOnLegacySave + 949.IBPluginDependency + 949.IBShouldRemoveOnLegacySave + 950.IBPluginDependency + 952.IBPluginDependency + 953.CustomClassName + 953.IBPluginDependency + 961.IBPluginDependency + 99.IBAttributePlaceholdersKey + 99.IBPluginDependency + 995.IBPluginDependency + 996.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AcIIAADDDQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CustomTableView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Shuts down the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0IHRoZSBib290IHBhcnRpdGlvbnMgaGQoeCx5KSB0byBoaWRlICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the boot partitions "hd(x,y) MyVolumeName " where 'x' is the disk number, 'y' the partition number and MyVolumeName is the alias you want to give to this partition. (i.e: useful for renaming System Reserved boot partition for Windows 7) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + U2V0cyB0aGUgZGVmYXVsdCBib290IHBhcnRpdGlvbiBoZCh4LHkpICAgICAgICAgICAgICAgICAgd2hl +cmUgJ3gnIGlzIHRoZSBkaXNrIG51bWJlciwgJ3knIHRoZSBwYXJ0aXRpb24gbnVtYmVyCg + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use this feature to initially inject the current dynamically listed partitions. Then you can change manually the partition disk numbers and labels in the preference file + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Swap disks indexes 0<->1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the freezed partitions list in located in the preference file for locking and manual handling purpose + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force the path of org.chameleon.Boot.plist. Useful if more than one file is autodetected, and the automatically found one is not the one that the booter use. + + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate ATI ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate Nvidia ROM image (path: /Extra/<vendorid>_<devid>.rom) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + com.apple.InterfaceBuilder.CocoaPlugin + {{938, 770}, {668, 439}} + + {224.66399999999999, 10} + 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 + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Chameleon Extra folder location. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Folder location where the file 'cdboot' is located. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating your chameleon Extra folder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Creates a BootCD.iso file. When successfully run, a Chameleon Folder is created on your Desktop with that ISO to burn to a CD. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Open a directory selection dialog for locating the directory that contains the binary bootfile named 'cdboot'. It is needed for the image to build. Usaully in the sym/i386 subdirectory of your chameleon source distribution. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + AUIwAABDMwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDUQAAwy4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart the sytem + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Put the sytem in Sleep mode + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in Single User Mode (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Boot in verbose (text) mode, log info will be stored and accessible by the Console application (default: No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Ignore Boot Configuration file (default: No). If set, then org.chameleon.Boot.plist will not be loaded during the boot, only defaults options will be set. + + + 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 + + ToolTip + + ToolTip + + Use quiet boot mode (no messages or prompt) (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force displaying the partition selection menu (default=No) + + + 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 + + Use Wait to make the booter wait for a key press before it starts the mach kernel. Useful for debugging your boot configuration + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Show boot banner in GUI mode (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + ToolTip + + ToolTip + + Automatic device-properties generation for graphics cards (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use the legacy (grey on white) apple logo (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usage: + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Select a custom mach_kernel (/mach_kernel is used by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable kernel debug mode flags (i.e 0x0144). + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + io 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 + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Skip the SSDT tables while relocating the ACPI tables (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate DSDT.aml file (default path: /DSDT.aml /Extra/DSDT.aml) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Automatic "built-in" device-properties generation for ethernet interfaces (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the EHCI and UHCI fixes (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable the UHCI fix (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Don't use the Default values for SMBIOS overriding. If smbios.plist doesn't exist, factory values are kept (default=Yes) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate smbios.plist file (default path: /smbios.plist /Extra/smbios.plist) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Use an alternate sleepimage file (default path is /private/var/vm/sleepimage) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force using the sleepimage (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Scan the drive only where the booter got loaded from (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Prompts for enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable CD-ROM rescan mode (default=No) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable the blacklist kexts filtering in voodoo based kernels. Has no effect on vanilla kernels. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Force to boot in safe mode. Useful in certains situations (i.e: when one kexts hangs the system) + + + 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 + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set the SystemId from which will be generated the Hardware UUID. If no values are set, then the BIOS DMI UUID is taken as default, if no BIOS DMI UUID is found, then a fixed value is set. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Restart fix enable/disable option. If disabled, no FACP patch will be done at boot time. (Enabled by default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Override the automatic pciroot detection, and manually inject a pciroot number at boot time + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Disable GUI at boot time. (Enabled by Default) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets additional device properties like gfx card efi injection, network . + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + RoundedBox + 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 + + P4AAAL+AAABDwAAAwy4AAA + + 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 + 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 + RoundedBox + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + CenteredTextFieldCell + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Click on a partition to make it the default boot partition. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 1427 + + + + YES + + AboutController + NSObject + + onAbout: + id + + + onAbout: + + onAbout: + id + + + + mAboutDlg + NSPanel + + + mAboutDlg + + mAboutDlg + NSPanel + + + + IBProjectSource + Sources/AboutController.h + + + + AdvancedSetupController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSComboBox + NSButton + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSComboBox + NSButton + NSButton + NSTextField + + + + YES + + YES + mArch + mArchText + mBusRatio + mBusRatioText + mCPU + mCPUText + mDSDTDrop + mDSDTFile + mDSDTFileText + mDebug + mDebugText + mDeviceRd + mDeviceRdText + mDisableKextsBlacklisting + mForceWake + mGenerateCStates + mGeneratePStates + mIO + mIOText + mKernel + mKernelText + mRestartFix + mSMBIOSDefaults + mSMBIOSFile + mSMBIOSFileText + mSystemId + mSystemIdText + mSystemType + mSystemTypeText + mWake + mWakeImage + mWakeImageText + + + YES + + mArch + NSButton + + + mArchText + NSComboBox + + + mBusRatio + NSButton + + + mBusRatioText + NSComboBox + + + mCPU + NSButton + + + mCPUText + NSComboBox + + + mDSDTDrop + NSButton + + + mDSDTFile + NSButton + + + mDSDTFileText + NSTextField + + + mDebug + NSButton + + + mDebugText + NSComboBox + + + mDeviceRd + NSButton + + + mDeviceRdText + NSTextField + + + mDisableKextsBlacklisting + NSButton + + + mForceWake + NSButton + + + mGenerateCStates + NSButton + + + mGeneratePStates + NSButton + + + mIO + NSButton + + + mIOText + NSComboBox + + + mKernel + NSButton + + + mKernelText + NSTextField + + + mRestartFix + NSButton + + + mSMBIOSDefaults + NSButton + + + mSMBIOSFile + NSButton + + + mSMBIOSFileText + NSTextField + + + mSystemId + NSButton + + + mSystemIdText + NSTextField + + + mSystemType + NSButton + + + mSystemTypeText + NSComboBox + + + mWake + NSButton + + + mWakeImage + NSButton + + + mWakeImageText + NSTextField + + + + + IBProjectSource + Sources/AdvancedSetupController.h + + + + BootFlagsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mIgnoreBootConfig + mInstantMenu + mQuietBoot + mRescan + mRescanPrompt + mRescanSingleDrive + mSafeBoot + mSingleUser + mTheme + mThemeText + mTimeOut + mTimeOutText + mUseGUI + mVerbose + mWait + + + YES + + mIgnoreBootConfig + NSButton + + + mInstantMenu + NSButton + + + mQuietBoot + NSButton + + + mRescan + NSButton + + + mRescanPrompt + NSButton + + + mRescanSingleDrive + NSButton + + + mSafeBoot + NSButton + + + mSingleUser + NSButton + + + mTheme + NSButton + + + mThemeText + NSComboBox + + + mTimeOut + NSButton + + + mTimeOutText + NSTextField + + + mUseGUI + NSButton + + + mVerbose + NSButton + + + mWait + NSButton + + + + + IBProjectSource + Sources/BootFlagsController.h + + + + BootSetupController + PreferencesControllerBase + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + id + NSButton + id + id + id + NSTextField + + + + YES + + YES + onCdBootConfigPath: + onCheckButtonChange: + onCreateBootCD: + onExtraConfigPath: + onForceBootConfigPath: + onTextFiedChange: + + + YES + + onCdBootConfigPath: + id + + + onCheckButtonChange: + NSButton + + + onCreateBootCD: + id + + + onExtraConfigPath: + id + + + onForceBootConfigPath: + id + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + NSTextField + NSButton + NSButton + + + + YES + + YES + mBootCdbootPath + mBootCdbootPathText + mBootConfigPath + mBootConfigPathText + mBootExtraPath + mBootExtraPathText + mDefaultPartition + mDefaultPartitionText + mFreezeParts + mHidePartition + mHidePartitionText + mInjectFrozenParts + mRenamePartition + mRenamePartitionText + mSwapHD01 + mSwapHD02 + + + YES + + mBootCdbootPath + NSButton + + + mBootCdbootPathText + NSTextField + + + mBootConfigPath + NSButton + + + mBootConfigPathText + NSTextField + + + mBootExtraPath + NSButton + + + mBootExtraPathText + NSTextField + + + mDefaultPartition + NSButton + + + mDefaultPartitionText + NSTextField + + + mFreezeParts + NSButton + + + mHidePartition + NSButton + + + mHidePartitionText + NSTextField + + + mInjectFrozenParts + NSButton + + + mRenamePartition + NSButton + + + mRenamePartitionText + NSTextField + + + mSwapHD01 + NSButton + + + mSwapHD02 + NSButton + + + + + IBProjectSource + Sources/BootSetupController.h + + + + CenteredTextFieldCell + NSTextFieldCell + + IBProjectSource + Sources/CenterTextFieldCell.h + + + + ChameleonPrefPane + NSPreferencePane + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + id + id + id + + + + YES + + YES + onRestart: + onShutdown: + onSleep: + + + YES + + onRestart: + id + + + onShutdown: + id + + + onSleep: + id + + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + SFAuthorizationView + NSColorWell + NSColorWell + RoundedBox + RoundedBox + NSColorWell + NSColorWell + NSBox + NSButton + NSButton + NSButton + NSTextField + NSView + + + + YES + + YES + authView + backgroundColorWell + borderColorWell + box + footer + gradientEndColorWell + gradientStartColorWell + mOptions + mRestartButton + mShutDownButton + mSleepButton + mStatusText + mainView + + + YES + + authView + SFAuthorizationView + + + backgroundColorWell + NSColorWell + + + borderColorWell + NSColorWell + + + box + RoundedBox + + + footer + RoundedBox + + + gradientEndColorWell + NSColorWell + + + gradientStartColorWell + NSColorWell + + + mOptions + NSBox + + + mRestartButton + NSButton + + + mShutDownButton + NSButton + + + mSleepButton + NSButton + + + mStatusText + NSTextField + + + mainView + NSView + + + + + IBProjectSource + Sources/ChameleonPrefPane.h + + + + CustomTableView + NSTableView + + IBProjectSource + Sources/CustomTableView.h + + + + EfiInjectController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + NSButton + NSButton + NSTextField + + + + YES + + YES + mCurrentGfxInjection + mEfiInject + mEfiInjectText + + + YES + + mCurrentGfxInjection + NSButton + + + mEfiInject + NSButton + + + mEfiInjectText + NSTextField + + + + + IBProjectSource + Sources/EfiInjectController.h + + + + PeripheralsController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSButton + NSComboBox + NSButton + NSButton + NSButton + NSTextField + NSButton + NSButton + NSButton + + + + YES + + YES + mAtiVideoROM + mBootBanner + mEHCIacquire + mEthernetBuiltIn + mForceHPET + mGraphicsEnabler + mGraphicsMode + mGraphicsModeText + mLegacyLogo + mNvidiaVideoROM + mPciRoot + mPciRootText + mUHCIreset + mUSBBusFix + mVBIOS + + + YES + + mAtiVideoROM + NSButton + + + mBootBanner + NSButton + + + mEHCIacquire + NSButton + + + mEthernetBuiltIn + NSButton + + + mForceHPET + NSButton + + + mGraphicsEnabler + NSButton + + + mGraphicsMode + NSButton + + + mGraphicsModeText + NSComboBox + + + mLegacyLogo + NSButton + + + mNvidiaVideoROM + NSButton + + + mPciRoot + NSButton + + + mPciRootText + NSTextField + + + mUHCIreset + NSButton + + + mUSBBusFix + NSButton + + + mVBIOS + NSButton + + + + + IBProjectSource + Sources/PeripheralsController.h + + + + PreferencesControllerBase + NSObject + + IBProjectSource + Sources/PreferencesControllerBase.h + + + + RoundedBox + NSBox + + IBProjectSource + Sources/RoundedBox.h + + + + SmbiosController + PreferencesControllerBase + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + NSButton + NSTextField + + + + YES + + YES + onCheckButtonChange: + onTextFiedChange: + + + YES + + onCheckButtonChange: + NSButton + + + onTextFiedChange: + NSTextField + + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + NSButton + NSButton + NSButton + + + + YES + + YES + mAppleSmbios + mEditSmbios + mExtractACPITables + + + YES + + mAppleSmbios + NSButton + + + mEditSmbios + NSButton + + + mExtractACPITables + NSButton + + + + + IBProjectSource + Sources/SmbiosController.h + + + + TableViewsController + NSObject + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTabViewItem + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + NSTableColumn + CustomTableView + NSTabViewItem + NSTabViewItem + NSTabView + NSTableView + + + + YES + + YES + mAbout + mAdvanced + mBootFlags + mBootFrom + mBootSetup + mEfiInject + mFileSystemColumn + mHideOrViewColumn + mMenuIcon + mMenuName + mPartitionIDColumn + mPartitionImgColumn + mPartitionNameColumn + mPartitionUIDColumn + mPartitionsTable + mPeripherals + mSmbios + mTabViewPanes + mTabViewPanesSelect + + + YES + + mAbout + NSTabViewItem + + + mAdvanced + NSTabViewItem + + + mBootFlags + NSTabViewItem + + + mBootFrom + NSTabViewItem + + + mBootSetup + NSTabViewItem + + + mEfiInject + NSTabViewItem + + + mFileSystemColumn + NSTableColumn + + + mHideOrViewColumn + NSTableColumn + + + mMenuIcon + NSTableColumn + + + mMenuName + NSTableColumn + + + mPartitionIDColumn + NSTableColumn + + + mPartitionImgColumn + NSTableColumn + + + mPartitionNameColumn + NSTableColumn + + + mPartitionUIDColumn + NSTableColumn + + + mPartitionsTable + CustomTableView + + + mPeripherals + NSTabViewItem + + + mSmbios + NSTabViewItem + + + mTabViewPanes + NSTabView + + + mTabViewPanesSelect + NSTableView + + + + + IBProjectSource + Sources/TableViewsController.h + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSWindowRestoration.h + + + + NSBox + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSBox.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSColorWell + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSColorWell.h + + + + NSComboBox + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSComboBox.h + + + + NSComboBoxCell + NSTextFieldCell + + IBFrameworkSource + AppKit.framework/Headers/NSComboBoxCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSLayoutConstraint.h + + + + NSController + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSController.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + CoreImage.framework/Headers/CIImageProvider.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + QuartzCore.framework/Headers/CAAnimation.h + + + + NSObject + + IBFrameworkSource + QuartzCore.framework/Headers/CALayer.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSPreferencePane + NSObject + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + NSView + NSView + NSView + NSWindow + + + + YES + + YES + _firstKeyView + _initialKeyView + _lastKeyView + _window + + + YES + + _firstKeyView + NSView + + + _initialKeyView + NSView + + + _lastKeyView + NSView + + + _window + NSWindow + + + + + IBFrameworkSource + PreferencePanes.framework/Headers/NSPreferencePane.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSResponder + + + + NSScrollView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSScrollView.h + + + + NSScroller + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSScroller.h + + + + NSTabView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTabView.h + + + + NSTabViewItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTabViewItem.h + + + + NSTableColumn + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableColumn.h + + + + NSTableHeaderView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTableHeaderView.h + + + + NSTableView + NSControl + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSUserDefaultsController + NSController + + IBFrameworkSource + AppKit.framework/Headers/NSUserDefaultsController.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSOpenGLView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSViewController + NSResponder + + view + NSView + + + view + + view + NSView + + + + IBFrameworkSource + AppKit.framework/Headers/NSViewController.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + SFAuthorizationView + NSView + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../ChameleonPrefPane.xcodeproj + 3 + + YES + + YES + NSSwitch + background + cham + footer + name + + + YES + {15, 15} + {130, 1} + {344, 378} + {1, 34} + {262, 45} + + + +