Fixed for 10.4, made it not https as I will not have https later on, fixed transaltions.

This commit is contained in:
GRMrGecko 2010-08-12 12:00:31 -05:00
parent a287933585
commit c7fc81258f
42 changed files with 3941 additions and 1239 deletions

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/27/09. // Created by Mr. Gecko on 12/27/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMReporter.h" #import "MGMReporter.h"

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/2/10. // Created by Mr. Gecko on 1/2/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/2/10. // Created by Mr. Gecko on 1/2/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMBugWindow.h" #import "MGMBugWindow.h"
@ -28,7 +28,7 @@
[userEmailField setStringValue:[userDefautls objectForKey:MGMGRUserEmail]]; [userEmailField setStringValue:[userDefautls objectForKey:MGMGRUserEmail]];
[mainWindow makeKeyAndOrderFront:self]; [mainWindow makeKeyAndOrderFront:self];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
if ([sysInfo isUIElement]) if ([sysInfo isUIElement])
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES]; [[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
} }

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/3/10. // Created by Mr. Gecko on 1/3/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/3/10. // Created by Mr. Gecko on 1/3/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMContactWindow.h" #import "MGMContactWindow.h"
@ -30,7 +30,7 @@
[userNameField setStringValue:[userDefautls objectForKey:MGMGRUserName]]; [userNameField setStringValue:[userDefautls objectForKey:MGMGRUserName]];
[mainWindow makeKeyAndOrderFront:self]; [mainWindow makeKeyAndOrderFront:self];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
if ([sysInfo isUIElement]) if ([sysInfo isUIElement])
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES]; [[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
} }

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/2/10. // Created by Mr. Gecko on 1/2/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/2/10. // Created by Mr. Gecko on 1/2/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMFeedback.h" #import "MGMFeedback.h"

View File

@ -3,7 +3,7 @@
* GeckoReporter * GeckoReporter
* *
* Created by Mr. Gecko on 1/6/10. * Created by Mr. Gecko on 1/6/10.
* Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ * Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
* *
*/ */

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/1/10. // Created by Mr. Gecko on 1/1/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/1/10. // Created by Mr. Gecko on 1/1/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMLog.h" #import "MGMLog.h"

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/27/09. // Created by Mr. Gecko on 12/27/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/27/09. // Created by Mr. Gecko on 12/27/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMReportWindow.h" #import "MGMReportWindow.h"
@ -28,7 +28,7 @@ NSString * const MGMSaveLastDate = @"MGMSaveLastDate";
reportFile = [theReportFile retain]; reportFile = [theReportFile retain];
reportDate = [theReportDate retain]; reportDate = [theReportDate retain];
NSUserDefaults *userDefautls = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefautls = [NSUserDefaults standardUserDefaults];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
NSString *applicationName = [sysInfo applicationName]; NSString *applicationName = [sysInfo applicationName];
appMainMenu = [[[NSApplication sharedApplication] mainMenu] retain]; appMainMenu = [[[NSApplication sharedApplication] mainMenu] retain];

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/27/09. // Created by Mr. Gecko on 12/27/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/27/09. // Created by Mr. Gecko on 12/27/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMReporter.h" #import "MGMReporter.h"
@ -12,6 +12,8 @@
#import "MGMSystemInfo.h" #import "MGMSystemInfo.h"
#import "MGMLog.h" #import "MGMLog.h"
NSString * const MGMCopyright = @"Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/";
NSString * const MGMReportsPath = @"~/Library/Logs/CrashReporter"; NSString * const MGMReportsPath = @"~/Library/Logs/CrashReporter";
NSString * const MGMGRDoneNotification = @"MGMGRDoneNotification"; NSString * const MGMGRDoneNotification = @"MGMGRDoneNotification";
NSString * const MGMGRUserEmail = @"MGMGRUserEmail"; NSString * const MGMGRUserEmail = @"MGMGRUserEmail";
@ -31,7 +33,7 @@ NSString * const MGMGRIgnoreAll = @"MGMGRIgnoreAll";
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
if ([userDefaults objectForKey:MGMGRIgnoreAll]==nil || ![[userDefaults objectForKey:MGMGRIgnoreAll] boolValue]) { if ([userDefaults objectForKey:MGMGRIgnoreAll]==nil || ![[userDefaults objectForKey:MGMGRIgnoreAll] boolValue]) {
NSFileManager *manager = [NSFileManager defaultManager]; NSFileManager *manager = [NSFileManager defaultManager];
NSString *applicationName = [[[MGMSystemInfo new] autorelease] applicationEXECName]; NSString *applicationName = [[MGMSystemInfo info] applicationEXECName];
if (lastDate!=nil) { if (lastDate!=nil) {
[lastDate release]; [lastDate release];
lastDate = nil; lastDate = nil;
@ -45,13 +47,13 @@ NSString * const MGMGRIgnoreAll = @"MGMGRIgnoreAll";
NSString *file = [[MGMReportsPath stringByAppendingPathComponent:crashFile] stringByResolvingSymlinksInPath]; NSString *file = [[MGMReportsPath stringByAppendingPathComponent:crashFile] stringByResolvingSymlinksInPath];
BOOL readable = [manager isReadableFileAtPath:file]; BOOL readable = [manager isReadableFileAtPath:file];
NSDictionary *attributes = [crashFiles fileAttributes]; NSDictionary *attributes = [crashFiles fileAttributes];
NSDate *creationDate = [attributes objectForKey:NSFileCreationDate]; NSDate *modifiedDate = [attributes objectForKey:NSFileModificationDate];
if (readable && (lastDate==nil || (creationDate==[lastDate laterDate:creationDate]))) { if (readable && (lastDate==nil || (![lastDate isEqual:modifiedDate] && [lastDate laterDate:modifiedDate]==modifiedDate))) {
if (lastDate!=nil) { if (lastDate!=nil) {
[lastDate release]; [lastDate release];
lastDate = nil; lastDate = nil;
} }
lastDate = [creationDate retain]; lastDate = [modifiedDate retain];
lastCrashFile = file; lastCrashFile = file;
foundReport = YES; foundReport = YES;
} }

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/28/09. // Created by Mr. Gecko on 12/28/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/28/09. // Created by Mr. Gecko on 12/28/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMSender.h" #import "MGMSender.h"
@ -17,7 +17,7 @@ NSString * const MGMDefaultTimeFormat = @"%a, %m/%d/%y %H:%M:%S %Z";
NSString * const MGMDefaultCrashEmail = @"crashreports@mrgeckosmedia.com"; NSString * const MGMDefaultCrashEmail = @"crashreports@mrgeckosmedia.com";
NSString * const MGMDefaultBugsEmail = @"bugs@mrgeckosmedia.com"; NSString * const MGMDefaultBugsEmail = @"bugs@mrgeckosmedia.com";
NSString * const MGMDefaultContactEmail = @"support@mrgeckosmedia.com"; NSString * const MGMDefaultContactEmail = @"support@mrgeckosmedia.com";
NSString * const MGMDefaultURL = @"https://mrgeckosmedia.com/sendreport.php"; NSString * const MGMDefaultURL = @"http://mrgeckosmedia.com/sendreport.php";
NSString * const MGMGRTimeZone = @"MGMGRTimeZone"; NSString * const MGMGRTimeZone = @"MGMGRTimeZone";
NSString * const MGMGRTimeFormat = @"MGMGRTimeFormat"; NSString * const MGMGRTimeFormat = @"MGMGRTimeFormat";
@ -111,7 +111,7 @@ NSString * const MGMGRLogFiles = @"MGMGRLogFiles";
return data; return data;
} }
- (NSDictionary *)defaultObjects { - (NSDictionary *)defaultObjects {
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
NSMutableDictionary *objects = [NSMutableDictionary dictionary]; NSMutableDictionary *objects = [NSMutableDictionary dictionary];
[objects setObject:[sysInfo frameworkVersion] forKey:@"GRVersion"]; [objects setObject:[sysInfo frameworkVersion] forKey:@"GRVersion"];
[objects setObject:[sysInfo applicationName] forKey:@"Application"]; [objects setObject:[sysInfo applicationName] forKey:@"Application"];
@ -153,7 +153,7 @@ NSString * const MGMGRLogFiles = @"MGMGRLogFiles";
delegate = theDelegate; delegate = theDelegate;
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
NSString *email = nil, *url = nil, *userEmail = nil, *logFiles = nil; NSString *email = nil, *url = nil, *userEmail = nil, *logFiles = nil;
BOOL reportAttached = NO; BOOL reportAttached = NO;
@ -233,7 +233,7 @@ NSString * const MGMGRLogFiles = @"MGMGRLogFiles";
delegate = theDelegate; delegate = theDelegate;
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
NSString *email = nil, *url = nil, *userEmail = nil; NSString *email = nil, *url = nil, *userEmail = nil;
if ([userDefaults objectForKey:MGMGRBugsEmail]!=nil && ![[userDefaults objectForKey:MGMGRBugsEmail] isEqualToString:@""]) { if ([userDefaults objectForKey:MGMGRBugsEmail]!=nil && ![[userDefaults objectForKey:MGMGRBugsEmail] isEqualToString:@""]) {
@ -293,7 +293,7 @@ NSString * const MGMGRLogFiles = @"MGMGRLogFiles";
delegate = theDelegate; delegate = theDelegate;
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
MGMSystemInfo *sysInfo = [[MGMSystemInfo new] autorelease]; MGMSystemInfo *sysInfo = [MGMSystemInfo info];
NSString *email = nil, *url = nil, *userEmail = nil, *userName = nil; NSString *email = nil, *url = nil, *userEmail = nil, *userName = nil;
if ([userDefaults objectForKey:MGMGRContactEmail]!=nil && ![[userDefaults objectForKey:MGMGRContactEmail] isEqualToString:@""]) { if ([userDefaults objectForKey:MGMGRContactEmail]!=nil && ![[userDefaults objectForKey:MGMGRContactEmail] isEqualToString:@""]) {

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/2/10. // Created by Mr. Gecko on 1/2/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/31/09. // Created by Mr. Gecko on 12/31/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
@ -12,6 +12,7 @@
@interface MGMSystemInfo : NSObject { @interface MGMSystemInfo : NSObject {
} }
+ (MGMSystemInfo *)info;
- (NSString *)architecture; - (NSString *)architecture;
- (BOOL)is64Bit; - (BOOL)is64Bit;
- (NSString *)CPUFamily; - (NSString *)CPUFamily;

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 12/31/09. // Created by Mr. Gecko on 12/31/09.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMSystemInfo.h" #import "MGMSystemInfo.h"
@ -31,6 +31,10 @@ NSString * const MGMModel = @"hw.model";
@end @end
@implementation MGMSystemInfo @implementation MGMSystemInfo
+ (MGMSystemInfo *)info {
return [[[self alloc] init] autorelease];
}
- (int)valueFromSystem:(NSString *)theName { - (int)valueFromSystem:(NSString *)theName {
int value = 0; int value = 0;
unsigned long length = sizeof(value); unsigned long length = sizeof(value);
@ -273,15 +277,15 @@ NSString * const MGMModel = @"hw.model";
} }
- (NSString *)applicationName { - (NSString *)applicationName {
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"]; return [[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString *)kCFBundleNameKey];
} }
- (NSString *)applicationEXECName { - (NSString *)applicationEXECName {
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleExecutable"]; return [[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString *)kCFBundleExecutableKey];
} }
- (NSString *)applicationVersion { - (NSString *)applicationVersion {
return [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]; return [[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString *)kCFBundleVersionKey];
} }
- (BOOL)isUIElement { - (BOOL)isUIElement {
@ -293,7 +297,7 @@ NSString * const MGMModel = @"hw.model";
} }
- (NSString *)frameworkVersion { - (NSString *)frameworkVersion {
return [FRAMEWORKBUNDLE objectForInfoDictionaryKey:@"CFBundleVersion"]; return [FRAMEWORKBUNDLE objectForInfoDictionaryKey:(NSString *)kCFBundleVersionKey];
} }
- (NSString *)useragentWithApplicationNameAndVersion:(NSString *)nameAndVersion { - (NSString *)useragentWithApplicationNameAndVersion:(NSString *)nameAndVersion {

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/1/10. // Created by Mr. Gecko on 1/1/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -3,7 +3,7 @@
// GeckoReporter // GeckoReporter
// //
// Created by Mr. Gecko on 1/1/10. // Created by Mr. Gecko on 1/1/10.
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
// //
#import "MGMController.h" #import "MGMController.h"

View File

@ -1,50 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?> {
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> "CFBundleDevelopmentRegion" = English;
<plist version="1.0"> CFBundleExecutable = "${EXECUTABLE_NAME}";
<dict> CFBundleIconFile = GeckoReporter;
<key>CFBundleDevelopmentRegion</key> CFBundleIdentifier = "com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}";
<string>English</string> "CFBundleInfoDictionaryVersion" = "6.0";
<key>CFBundleExecutable</key> CFBundleName = "${PRODUCT_NAME}";
<string>${EXECUTABLE_NAME}</string> CFBundlePackageType = APPL;
<key>CFBundleIconFile</key> CFBundleSignature = "????";
<string>GeckoReporter</string> "NSHumanReadableCopyright" = "Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/";
<key>CFBundleIdentifier</key> "CFBundleShortVersionString" = "0.1";
<string>com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}</string> CFBundleVersion = "0.1";
<key>CFBundleInfoDictionaryVersion</key> "LSMinimumSystemVersion" = "${MACOSX_DEPLOYMENT_TARGET}";
<string>6.0</string> NSPrincipalClass = NSApplication;
<key>CFBundleName</key> NSMainNibFile = MainMenu;
<string>${PRODUCT_NAME}</string> MGMGRCrashEmail = "crashreports@mrgeckosmedia.com";
<key>CFBundlePackageType</key> MGMGRBugsEmail = "bugs@mrgeckosmedia.com";
<string>APPL</string> MGMGRContactEmail = "support@mrgeckosmedia.com";
<key>CFBundleSignature</key> MGMGRLogFiles = "~/Library/Logs/com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}.log ~/Library/Logs/com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}_2.log";
<string>????</string> "MGMGRReportFileAttached" = YES;
<key>NSHumanReadableCopyright</key> MGMGRTimeFormat = "%A, %m/%d/%y %I:%M:%S %p";
<string>Copyright 2010 by Mr. Gecko&apos;s Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/</string> MGMGRTimeZone = CST;
<key>CFBundleShortVersionString</key> MGMGRURL = "http://mrgeckosmedia.com/sendreport.php";
<string>0.1</string> }
<key>CFBundleVersion</key>
<string>0.1</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>MGMGRCrashEmail</key>
<string>crashreports@mrgeckosmedia.com</string>
<key>MGMGRBugsEmail</key>
<string>bugs@mrgeckosmedia.com</string>
<key>MGMGRContactEmail</key>
<string>support@mrgeckosmedia.com</string>
<key>MGMGRLogFiles</key>
<string>~/Library/Logs/com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}.log ~/Library/Logs/com.MrGeckosMedia.${PRODUCT_NAME:rfc1034identifier}_2.log</string>
<key>MGMGRReportFileAttached</key>
<true/>
<key>MGMGRTimeFormat</key>
<string>%A, %m/%d/%y %I:%M:%S %p</string>
<key>MGMGRTimeZone</key>
<string>CST</string>
<key>MGMGRURL</key>
<string>https://mrgeckosmedia.com/sendreport.php</string>
</dict>
</plist>

View File

@ -1,30 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> {
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> "CFBundleDevelopmentRegion" = English;
<plist version="1.0"> CFBundleExecutable = "${EXECUTABLE_NAME}";
<dict> CFBundleName = "${PRODUCT_NAME}";
<key>CFBundleDevelopmentRegion</key> CFBundleIconFile = "";
<string>English</string> CFBundleIdentifier = "com.MrGeckosMedia.${PRODUCT_NAME:rfc1034Identifier}";
<key>CFBundleExecutable</key> "CFBundleInfoDictionaryVersion" = "6.0";
<string>${EXECUTABLE_NAME}</string> CFBundlePackageType = FMWK;
<key>CFBundleName</key> CFBundleSignature = "????";
<string>${PRODUCT_NAME}</string> "NSHumanReadableCopyright" = "Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/";
<key>CFBundleIconFile</key> CFBundleVersion = "0.1";
<string></string> "CFBundleShortVersionString" = "0.1";
<key>CFBundleIdentifier</key> NSPrincipalClass = "";
<string>com.MrGeckosMedia.${PRODUCT_NAME:rfc1034Identifier}</string> }
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 2010 by Mr. Gecko&apos;s Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/</string>
<key>CFBundleVersion</key>
<string>0.1</string>
<key>CFBundleShortVersionString</key>
<string>0.1</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

View File

@ -136,12 +136,8 @@
PBXFileDataSource_Warnings_ColumnID, PBXFileDataSource_Warnings_ColumnID,
); );
}; };
PBXPerProjectTemplateStateSaveDate = 297304370; PBXPerProjectTemplateStateSaveDate = 303325059;
PBXWorkspaceStateSaveDate = 297304370; PBXWorkspaceStateSaveDate = 303325059;
};
perUserProjectItems = {
2A8FF6CA1191E47400E27292 = 2A8FF6CA1191E47400E27292 /* PBXBookmark */;
2A8FF6D01192232500E27292 = 2A8FF6D01192232500E27292 /* PBXTextBookmark */;
}; };
sourceControlManager = 2A478DA110E8456500EBC4A9 /* Source Control */; sourceControlManager = 2A478DA110E8456500EBC4A9 /* Source Control */;
userBuildSettings = { userBuildSettings = {
@ -173,7 +169,7 @@
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}";
sepNavSelRange = "{362, 0}"; sepNavSelRange = "{362, 0}";
sepNavVisRange = "{0, 452}"; sepNavVisRange = "{0, 453}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -187,9 +183,9 @@
}; };
2A85014810EFA81C00CA1273 /* MGMBugWindow.m */ = { 2A85014810EFA81C00CA1273 /* MGMBugWindow.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 1196}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 1209}}";
sepNavSelRange = "{308, 0}"; sepNavSelRange = "{878, 11}";
sepNavVisRange = "{0, 1232}"; sepNavVisRange = "{79, 1224}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -201,20 +197,6 @@
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
2A8FF6CA1191E47400E27292 /* PBXBookmark */ = {
isa = PBXBookmark;
fRef = 2AC8694E10EE8062000743D2 /* MGMReportWindow.m */;
};
2A8FF6D01192232500E27292 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2AC8694E10EE8062000743D2 /* MGMReportWindow.m */;
name = "MGMReportWindow.m: 31";
rLen = 59;
rLoc = 974;
rType = 0;
vrLen = 2178;
vrLoc = 0;
};
2AB2902810F132290080C6A1 /* MGMContactWindow.h */ = { 2AB2902810F132290080C6A1 /* MGMContactWindow.h */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}";
@ -225,9 +207,9 @@
}; };
2AB2902910F132290080C6A1 /* MGMContactWindow.m */ = { 2AB2902910F132290080C6A1 /* MGMContactWindow.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 1417}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 1430}}";
sepNavSelRange = "{916, 43}"; sepNavSelRange = "{989, 0}";
sepNavVisRange = "{0, 1328}"; sepNavVisRange = "{0, 1316}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -247,7 +229,7 @@
2AB2984D10F54BB40080C6A1 /* pt_PT */ = { 2AB2984D10F54BB40080C6A1 /* pt_PT */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1601, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1601, 646}}";
sepNavSelRange = "{1209, 0}"; sepNavSelRange = "{669, 0}";
sepNavVisRange = "{0, 1212}"; sepNavVisRange = "{0, 1212}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
@ -255,7 +237,7 @@
2AB2985110F54C1E0080C6A1 /* es */ = { 2AB2985110F54C1E0080C6A1 /* es */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1524, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1524, 646}}";
sepNavSelRange = "{1160, 0}"; sepNavSelRange = "{125, 8}";
sepNavVisRange = "{0, 1163}"; sepNavVisRange = "{0, 1163}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
@ -270,9 +252,10 @@
}; };
2AB2987E10F5537D0080C6A1 /* License.txt */ = { 2AB2987E10F5537D0080C6A1 /* License.txt */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1221, 646}}";
sepNavSelRange = "{670, 0}"; sepNavSelRange = "{1379, 0}";
sepNavVisRange = "{0, 1229}"; sepNavVisRange = "{0, 1379}";
sepNavWindowFrame = "{{0, 4}, {1280, 774}}";
}; };
}; };
2AC8693C10EE7EDE000743D2 /* Prefix.pch */ = { 2AC8693C10EE7EDE000743D2 /* Prefix.pch */ = {
@ -301,9 +284,9 @@
}; };
2AC8694C10EE8062000743D2 /* MGMReporter.m */ = { 2AC8694C10EE8062000743D2 /* MGMReporter.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 1352}}"; sepNavIntBoundsRect = "{{0, 0}, {1503, 1404}}";
sepNavSelRange = "{835, 0}"; sepNavSelRange = "{2898, 0}";
sepNavVisRange = "{0, 2162}"; sepNavVisRange = "{0, 2172}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -317,9 +300,9 @@
}; };
2AC8694E10EE8062000743D2 /* MGMReportWindow.m */ = { 2AC8694E10EE8062000743D2 /* MGMReportWindow.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1475, 1690}}"; sepNavIntBoundsRect = "{{0, 0}, {1475, 1781}}";
sepNavSelRange = "{974, 59}"; sepNavSelRange = "{0, 0}";
sepNavVisRange = "{0, 2178}"; sepNavVisRange = "{808, 1931}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -334,16 +317,16 @@
2AC8695110EE8062000743D2 /* MGMSystemInfo.h */ = { 2AC8695110EE8062000743D2 /* MGMSystemInfo.h */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 646}}";
sepNavSelRange = "{891, 0}"; sepNavSelRange = "{359, 8}";
sepNavVisRange = "{0, 1067}"; sepNavVisRange = "{0, 1092}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
2AC8695210EE8062000743D2 /* MGMSystemInfo.m */ = { 2AC8695210EE8062000743D2 /* MGMSystemInfo.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 4043}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 4121}}";
sepNavSelRange = "{6602, 11}"; sepNavSelRange = "{6760, 42}";
sepNavVisRange = "{5911, 1575}"; sepNavVisRange = "{6002, 1700}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
@ -465,16 +448,16 @@
2AC86B4610EE9DD7000743D2 /* MGMLog.m */ = { 2AC86B4610EE9DD7000743D2 /* MGMLog.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1176, 1196}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 1196}}";
sepNavSelRange = "{201, 3032}"; sepNavSelRange = "{201, 508}";
sepNavVisRange = "{0, 1785}"; sepNavVisRange = "{710, 1826}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };
2AC86CF010EEC54C000743D2 /* MGMSender.m */ = { 2AC86CF010EEC54C000743D2 /* MGMSender.m */ = {
uiCtxt = { uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1496, 5018}}"; sepNavIntBoundsRect = "{{0, 0}, {1176, 5226}}";
sepNavSelRange = "{10263, 0}"; sepNavSelRange = "{671, 0}";
sepNavVisRange = "{13505, 2481}"; sepNavVisRange = "{0, 1737}";
sepNavWindowFrame = "{{15, 4}, {1235, 774}}"; sepNavWindowFrame = "{{15, 4}, {1235, 774}}";
}; };
}; };

View File

@ -197,48 +197,7 @@
<key>Notifications</key> <key>Notifications</key>
<array/> <array/>
<key>OpenEditors</key> <key>OpenEditors</key>
<array> <array/>
<dict>
<key>Content</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>2A8FF6CE1192232500E27292</string>
<key>PBXProjectModuleLabel</key>
<string>MGMReportWindow.m</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>2A8FF6CF1192232500E27292</string>
<key>PBXProjectModuleLabel</key>
<string>MGMReportWindow.m</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>2A8FF6D01192232500E27292</string>
<key>history</key>
<array>
<string>2A8FF6CA1191E47400E27292</string>
</array>
</dict>
<key>SplitCount</key>
<string>1</string>
</dict>
<key>StatusBarVisibility</key>
<true/>
</dict>
<key>Geometry</key>
<dict>
<key>Frame</key>
<string>{{0, 20}, {1235, 677}}</string>
<key>PBXModuleWindowStatusBarHidden2</key>
<false/>
<key>RubberWindowFrame</key>
<string>15 60 1235 718 0 0 1280 778 </string>
</dict>
</dict>
</array>
<key>PerspectiveWidths</key> <key>PerspectiveWidths</key>
<array> <array>
<integer>1280</integer> <integer>1280</integer>
@ -326,7 +285,7 @@
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array> <array>
<array> <array>
<integer>7</integer> <integer>5</integer>
<integer>2</integer> <integer>2</integer>
<integer>1</integer> <integer>1</integer>
<integer>0</integer> <integer>0</integer>
@ -418,6 +377,8 @@
<string>XCDetailModule</string> <string>XCDetailModule</string>
</dict> </dict>
<dict> <dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key> <key>ContentConfiguration</key>
<dict> <dict>
<key>PBXProjectModuleGUID</key> <key>PBXProjectModuleGUID</key>
@ -429,38 +390,17 @@
<dict> <dict>
<key>Frame</key> <key>Frame</key>
<string>{{10, 27}, {1073, 646}}</string> <string>{{10, 27}, {1073, 646}}</string>
<key>RubberWindowFrame</key>
<string>0 59 1280 719 0 0 1280 778 </string>
</dict> </dict>
<key>Module</key> <key>Module</key>
<string>PBXProjectFindModule</string> <string>PBXProjectFindModule</string>
</dict> </dict>
<dict> <dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key> <key>ContentConfiguration</key>
<dict> <dict>
<key>PBXCVSModuleFilterTypeKey</key> <key>PBXCVSModuleFilterTypeKey</key>
<integer>1032</integer> <integer>1032</integer>
<key>PBXCVSModuleTreeModuleColumnData</key>
<dict>
<key>PBXCVSModuleTreeModuleColumnWidthsKey</key>
<array>
<real>655</real>
<real>56</real>
<real>63</real>
<real>60</real>
<real>63</real>
<real>139</real>
</array>
<key>PBXCVSModuleTreeModuleColumnsKey</key>
<array>
<string>Name</string>
<string>Status</string>
<string>Update</string>
<string>Revision</string>
<string>Author</string>
<string>Date</string>
</array>
</dict>
<key>PBXProjectModuleGUID</key> <key>PBXProjectModuleGUID</key>
<string>1CA23EE10692099D00951B8B</string> <string>1CA23EE10692099D00951B8B</string>
<key>PBXProjectModuleLabel</key> <key>PBXProjectModuleLabel</key>
@ -470,8 +410,6 @@
<dict> <dict>
<key>Frame</key> <key>Frame</key>
<string>{{10, 27}, {1073, 646}}</string> <string>{{10, 27}, {1073, 646}}</string>
<key>RubberWindowFrame</key>
<string>0 59 1280 719 0 0 1280 778 </string>
</dict> </dict>
<key>Module</key> <key>Module</key>
<string>PBXCVSModule</string> <string>PBXCVSModule</string>
@ -519,11 +457,11 @@
</array> </array>
<key>TableOfContents</key> <key>TableOfContents</key>
<array> <array>
<string>2A8FF6BE1191E1FB00E27292</string> <string>2A1B4B2912145FD700C1F8A0</string>
<string>1CA23ED40692098700951B8B</string> <string>1CA23ED40692098700951B8B</string>
<string>2A8FF6BF1191E1FB00E27292</string> <string>2A1B4B2A12145FD700C1F8A0</string>
<string>2A478DDD10E8598900EBC4A9</string> <string>2A478DDD10E8598900EBC4A9</string>
<string>2A8FF6C01191E1FB00E27292</string> <string>2A1B4B2B12145FD700C1F8A0</string>
<string>1CA23EDF0692099D00951B8B</string> <string>1CA23EDF0692099D00951B8B</string>
<string>1CA23EE00692099D00951B8B</string> <string>1CA23EE00692099D00951B8B</string>
<string>1CA23EE10692099D00951B8B</string> <string>1CA23EE10692099D00951B8B</string>
@ -674,14 +612,14 @@
</array> </array>
<key>TableOfContents</key> <key>TableOfContents</key>
<array> <array>
<string>2A5B7B1610FCBA9400051C18</string> <string>2AF1C1461214451C008E7D29</string>
<string>1CCC7628064C1048000F2A68</string> <string>1CCC7628064C1048000F2A68</string>
<string>1CCC7629064C1048000F2A68</string> <string>1CCC7629064C1048000F2A68</string>
<string>2A5B7B1710FCBA9400051C18</string> <string>2AF1C1471214451C008E7D29</string>
<string>2A5B7B1810FCBA9400051C18</string> <string>2AF1C1481214451C008E7D29</string>
<string>2A5B7B1910FCBA9400051C18</string> <string>2AF1C1491214451C008E7D29</string>
<string>2A5B7B1A10FCBA9400051C18</string> <string>2AF1C14A1214451C008E7D29</string>
<string>2A478DDD10E8598900EBC4A9</string> <string>2AF1C14B1214451C008E7D29</string>
</array> </array>
<key>ToolbarConfigUserDefaultsMinorVersion</key> <key>ToolbarConfigUserDefaultsMinorVersion</key>
<string>2</string> <string>2</string>
@ -715,7 +653,6 @@
<integer>5</integer> <integer>5</integer>
<key>WindowOrderList</key> <key>WindowOrderList</key>
<array> <array>
<string>2A8FF6CE1192232500E27292</string>
<string>/Development/James' Applications/GeckoReporter/GeckoReporter.xcodeproj</string> <string>/Development/James' Applications/GeckoReporter/GeckoReporter.xcodeproj</string>
</array> </array>
<key>WindowString</key> <key>WindowString</key>
@ -1557,7 +1494,7 @@
<key>TableOfContents</key> <key>TableOfContents</key>
<array> <array>
<string>2A478EAD10E881CF00EBC4A9</string> <string>2A478EAD10E881CF00EBC4A9</string>
<string>2A5B7AD010FCB63600051C18</string> <string>2A3B3EB012145370002E3055</string>
<string>2A478EAC10E881CF00EBC4A9</string> <string>2A478EAC10E881CF00EBC4A9</string>
</array> </array>
<key>WindowString</key> <key>WindowString</key>

View File

@ -9,10 +9,10 @@
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
2A85014410EFA6A700CA1273 /* MGMFeedback.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A85014210EFA6A700CA1273 /* MGMFeedback.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2A85014410EFA6A700CA1273 /* MGMFeedback.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A85014210EFA6A700CA1273 /* MGMFeedback.h */; settings = {ATTRIBUTES = (Public, ); }; };
2A85014510EFA6A700CA1273 /* MGMFeedback.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A85014310EFA6A700CA1273 /* MGMFeedback.m */; }; 2A85014510EFA6A700CA1273 /* MGMFeedback.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A85014310EFA6A700CA1273 /* MGMFeedback.m */; };
2A85014910EFA81C00CA1273 /* MGMBugWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A85014710EFA81C00CA1273 /* MGMBugWindow.h */; settings = {ATTRIBUTES = (Private, ); }; }; 2A85014910EFA81C00CA1273 /* MGMBugWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A85014710EFA81C00CA1273 /* MGMBugWindow.h */; settings = {ATTRIBUTES = (); }; };
2A85014A10EFA81C00CA1273 /* MGMBugWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A85014810EFA81C00CA1273 /* MGMBugWindow.m */; }; 2A85014A10EFA81C00CA1273 /* MGMBugWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A85014810EFA81C00CA1273 /* MGMBugWindow.m */; };
2A8502FD10F0636600CA1273 /* MGMSenderDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8502FC10F0636600CA1273 /* MGMSenderDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2A8502FD10F0636600CA1273 /* MGMSenderDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8502FC10F0636600CA1273 /* MGMSenderDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AB2902A10F132290080C6A1 /* MGMContactWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB2902810F132290080C6A1 /* MGMContactWindow.h */; settings = {ATTRIBUTES = (Private, ); }; }; 2AB2902A10F132290080C6A1 /* MGMContactWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB2902810F132290080C6A1 /* MGMContactWindow.h */; settings = {ATTRIBUTES = (); }; };
2AB2902B10F132290080C6A1 /* MGMContactWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AB2902910F132290080C6A1 /* MGMContactWindow.m */; }; 2AB2902B10F132290080C6A1 /* MGMContactWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AB2902910F132290080C6A1 /* MGMContactWindow.m */; };
2AB297AF10F51A070080C6A1 /* GeckoReporter.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2AB297A510F5173F0080C6A1 /* GeckoReporter.icns */; }; 2AB297AF10F51A070080C6A1 /* GeckoReporter.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2AB297A510F5173F0080C6A1 /* GeckoReporter.icns */; };
2AB2984610F54BA00080C6A1 /* GeckoReporter.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983110F54BA00080C6A1 /* GeckoReporter.strings */; }; 2AB2984610F54BA00080C6A1 /* GeckoReporter.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983110F54BA00080C6A1 /* GeckoReporter.strings */; };
@ -20,12 +20,12 @@
2AB2984A10F54BA00080C6A1 /* MGMContactWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983910F54BA00080C6A1 /* MGMContactWindow.xib */; }; 2AB2984A10F54BA00080C6A1 /* MGMContactWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983910F54BA00080C6A1 /* MGMContactWindow.xib */; };
2AB2984B10F54BA00080C6A1 /* MGMReportWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983B10F54BA00080C6A1 /* MGMReportWindow.xib */; }; 2AB2984B10F54BA00080C6A1 /* MGMReportWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2983B10F54BA00080C6A1 /* MGMReportWindow.xib */; };
2AB2984C10F54BA00080C6A1 /* ModelNames.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2984110F54BA00080C6A1 /* ModelNames.plist */; }; 2AB2984C10F54BA00080C6A1 /* ModelNames.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2984110F54BA00080C6A1 /* ModelNames.plist */; };
2AB2985D10F54D490080C6A1 /* MGMLocalized.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB2985C10F54D490080C6A1 /* MGMLocalized.h */; settings = {ATTRIBUTES = (Private, ); }; }; 2AB2985D10F54D490080C6A1 /* MGMLocalized.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB2985C10F54D490080C6A1 /* MGMLocalized.h */; settings = {ATTRIBUTES = (); }; };
2AB2987F10F5537D0080C6A1 /* License.txt in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2987E10F5537D0080C6A1 /* License.txt */; }; 2AB2987F10F5537D0080C6A1 /* License.txt in Resources */ = {isa = PBXBuildFile; fileRef = 2AB2987E10F5537D0080C6A1 /* License.txt */; };
2AC8695410EE8062000743D2 /* GeckoReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694A10EE8062000743D2 /* GeckoReporter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2AC8695410EE8062000743D2 /* GeckoReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694A10EE8062000743D2 /* GeckoReporter.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AC8695510EE8062000743D2 /* MGMReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694B10EE8062000743D2 /* MGMReporter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2AC8695510EE8062000743D2 /* MGMReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694B10EE8062000743D2 /* MGMReporter.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AC8695610EE8062000743D2 /* MGMReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC8694C10EE8062000743D2 /* MGMReporter.m */; }; 2AC8695610EE8062000743D2 /* MGMReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC8694C10EE8062000743D2 /* MGMReporter.m */; };
2AC8695710EE8062000743D2 /* MGMReportWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694D10EE8062000743D2 /* MGMReportWindow.h */; settings = {ATTRIBUTES = (Private, ); }; }; 2AC8695710EE8062000743D2 /* MGMReportWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694D10EE8062000743D2 /* MGMReportWindow.h */; settings = {ATTRIBUTES = (); }; };
2AC8695810EE8062000743D2 /* MGMReportWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC8694E10EE8062000743D2 /* MGMReportWindow.m */; }; 2AC8695810EE8062000743D2 /* MGMReportWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC8694E10EE8062000743D2 /* MGMReportWindow.m */; };
2AC8695910EE8062000743D2 /* MGMSender.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694F10EE8062000743D2 /* MGMSender.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2AC8695910EE8062000743D2 /* MGMSender.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8694F10EE8062000743D2 /* MGMSender.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AC8695B10EE8062000743D2 /* MGMSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8695110EE8062000743D2 /* MGMSystemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2AC8695B10EE8062000743D2 /* MGMSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8695110EE8062000743D2 /* MGMSystemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
@ -286,13 +286,13 @@
files = ( files = (
2AC8695410EE8062000743D2 /* GeckoReporter.h in Headers */, 2AC8695410EE8062000743D2 /* GeckoReporter.h in Headers */,
2AC8695510EE8062000743D2 /* MGMReporter.h in Headers */, 2AC8695510EE8062000743D2 /* MGMReporter.h in Headers */,
2AC8695710EE8062000743D2 /* MGMReportWindow.h in Headers */,
2AC8695910EE8062000743D2 /* MGMSender.h in Headers */, 2AC8695910EE8062000743D2 /* MGMSender.h in Headers */,
2AC8695B10EE8062000743D2 /* MGMSystemInfo.h in Headers */, 2AC8695B10EE8062000743D2 /* MGMSystemInfo.h in Headers */,
2AC86B4710EE9DD7000743D2 /* MGMLog.h in Headers */, 2AC86B4710EE9DD7000743D2 /* MGMLog.h in Headers */,
2A85014410EFA6A700CA1273 /* MGMFeedback.h in Headers */, 2A85014410EFA6A700CA1273 /* MGMFeedback.h in Headers */,
2A85014910EFA81C00CA1273 /* MGMBugWindow.h in Headers */,
2A8502FD10F0636600CA1273 /* MGMSenderDelegate.h in Headers */, 2A8502FD10F0636600CA1273 /* MGMSenderDelegate.h in Headers */,
2AC8695710EE8062000743D2 /* MGMReportWindow.h in Headers */,
2A85014910EFA81C00CA1273 /* MGMBugWindow.h in Headers */,
2AB2902A10F132290080C6A1 /* MGMContactWindow.h in Headers */, 2AB2902A10F132290080C6A1 /* MGMContactWindow.h in Headers */,
2AB2985D10F54D490080C6A1 /* MGMLocalized.h in Headers */, 2AB2985D10F54D490080C6A1 /* MGMLocalized.h in Headers */,
); );
@ -505,12 +505,9 @@
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Prefix.pch; GCC_PREFIX_HEADER = Prefix.pch;
GCC_VERSION = 4.0;
INFOPLIST_FILE = "GeckoReporter-Info.plist"; INFOPLIST_FILE = "GeckoReporter-Info.plist";
INSTALL_PATH = "@executable_path/../Frameworks"; INSTALL_PATH = "@executable_path/../Frameworks";
PRODUCT_NAME = GeckoReporter; PRODUCT_NAME = GeckoReporter;
SDKROOT = macosx10.4;
"SDKROOT[arch=*]" = macosx10.5;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
WRAPPER_EXTENSION = framework; WRAPPER_EXTENSION = framework;
}; };
@ -527,12 +524,9 @@
GCC_MODEL_TUNING = G5; GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Prefix.pch; GCC_PREFIX_HEADER = Prefix.pch;
GCC_VERSION = 4.0;
INFOPLIST_FILE = "GeckoReporter-Info.plist"; INFOPLIST_FILE = "GeckoReporter-Info.plist";
INSTALL_PATH = "@executable_path/../Frameworks"; INSTALL_PATH = "@executable_path/../Frameworks";
PRODUCT_NAME = GeckoReporter; PRODUCT_NAME = GeckoReporter;
SDKROOT = macosx10.4;
"SDKROOT[arch=x86_64]" = macosx10.5;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
WRAPPER_EXTENSION = framework; WRAPPER_EXTENSION = framework;
}; };
@ -541,26 +535,39 @@
1DEB91B208733DA50010E9CD /* Debug */ = { 1DEB91B208733DA50010E9CD /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; ARCHS = (
ppc,
i386,
x86_64,
);
GCC_C_LANGUAGE_STANDARD = gnu99; GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.4;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = macosx10.6; SDKROOT = macosx10.5;
}; };
name = Debug; name = Debug;
}; };
1DEB91B308733DA50010E9CD /* Release */ = { 1DEB91B308733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; ARCHS = (
ppc,
i386,
x86_64,
);
GCC_C_LANGUAGE_STANDARD = gnu99; GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.4;
"MACOSX_DEPLOYMENT_TARGET[arch=x86_64]" = 10.5;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = macosx10.6; SDKROOT = macosx10.5;
}; };
name = Release; name = Release;
}; };
@ -575,7 +582,6 @@
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Prefix.pch; GCC_PREFIX_HEADER = Prefix.pch;
GCC_VERSION = 4.0;
INFOPLIST_FILE = "GeckoReporter Test-Info.plist"; INFOPLIST_FILE = "GeckoReporter Test-Info.plist";
INSTALL_PATH = "$(HOME)/Applications"; INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = ( OTHER_LDFLAGS = (
@ -586,8 +592,6 @@
); );
PREBINDING = NO; PREBINDING = NO;
PRODUCT_NAME = "GeckoReporter Test"; PRODUCT_NAME = "GeckoReporter Test";
SDKROOT = macosx10.4;
"SDKROOT[arch=*]" = macosx10.5;
}; };
name = Debug; name = Debug;
}; };
@ -601,7 +605,6 @@
GCC_MODEL_TUNING = G5; GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Prefix.pch; GCC_PREFIX_HEADER = Prefix.pch;
GCC_VERSION = 4.0;
INFOPLIST_FILE = "GeckoReporter Test-Info.plist"; INFOPLIST_FILE = "GeckoReporter Test-Info.plist";
INSTALL_PATH = "$(HOME)/Applications"; INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = ( OTHER_LDFLAGS = (
@ -612,8 +615,6 @@
); );
PREBINDING = NO; PREBINDING = NO;
PRODUCT_NAME = "GeckoReporter Test"; PRODUCT_NAME = "GeckoReporter Test";
SDKROOT = macosx10.4;
"SDKROOT[arch=x86_64]" = macosx10.5;
ZERO_LINK = NO; ZERO_LINK = NO;
}; };
name = Release; name = Release;

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace>
<FileRef
location = "self:GeckoReporter.xcodeproj">
</FileRef>
</Workspace>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme>
<BuildAction
buildConfiguration = "Debug">
<BuildableProductReferences>
<BuildableProductReference
BuildableProductIdentifier = "GeckoReporter Test.app">
</BuildableProductReference>
</BuildableProductReferences>
</BuildAction>
<TestAction>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB">
<BuildableProductRunnable>
<BuildableProductReference
BuildableProductIdentifier = "GeckoReporter Test.app">
</BuildableProductReference>
/>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
</Scheme>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme>
<BuildAction
buildConfiguration = "Release">
<BuildableProductReferences>
<BuildableProductReference
BuildableProductIdentifier = "GeckoReporter Test.app">
</BuildableProductReference>
</BuildableProductReferences>
</BuildAction>
<TestAction>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB">
<BuildableProductRunnable>
<BuildableProductReference
BuildableProductIdentifier = "GeckoReporter Test.app">
</BuildableProductReference>
/>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
</Scheme>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>Debug.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
<key>Release.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>
<dict>
<key>GeckoReporter Test.app</key>
<true/>
<key>GeckoReporter.framework</key>
<true/>
</dict>
</dict>
</plist>

View File

@ -1,4 +1,4 @@
Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
Permission is granted, to any person obtaining a copy of this framework, to Permission is granted, to any person obtaining a copy of this framework, to
use, copy, modify, merge, or redistribute this framework under the following terms: use, copy, modify, merge, or redistribute this framework under the following terms:
@ -9,14 +9,19 @@ Permission is granted, to any person obtaining a copy of this framework, to
2. THIS FRAMEWORK IS PROVIDED "AS IS" BY JAMES COLEMAN, WITHOUT WARRANTY OF 2. THIS FRAMEWORK IS PROVIDED "AS IS" BY JAMES COLEMAN, WITHOUT WARRANTY OF
ANY KIND. IF YOUR SOFTWARE/FRAMEWORK/COMPUTER CRASH OR FAILS TO WORK IN ANY ANY KIND. IF YOUR SOFTWARE/FRAMEWORK/COMPUTER CRASH OR FAILS TO WORK IN ANY
WAY SHAPE OR FORM BECAUSE OF THIS FRAMEWORK, I (JAMES COLEMAN) AM NOT IN ANYWAY WAY SHAPE OR FORM BECAUSE OF THIS FRAMEWORK, I (JAMES COLEMAN) AM NOT IN ANYWAY
RESPONSIBLE FOR YOUR PROBLEM. BUT, I WILL MOST LIKELY BE WILLING TO HELP YOU RESPONSIBLE FOR YOUR PROBLEM. BUT, I MAY BE WILLING TO HELP YOU, NO PROMISES.
GET YOUR SOFTWARE/FRAMEWORK/COMPUTER WORKING AGAIN.
3. Redistributions of source code included in this framework must retain the 3. Redistributions of source code included in this framework must retain the
copyright notice on top of this License file without modifications. copyright notice above this license file without modifications.
4. If you use the crash reporter in this framework, it must retain the NSTextField 4. Redistributions of binary must contain the copyright above this license file
with the string "GeckoReporter by Mr. Gecko's Media" without modifications. without modifications.
5. For the users convenience, you must retain the notice about anonymous system 5. If you use the crash reporter in this framework, you are allowed to remove the
information being sent. NSTextField that says, "GeckoReporter by Mr. Gecko's Media".
6. For the users convenience, you must retain the notice about anonymous system
information being sent.
7. Mr. Gecko's Media (James Coleman) is allowed to modify these terms without notice to you
or your customers.

View File

@ -3,7 +3,7 @@
* GeckoReporter * GeckoReporter
* *
* Created by Mr. Gecko on 12/27/09. * Created by Mr. Gecko on 12/27/09.
* Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ * Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
* *
*/ */

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -827,9 +827,9 @@
</object> </object>
<object class="NSMutableArray" key="dict.values"> <object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>{{494, 192}, {452, 367}}</string> <string>{{393, 121}, {452, 367}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{494, 192}, {452, 367}}</string> <string>{{393, 121}, {452, 367}}</string>
<boolean value="NO"/> <boolean value="NO"/>
<string>{196, 240}</string> <string>{196, 240}</string>
<string>{{202, 428}, {480, 270}}</string> <string>{{202, 428}, {480, 270}}</string>
@ -905,6 +905,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -926,6 +945,45 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>bugView</string>
<string>cancelButton</string>
<string>mainWindow</string>
<string>reproduceView</string>
<string>sendButton</string>
<string>userEmailField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">bugView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">reproduceView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMBugWindow.h</string> <string key="minorKey">Classes/Framework/MGMBugWindow.h</string>
@ -1399,9 +1457,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>

View File

@ -1,18 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="2"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -58,6 +57,7 @@
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{17, 133}, {418, 17}}</string> <string key="NSFrame">{{17, 133}, {418, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="143538231"> <object class="NSTextFieldCell" key="NSCell" id="143538231">
<int key="NSCellFlags">68288064</int> <int key="NSCellFlags">68288064</int>
@ -94,6 +94,7 @@
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{20, 103}, {412, 22}}</string> <string key="NSFrame">{{20, 103}, {412, 22}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="845430521"> <object class="NSTextFieldCell" key="NSCell" id="845430521">
<int key="NSCellFlags">-1804468671</int> <int key="NSCellFlags">-1804468671</int>
@ -124,6 +125,7 @@
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{335, 12}, {103, 32}}</string> <string key="NSFrame">{{335, 12}, {103, 32}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="798299430"> <object class="NSButtonCell" key="NSCell" id="798299430">
<int key="NSCellFlags">-2080244224</int> <int key="NSCellFlags">-2080244224</int>
@ -144,6 +146,7 @@
<int key="NSvFlags">268</int> <int key="NSvFlags">268</int>
<string key="NSFrame">{{17, 280}, {55, 17}}</string> <string key="NSFrame">{{17, 280}, {55, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="261832961"> <object class="NSTextFieldCell" key="NSCell" id="261832961">
<int key="NSCellFlags">68288064</int> <int key="NSCellFlags">68288064</int>
@ -193,6 +196,7 @@
</object> </object>
<string key="NSFrameSize">{395, 14}</string> <string key="NSFrameSize">{395, 14}</string>
<reference key="NSSuperview" ref="426170995"/> <reference key="NSSuperview" ref="426170995"/>
<reference key="NSWindow"/>
<object class="NSTextContainer" key="NSTextContainer" id="658335210"> <object class="NSTextContainer" key="NSTextContainer" id="658335210">
<object class="NSLayoutManager" key="NSLayoutManager"> <object class="NSLayoutManager" key="NSLayoutManager">
<object class="NSTextStorage" key="NSTextStorage"> <object class="NSTextStorage" key="NSTextStorage">
@ -272,6 +276,7 @@
</object> </object>
<string key="NSFrame">{{1, 1}, {395, 112}}</string> <string key="NSFrame">{{1, 1}, {395, 112}}</string>
<reference key="NSSuperview" ref="698607226"/> <reference key="NSSuperview" ref="698607226"/>
<reference key="NSWindow"/>
<reference key="NSNextKeyView" ref="623833155"/> <reference key="NSNextKeyView" ref="623833155"/>
<reference key="NSDocView" ref="623833155"/> <reference key="NSDocView" ref="623833155"/>
<reference key="NSBGColor" ref="115253407"/> <reference key="NSBGColor" ref="115253407"/>
@ -286,6 +291,7 @@
<int key="NSvFlags">256</int> <int key="NSvFlags">256</int>
<string key="NSFrame">{{396, 1}, {15, 112}}</string> <string key="NSFrame">{{396, 1}, {15, 112}}</string>
<reference key="NSSuperview" ref="698607226"/> <reference key="NSSuperview" ref="698607226"/>
<reference key="NSWindow"/>
<reference key="NSTarget" ref="698607226"/> <reference key="NSTarget" ref="698607226"/>
<string key="NSAction">_doScroller:</string> <string key="NSAction">_doScroller:</string>
<double key="NSCurValue">1</double> <double key="NSCurValue">1</double>
@ -296,6 +302,7 @@
<int key="NSvFlags">-2147483392</int> <int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{-100, -100}, {87, 18}}</string> <string key="NSFrame">{{-100, -100}, {87, 18}}</string>
<reference key="NSSuperview" ref="698607226"/> <reference key="NSSuperview" ref="698607226"/>
<reference key="NSWindow"/>
<int key="NSsFlags">1</int> <int key="NSsFlags">1</int>
<reference key="NSTarget" ref="698607226"/> <reference key="NSTarget" ref="698607226"/>
<string key="NSAction">_doScroller:</string> <string key="NSAction">_doScroller:</string>
@ -305,6 +312,7 @@
</object> </object>
<string key="NSFrame">{{20, 158}, {412, 114}}</string> <string key="NSFrame">{{20, 158}, {412, 114}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<reference key="NSNextKeyView" ref="426170995"/> <reference key="NSNextKeyView" ref="426170995"/>
<int key="NSsFlags">18</int> <int key="NSsFlags">18</int>
<reference key="NSVScroller" ref="887210027"/> <reference key="NSVScroller" ref="887210027"/>
@ -316,6 +324,7 @@
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{17, 78}, {418, 17}}</string> <string key="NSFrame">{{17, 78}, {418, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="643361309"> <object class="NSTextFieldCell" key="NSCell" id="643361309">
<int key="NSCellFlags">68288064</int> <int key="NSCellFlags">68288064</int>
@ -332,6 +341,7 @@
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{20, 48}, {412, 22}}</string> <string key="NSFrame">{{20, 48}, {412, 22}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="78869058"> <object class="NSTextFieldCell" key="NSCell" id="78869058">
<int key="NSCellFlags">-1804468671</int> <int key="NSCellFlags">-1804468671</int>
@ -349,6 +359,7 @@
<int key="NSvFlags">266</int> <int key="NSvFlags">266</int>
<string key="NSFrame">{{74, 274}, {361, 26}}</string> <string key="NSFrame">{{74, 274}, {361, 26}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSPopUpButtonCell" key="NSCell" id="12121526"> <object class="NSPopUpButtonCell" key="NSCell" id="12121526">
<int key="NSCellFlags">-2076049856</int> <int key="NSCellFlags">-2076049856</int>
@ -421,6 +432,7 @@
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{253, 12}, {82, 32}}</string> <string key="NSFrame">{{253, 12}, {82, 32}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="530796692"> <object class="NSButtonCell" key="NSCell" id="530796692">
<int key="NSCellFlags">67239424</int> <int key="NSCellFlags">67239424</int>
@ -441,6 +453,7 @@
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{236, 1}, {199, 11}}</string> <string key="NSFrame">{{236, 1}, {199, 11}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="158979443"> <object class="NSTextFieldCell" key="NSCell" id="158979443">
<int key="NSCellFlags">68288064</int> <int key="NSCellFlags">68288064</int>
@ -462,6 +475,7 @@
</object> </object>
<string key="NSFrameSize">{452, 318}</string> <string key="NSFrameSize">{452, 318}</string>
<reference key="NSSuperview"/> <reference key="NSSuperview"/>
<reference key="NSWindow"/>
</object> </object>
<string key="NSScreenRect">{{0, 0}, {1280, 778}}</string> <string key="NSScreenRect">{{0, 0}, {1280, 778}}</string>
<string key="NSMinSize">{430, 340}</string> <string key="NSMinSize">{430, 340}</string>
@ -851,7 +865,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{409, 424}, {361, 63}}</string> <string>{{503, 383}, {361, 63}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -910,6 +924,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -933,6 +966,50 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancelButton</string>
<string>mainWindow</string>
<string>messageView</string>
<string>sendButton</string>
<string>subjectPopUp</string>
<string>userEmailField</string>
<string>userNameField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">messageView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">subjectPopUp</string>
<string key="candidateClassName">NSPopUpButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userNameField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMContactWindow.h</string> <string key="minorKey">Classes/Framework/MGMContactWindow.h</string>
@ -1427,9 +1504,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -1438,5 +1516,18 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>

View File

@ -2,17 +2,18 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1040</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="1"/> <integer value="1"/>
<integer value="257"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -697,71 +698,6 @@
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/> <reference key="NSMixedImage" ref="781528205"/>
</object> </object>
<object class="NSMenuItem" id="149062411">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Find</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="641033652">
<string key="NSTitle">Find</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="483902611">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Find…</string>
<string key="NSKeyEquiv">f</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<int key="NSState">1</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">1</int>
</object>
<object class="NSMenuItem" id="225898837">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Find Next</string>
<string key="NSKeyEquiv">g</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">2</int>
</object>
<object class="NSMenuItem" id="659604606">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Find Previous</string>
<string key="NSKeyEquiv">G</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">3</int>
</object>
<object class="NSMenuItem" id="44192373">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Use Selection for Find</string>
<string key="NSKeyEquiv">e</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">7</int>
</object>
<object class="NSMenuItem" id="647221297">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Jump to Selection</string>
<string key="NSKeyEquiv">j</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="932063339"> <object class="NSMenuItem" id="932063339">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Spelling and Grammar</string> <string key="NSTitle">Spelling and Grammar</string>
@ -771,7 +707,7 @@
<reference key="NSMixedImage" ref="781528205"/> <reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string> <string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="420966241"> <object class="NSMenu" key="NSSubmenu" id="420966241">
<string key="NSTitle">Spelling</string> <string key="NSTitle">Spelling and Grammar</string>
<object class="NSMutableArray" key="NSMenuItems"> <object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="415549596"> <object class="NSMenuItem" id="415549596">
@ -829,45 +765,6 @@
</object> </object>
</object> </object>
</object> </object>
<object class="NSMenuItem" id="248983077">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Transformations</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="51407877">
<string key="NSTitle">Transformations</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="393571759">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Make Upper Case</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="603985329">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Make Lower Case</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="546964384">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Capitalize</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="752291159"> <object class="NSMenuItem" id="752291159">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Speech</string> <string key="NSTitle">Speech</string>
@ -1167,46 +1064,6 @@
</object> </object>
<int key="connectionID">235</int> <int key="connectionID">235</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="483902611"/>
</object>
<int key="connectionID">236</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="225898837"/>
</object>
<int key="connectionID">238</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="659604606"/>
</object>
<int key="connectionID">239</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="44192373"/>
</object>
<int key="connectionID">240</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">centerSelectionInVisibleArea:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="647221297"/>
</object>
<int key="connectionID">243</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">showGuessPanel:</string> <string key="label">showGuessPanel:</string>
@ -1247,30 +1104,6 @@
</object> </object>
<int key="connectionID">248</int> <int key="connectionID">248</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">uppercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="393571759"/>
</object>
<int key="connectionID">249</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">lowercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="603985329"/>
</object>
<int key="connectionID">250</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">capitalizeWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="546964384"/>
</object>
<int key="connectionID">251</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">startSpeaking:</string> <string key="label">startSpeaking:</string>
@ -1674,9 +1507,7 @@
<reference ref="935406412"/> <reference ref="935406412"/>
<reference ref="603231746"/> <reference ref="603231746"/>
<reference ref="387320488"/> <reference ref="387320488"/>
<reference ref="149062411"/>
<reference ref="932063339"/> <reference ref="932063339"/>
<reference ref="248983077"/>
<reference ref="752291159"/> <reference ref="752291159"/>
</object> </object>
<reference key="parent" ref="337908444"/> <reference key="parent" ref="337908444"/>
@ -1726,15 +1557,6 @@
<reference key="object" ref="387320488"/> <reference key="object" ref="387320488"/>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">182</int>
<reference key="object" ref="149062411"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="641033652"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">181</int> <int key="objectID">181</int>
<reference key="object" ref="932063339"/> <reference key="object" ref="932063339"/>
@ -1744,15 +1566,6 @@
</object> </object>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">179</int>
<reference key="object" ref="248983077"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="51407877"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">178</int> <int key="objectID">178</int>
<reference key="object" ref="752291159"/> <reference key="object" ref="752291159"/>
@ -1782,32 +1595,6 @@
<reference key="object" ref="207105773"/> <reference key="object" ref="207105773"/>
<reference key="parent" ref="998271133"/> <reference key="parent" ref="998271133"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">215</int>
<reference key="object" ref="51407877"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="393571759"/>
<reference ref="603985329"/>
<reference ref="546964384"/>
</object>
<reference key="parent" ref="248983077"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">218</int>
<reference key="object" ref="393571759"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">217</int>
<reference key="object" ref="603985329"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">216</int>
<reference key="object" ref="546964384"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">199</int> <int key="objectID">199</int>
<reference key="object" ref="420966241"/> <reference key="object" ref="420966241"/>
@ -1852,44 +1639,6 @@
<reference key="object" ref="425553853"/> <reference key="object" ref="425553853"/>
<reference key="parent" ref="420966241"/> <reference key="parent" ref="420966241"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">193</int>
<reference key="object" ref="641033652"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="483902611"/>
<reference ref="225898837"/>
<reference ref="659604606"/>
<reference ref="44192373"/>
<reference ref="647221297"/>
</object>
<reference key="parent" ref="149062411"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">198</int>
<reference key="object" ref="483902611"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">197</int>
<reference key="object" ref="225898837"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">196</int>
<reference key="object" ref="659604606"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">195</int>
<reference key="object" ref="44192373"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">194</int>
<reference key="object" ref="647221297"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">83</int> <int key="objectID">83</int>
<reference key="object" ref="42027193"/> <reference key="object" ref="42027193"/>
@ -1973,9 +1722,7 @@
<string>177.IBEditorWindowLastContentRect</string> <string>177.IBEditorWindowLastContentRect</string>
<string>177.IBPluginDependency</string> <string>177.IBPluginDependency</string>
<string>178.IBPluginDependency</string> <string>178.IBPluginDependency</string>
<string>179.IBPluginDependency</string>
<string>181.IBPluginDependency</string> <string>181.IBPluginDependency</string>
<string>182.IBPluginDependency</string>
<string>183.IBPluginDependency</string> <string>183.IBPluginDependency</string>
<string>184.IBPluginDependency</string> <string>184.IBPluginDependency</string>
<string>185.IBPluginDependency</string> <string>185.IBPluginDependency</string>
@ -1985,13 +1732,6 @@
<string>190.IBPluginDependency</string> <string>190.IBPluginDependency</string>
<string>191.IBPluginDependency</string> <string>191.IBPluginDependency</string>
<string>192.IBPluginDependency</string> <string>192.IBPluginDependency</string>
<string>193.IBEditorWindowLastContentRect</string>
<string>193.IBPluginDependency</string>
<string>194.IBPluginDependency</string>
<string>195.IBPluginDependency</string>
<string>196.IBPluginDependency</string>
<string>197.IBPluginDependency</string>
<string>198.IBPluginDependency</string>
<string>199.IBEditorWindowLastContentRect</string> <string>199.IBEditorWindowLastContentRect</string>
<string>199.IBPluginDependency</string> <string>199.IBPluginDependency</string>
<string>2.IBPluginDependency</string> <string>2.IBPluginDependency</string>
@ -2003,11 +1743,6 @@
<string>204.IBPluginDependency</string> <string>204.IBPluginDependency</string>
<string>205.IBPluginDependency</string> <string>205.IBPluginDependency</string>
<string>21.IBPluginDependency</string> <string>21.IBPluginDependency</string>
<string>215.IBEditorWindowLastContentRect</string>
<string>215.IBPluginDependency</string>
<string>216.IBPluginDependency</string>
<string>217.IBPluginDependency</string>
<string>218.IBPluginDependency</string>
<string>219.IBEditorWindowLastContentRect</string> <string>219.IBEditorWindowLastContentRect</string>
<string>219.IBPluginDependency</string> <string>219.IBPluginDependency</string>
<string>22.IBPluginDependency</string> <string>22.IBPluginDependency</string>
@ -2092,7 +1827,7 @@
<boolean value="YES"/> <boolean value="YES"/>
<string>{2000, 2000}</string> <string>{2000, 2000}</string>
<string>{430, 359}</string> <string>{430, 359}</string>
<string>{{471, 730}, {64, 6}}</string> <string>{{459, 601}, {64, 6}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{436, 809}, {64, 6}}</string> <string>{{436, 809}, {64, 6}}</string>
@ -2100,7 +1835,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{256, 344}, {240, 243}}</string> <string>{{256, 384}, {240, 203}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2113,16 +1848,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{496, 314}, {275, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{609, 473}, {238, 103}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{609, 443}, {275, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<reference ref="0"/> <reference ref="0"/>
@ -2133,12 +1859,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{609, 473}, {170, 63}}</string> <string>{{496, 364}, {150, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{609, 473}, {150, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2206,7 +1927,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{268, 663}, {194, 73}}</string> <string>{{256, 494}, {194, 73}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{525, 802}, {197, 73}}</string> <string>{{525, 802}, {197, 73}}</string>
@ -2218,7 +1939,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{268, 613}, {203, 123}}</string> <string>{{256, 484}, {203, 123}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{23, 794}, {245, 183}}</string> <string>{{23, 794}, {245, 183}}</string>
@ -2279,6 +2000,35 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>ignoreAllReports:</string>
<string>ignoreReport:</string>
<string>sendAllReports:</string>
<string>sendReport:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">ignoreAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">ignoreReport:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendReport:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -2312,6 +2062,75 @@
<string>NSTextView</string> <string>NSTextView</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>dateField</string>
<string>hideMenu</string>
<string>ignoreAllButton</string>
<string>ignoreButton</string>
<string>mainMenu</string>
<string>mainWindow</string>
<string>quitMenu</string>
<string>sendAllButton</string>
<string>sendButton</string>
<string>titleField</string>
<string>userEmailField</string>
<string>userReportView</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">dateField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">hideMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainMenu</string>
<string key="candidateClassName">NSMenu</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">quitMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">titleField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userReportView</string>
<string key="candidateClassName">NSTextView</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMReportWindow.h</string> <string key="minorKey">Classes/Framework/MGMReportWindow.h</string>
@ -2827,13 +2646,14 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1040" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -2842,5 +2662,20 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSApplicationIcon</string>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{128, 128}</string>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -41,7 +41,7 @@
<object class="NSWindowTemplate" id="1005"> <object class="NSWindowTemplate" id="1005">
<int key="NSWindowStyleMask">13</int> <int key="NSWindowStyleMask">13</int>
<int key="NSWindowBacking">2</int> <int key="NSWindowBacking">2</int>
<string key="NSWindowRect">{{414, 206}, {452, 366}}</string> <string key="NSWindowRect">{{364, 205}, {552, 367}}</string>
<int key="NSWTFlags">1618477056</int> <int key="NSWTFlags">1618477056</int>
<string key="NSWindowTitle">Informe de errores</string> <string key="NSWindowTitle">Informe de errores</string>
<string key="NSWindowClass">NSWindow</string> <string key="NSWindowClass">NSWindow</string>
@ -56,7 +56,7 @@
<object class="NSTextField" id="28867064"> <object class="NSTextField" id="28867064">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">266</int> <int key="NSvFlags">266</int>
<string key="NSFrame">{{17, 329}, {418, 17}}</string> <string key="NSFrame">{{17, 330}, {418, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="802312213"> <object class="NSTextFieldCell" key="NSCell" id="802312213">
@ -125,7 +125,7 @@
<string>public.url</string> <string>public.url</string>
</object> </object>
</object> </object>
<string key="NSFrameSize">{395, 14}</string> <string key="NSFrameSize">{495, 14}</string>
<reference key="NSSuperview" ref="284336723"/> <reference key="NSSuperview" ref="284336723"/>
<object class="NSTextContainer" key="NSTextContainer" id="823178838"> <object class="NSTextContainer" key="NSTextContainer" id="823178838">
<object class="NSLayoutManager" key="NSLayoutManager"> <object class="NSLayoutManager" key="NSLayoutManager">
@ -143,7 +143,7 @@
<nil key="NSDelegate"/> <nil key="NSDelegate"/>
</object> </object>
<reference key="NSTextView" ref="571084179"/> <reference key="NSTextView" ref="571084179"/>
<double key="NSWidth">395</double> <double key="NSWidth">495</double>
<int key="NSTCFlags">1</int> <int key="NSTCFlags">1</int>
</object> </object>
<object class="NSTextViewSharedData" key="NSSharedData"> <object class="NSTextViewSharedData" key="NSSharedData">
@ -207,7 +207,7 @@
<nil key="NSDelegate"/> <nil key="NSDelegate"/>
</object> </object>
</object> </object>
<string key="NSFrame">{{1, 1}, {395, 91}}</string> <string key="NSFrame">{{1, 1}, {495, 91}}</string>
<reference key="NSSuperview" ref="292298764"/> <reference key="NSSuperview" ref="292298764"/>
<reference key="NSNextKeyView" ref="571084179"/> <reference key="NSNextKeyView" ref="571084179"/>
<reference key="NSDocView" ref="571084179"/> <reference key="NSDocView" ref="571084179"/>
@ -221,7 +221,7 @@
<object class="NSScroller" id="303309116"> <object class="NSScroller" id="303309116">
<reference key="NSNextResponder" ref="292298764"/> <reference key="NSNextResponder" ref="292298764"/>
<int key="NSvFlags">256</int> <int key="NSvFlags">256</int>
<string key="NSFrame">{{396, 1}, {15, 91}}</string> <string key="NSFrame">{{496, 1}, {15, 91}}</string>
<reference key="NSSuperview" ref="292298764"/> <reference key="NSSuperview" ref="292298764"/>
<reference key="NSTarget" ref="292298764"/> <reference key="NSTarget" ref="292298764"/>
<string key="NSAction">_doScroller:</string> <string key="NSAction">_doScroller:</string>
@ -239,7 +239,7 @@
<double key="NSPercent">0.94565218687057495</double> <double key="NSPercent">0.94565218687057495</double>
</object> </object>
</object> </object>
<string key="NSFrame">{{20, 228}, {412, 93}}</string> <string key="NSFrame">{{20, 229}, {512, 93}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSNextKeyView" ref="284336723"/> <reference key="NSNextKeyView" ref="284336723"/>
<int key="NSsFlags">18</int> <int key="NSsFlags">18</int>
@ -250,7 +250,7 @@
<object class="NSTextField" id="472115126"> <object class="NSTextField" id="472115126">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{17, 203}, {418, 17}}</string> <string key="NSFrame">{{17, 204}, {418, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="404445253"> <object class="NSTextFieldCell" key="NSCell" id="404445253">
@ -299,7 +299,7 @@
<string>public.url</string> <string>public.url</string>
</object> </object>
</object> </object>
<string key="NSFrameSize">{395, 14}</string> <string key="NSFrameSize">{495, 14}</string>
<reference key="NSSuperview" ref="129011387"/> <reference key="NSSuperview" ref="129011387"/>
<object class="NSTextContainer" key="NSTextContainer" id="656698430"> <object class="NSTextContainer" key="NSTextContainer" id="656698430">
<object class="NSLayoutManager" key="NSLayoutManager"> <object class="NSLayoutManager" key="NSLayoutManager">
@ -317,7 +317,7 @@
<nil key="NSDelegate"/> <nil key="NSDelegate"/>
</object> </object>
<reference key="NSTextView" ref="1007344937"/> <reference key="NSTextView" ref="1007344937"/>
<double key="NSWidth">395</double> <double key="NSWidth">495</double>
<int key="NSTCFlags">1</int> <int key="NSTCFlags">1</int>
</object> </object>
<object class="NSTextViewSharedData" key="NSSharedData"> <object class="NSTextViewSharedData" key="NSSharedData">
@ -362,7 +362,7 @@
<nil key="NSDelegate"/> <nil key="NSDelegate"/>
</object> </object>
</object> </object>
<string key="NSFrame">{{1, 1}, {395, 91}}</string> <string key="NSFrame">{{1, 1}, {495, 91}}</string>
<reference key="NSSuperview" ref="394813689"/> <reference key="NSSuperview" ref="394813689"/>
<reference key="NSNextKeyView" ref="1007344937"/> <reference key="NSNextKeyView" ref="1007344937"/>
<reference key="NSDocView" ref="1007344937"/> <reference key="NSDocView" ref="1007344937"/>
@ -373,7 +373,7 @@
<object class="NSScroller" id="673514566"> <object class="NSScroller" id="673514566">
<reference key="NSNextResponder" ref="394813689"/> <reference key="NSNextResponder" ref="394813689"/>
<int key="NSvFlags">256</int> <int key="NSvFlags">256</int>
<string key="NSFrame">{{396, 1}, {15, 91}}</string> <string key="NSFrame">{{496, 1}, {15, 91}}</string>
<reference key="NSSuperview" ref="394813689"/> <reference key="NSSuperview" ref="394813689"/>
<reference key="NSTarget" ref="394813689"/> <reference key="NSTarget" ref="394813689"/>
<string key="NSAction">_doScroller:</string> <string key="NSAction">_doScroller:</string>
@ -391,7 +391,7 @@
<double key="NSPercent">0.94565218687057495</double> <double key="NSPercent">0.94565218687057495</double>
</object> </object>
</object> </object>
<string key="NSFrame">{{20, 102}, {412, 93}}</string> <string key="NSFrame">{{20, 103}, {512, 93}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<reference key="NSNextKeyView" ref="129011387"/> <reference key="NSNextKeyView" ref="129011387"/>
<int key="NSsFlags">18</int> <int key="NSsFlags">18</int>
@ -402,13 +402,13 @@
<object class="NSTextField" id="905885963"> <object class="NSTextField" id="905885963">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{17, 77}, {418, 17}}</string> <string key="NSFrame">{{17, 78}, {518, 17}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="44417088"> <object class="NSTextFieldCell" key="NSCell" id="44417088">
<int key="NSCellFlags">68288064</int> <int key="NSCellFlags">68288064</int>
<int key="NSCellFlags2">272630784</int> <int key="NSCellFlags2">272630784</int>
<string key="NSContents">Include an email address so I can update you on the Bug?</string> <string key="NSContents">Incluya una dirección de correo electrónico para que pueda actualizar en el error.</string>
<reference key="NSSupport" ref="764050707"/> <reference key="NSSupport" ref="764050707"/>
<reference key="NSControlView" ref="905885963"/> <reference key="NSControlView" ref="905885963"/>
<reference key="NSBackgroundColor" ref="892931278"/> <reference key="NSBackgroundColor" ref="892931278"/>
@ -418,7 +418,7 @@
<object class="NSTextField" id="670907433"> <object class="NSTextField" id="670907433">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">290</int> <int key="NSvFlags">290</int>
<string key="NSFrame">{{20, 47}, {412, 22}}</string> <string key="NSFrame">{{20, 48}, {512, 22}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="551747229"> <object class="NSTextFieldCell" key="NSCell" id="551747229">
@ -445,7 +445,7 @@
<object class="NSButton" id="79711234"> <object class="NSButton" id="79711234">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{328, 11}, {110, 32}}</string> <string key="NSFrame">{{428, 12}, {110, 32}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="975526434"> <object class="NSButtonCell" key="NSCell" id="975526434">
@ -465,7 +465,7 @@
<object class="NSButton" id="773446149"> <object class="NSButton" id="773446149">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{233, 11}, {95, 32}}</string> <string key="NSFrame">{{333, 12}, {95, 32}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="159907683"> <object class="NSButtonCell" key="NSCell" id="159907683">
@ -485,7 +485,7 @@
<object class="NSTextField" id="683240468"> <object class="NSTextField" id="683240468">
<reference key="NSNextResponder" ref="1006"/> <reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">289</int> <int key="NSvFlags">289</int>
<string key="NSFrame">{{224, 0}, {211, 11}}</string> <string key="NSFrame">{{324, 1}, {211, 11}}</string>
<reference key="NSSuperview" ref="1006"/> <reference key="NSSuperview" ref="1006"/>
<bool key="NSEnabled">YES</bool> <bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="693631179"> <object class="NSTextFieldCell" key="NSCell" id="693631179">
@ -506,7 +506,7 @@
</object> </object>
</object> </object>
</object> </object>
<string key="NSFrameSize">{452, 366}</string> <string key="NSFrameSize">{552, 367}</string>
<reference key="NSSuperview"/> <reference key="NSSuperview"/>
</object> </object>
<string key="NSScreenRect">{{0, 0}, {1280, 778}}</string> <string key="NSScreenRect">{{0, 0}, {1280, 778}}</string>
@ -629,9 +629,9 @@
<reference ref="472115126"/> <reference ref="472115126"/>
<reference ref="394813689"/> <reference ref="394813689"/>
<reference ref="905885963"/> <reference ref="905885963"/>
<reference ref="670907433"/>
<reference ref="79711234"/> <reference ref="79711234"/>
<reference ref="773446149"/> <reference ref="773446149"/>
<reference ref="670907433"/>
<reference ref="683240468"/> <reference ref="683240468"/>
</object> </object>
<reference key="parent" ref="1005"/> <reference key="parent" ref="1005"/>
@ -827,9 +827,9 @@
</object> </object>
<object class="NSMutableArray" key="dict.values"> <object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>{{163, 141}, {452, 366}}</string> <string>{{163, 140}, {552, 367}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{163, 141}, {452, 366}}</string> <string>{{163, 140}, {552, 367}}</string>
<boolean value="NO"/> <boolean value="NO"/>
<string>{196, 240}</string> <string>{196, 240}</string>
<string>{{202, 428}, {480, 270}}</string> <string>{{202, 428}, {480, 270}}</string>
@ -905,6 +905,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -926,6 +945,45 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>bugView</string>
<string>cancelButton</string>
<string>mainWindow</string>
<string>reproduceView</string>
<string>sendButton</string>
<string>userEmailField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">bugView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">reproduceView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMBugWindow.h</string> <string key="minorKey">Classes/Framework/MGMBugWindow.h</string>
@ -1399,9 +1457,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>

View File

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="2"/> <integer value="1"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -43,7 +43,7 @@
<int key="NSWindowBacking">2</int> <int key="NSWindowBacking">2</int>
<string key="NSWindowRect">{{414, 230}, {452, 318}}</string> <string key="NSWindowRect">{{414, 230}, {452, 318}}</string>
<int key="NSWTFlags">1618477056</int> <int key="NSWTFlags">1618477056</int>
<string key="NSWindowTitle">Contact Me</string> <string key="NSWindowTitle">Contácteme</string>
<string key="NSWindowClass">NSWindow</string> <string key="NSWindowClass">NSWindow</string>
<nil key="NSViewClass"/> <nil key="NSViewClass"/>
<string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string> <string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string>
@ -851,7 +851,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{503, 383}, {361, 63}}</string> <string>{{503, 384}, {361, 63}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -910,6 +910,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -933,6 +952,50 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancelButton</string>
<string>mainWindow</string>
<string>messageView</string>
<string>sendButton</string>
<string>subjectPopUp</string>
<string>userEmailField</string>
<string>userNameField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">messageView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">subjectPopUp</string>
<string key="candidateClassName">NSPopUpButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userNameField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMContactWindow.h</string> <string key="minorKey">Classes/Framework/MGMContactWindow.h</string>
@ -1427,9 +1490,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -1438,5 +1502,18 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>

View File

@ -2,18 +2,18 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1040</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="257"/>
<integer value="1"/> <integer value="1"/>
<integer value="257"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -44,7 +44,7 @@
<int key="NSWindowBacking">2</int> <int key="NSWindowBacking">2</int>
<string key="NSWindowRect">{{330, 209}, {519, 359}}</string> <string key="NSWindowRect">{{330, 209}, {519, 359}}</string>
<int key="NSWTFlags">1618477056</int> <int key="NSWTFlags">1618477056</int>
<string key="NSWindowTitle">Application Crashed</string> <string key="NSWindowTitle">Application Estrelló</string>
<string key="NSWindowClass">NSWindow</string> <string key="NSWindowClass">NSWindow</string>
<nil key="NSViewClass"/> <nil key="NSViewClass"/>
<string key="NSWindowContentMaxSize">{2000, 2000}</string> <string key="NSWindowContentMaxSize">{2000, 2000}</string>
@ -513,7 +513,7 @@
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="38783522"> <object class="NSMenuItem" id="38783522">
<reference key="NSMenu" ref="933560928"/> <reference key="NSMenu" ref="933560928"/>
<string key="NSTitle">Application</string> <string key="NSTitle">Aplicación</string>
<string key="NSKeyEquiv"/> <string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
<object class="NSCustomResource" key="NSOnImage" id="121411531"> <object class="NSCustomResource" key="NSOnImage" id="121411531">
@ -526,7 +526,7 @@
</object> </object>
<string key="NSAction">submenuAction:</string> <string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="817535067"> <object class="NSMenu" key="NSSubmenu" id="817535067">
<string key="NSTitle">Application</string> <string key="NSTitle">Aplicación</string>
<object class="NSMutableArray" key="NSMenuItems"> <object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="608953261"> <object class="NSMenuItem" id="608953261">
@ -593,7 +593,7 @@
</object> </object>
<object class="NSMenuItem" id="757191436"> <object class="NSMenuItem" id="757191436">
<reference key="NSMenu" ref="817535067"/> <reference key="NSMenu" ref="817535067"/>
<string key="NSTitle">Sal de la Application</string> <string key="NSTitle">Salir de Application</string>
<string key="NSKeyEquiv">q</string> <string key="NSKeyEquiv">q</string>
<int key="NSKeyEquivModMask">1048576</int> <int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
@ -698,71 +698,6 @@
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/> <reference key="NSMixedImage" ref="781528205"/>
</object> </object>
<object class="NSMenuItem" id="149062411">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Encontrar</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="641033652">
<string key="NSTitle">Encontrar</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="483902611">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Buscar…</string>
<string key="NSKeyEquiv">f</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<int key="NSState">1</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">1</int>
</object>
<object class="NSMenuItem" id="225898837">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Buscar siguiente</string>
<string key="NSKeyEquiv">g</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">2</int>
</object>
<object class="NSMenuItem" id="659604606">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Buscar anterior</string>
<string key="NSKeyEquiv">G</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">3</int>
</object>
<object class="NSMenuItem" id="44192373">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Selección de Uso de Find</string>
<string key="NSKeyEquiv">e</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">7</int>
</object>
<object class="NSMenuItem" id="647221297">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Saltar a la selección</string>
<string key="NSKeyEquiv">j</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="932063339"> <object class="NSMenuItem" id="932063339">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Ortografía y gramática</string> <string key="NSTitle">Ortografía y gramática</string>
@ -830,45 +765,6 @@
</object> </object>
</object> </object>
</object> </object>
<object class="NSMenuItem" id="248983077">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Transformaciones</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="51407877">
<string key="NSTitle">Transformaciones</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="393571759">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Hacer Mayúsculas</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="603985329">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Hacer minúscula</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="546964384">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Capitalizar</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="752291159"> <object class="NSMenuItem" id="752291159">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Discurso</string> <string key="NSTitle">Discurso</string>
@ -1168,46 +1064,6 @@
</object> </object>
<int key="connectionID">235</int> <int key="connectionID">235</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="483902611"/>
</object>
<int key="connectionID">236</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="225898837"/>
</object>
<int key="connectionID">238</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="659604606"/>
</object>
<int key="connectionID">239</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="44192373"/>
</object>
<int key="connectionID">240</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">centerSelectionInVisibleArea:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="647221297"/>
</object>
<int key="connectionID">243</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">showGuessPanel:</string> <string key="label">showGuessPanel:</string>
@ -1248,30 +1104,6 @@
</object> </object>
<int key="connectionID">248</int> <int key="connectionID">248</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">uppercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="393571759"/>
</object>
<int key="connectionID">249</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">lowercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="603985329"/>
</object>
<int key="connectionID">250</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">capitalizeWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="546964384"/>
</object>
<int key="connectionID">251</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">startSpeaking:</string> <string key="label">startSpeaking:</string>
@ -1661,9 +1493,7 @@
<reference ref="935406412"/> <reference ref="935406412"/>
<reference ref="603231746"/> <reference ref="603231746"/>
<reference ref="387320488"/> <reference ref="387320488"/>
<reference ref="149062411"/>
<reference ref="932063339"/> <reference ref="932063339"/>
<reference ref="248983077"/>
<reference ref="752291159"/> <reference ref="752291159"/>
</object> </object>
<reference key="parent" ref="337908444"/> <reference key="parent" ref="337908444"/>
@ -1713,15 +1543,6 @@
<reference key="object" ref="387320488"/> <reference key="object" ref="387320488"/>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">182</int>
<reference key="object" ref="149062411"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="641033652"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">181</int> <int key="objectID">181</int>
<reference key="object" ref="932063339"/> <reference key="object" ref="932063339"/>
@ -1731,15 +1552,6 @@
</object> </object>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">179</int>
<reference key="object" ref="248983077"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="51407877"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">178</int> <int key="objectID">178</int>
<reference key="object" ref="752291159"/> <reference key="object" ref="752291159"/>
@ -1769,32 +1581,6 @@
<reference key="object" ref="207105773"/> <reference key="object" ref="207105773"/>
<reference key="parent" ref="998271133"/> <reference key="parent" ref="998271133"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">215</int>
<reference key="object" ref="51407877"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="393571759"/>
<reference ref="603985329"/>
<reference ref="546964384"/>
</object>
<reference key="parent" ref="248983077"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">218</int>
<reference key="object" ref="393571759"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">217</int>
<reference key="object" ref="603985329"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">216</int>
<reference key="object" ref="546964384"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">199</int> <int key="objectID">199</int>
<reference key="object" ref="420966241"/> <reference key="object" ref="420966241"/>
@ -1839,44 +1625,6 @@
<reference key="object" ref="425553853"/> <reference key="object" ref="425553853"/>
<reference key="parent" ref="420966241"/> <reference key="parent" ref="420966241"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">193</int>
<reference key="object" ref="641033652"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="483902611"/>
<reference ref="225898837"/>
<reference ref="659604606"/>
<reference ref="44192373"/>
<reference ref="647221297"/>
</object>
<reference key="parent" ref="149062411"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">198</int>
<reference key="object" ref="483902611"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">197</int>
<reference key="object" ref="225898837"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">196</int>
<reference key="object" ref="659604606"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">195</int>
<reference key="object" ref="44192373"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">194</int>
<reference key="object" ref="647221297"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">83</int> <int key="objectID">83</int>
<reference key="object" ref="42027193"/> <reference key="object" ref="42027193"/>
@ -1974,9 +1722,7 @@
<string>177.IBEditorWindowLastContentRect</string> <string>177.IBEditorWindowLastContentRect</string>
<string>177.IBPluginDependency</string> <string>177.IBPluginDependency</string>
<string>178.IBPluginDependency</string> <string>178.IBPluginDependency</string>
<string>179.IBPluginDependency</string>
<string>181.IBPluginDependency</string> <string>181.IBPluginDependency</string>
<string>182.IBPluginDependency</string>
<string>183.IBPluginDependency</string> <string>183.IBPluginDependency</string>
<string>184.IBPluginDependency</string> <string>184.IBPluginDependency</string>
<string>185.IBPluginDependency</string> <string>185.IBPluginDependency</string>
@ -1986,13 +1732,6 @@
<string>190.IBPluginDependency</string> <string>190.IBPluginDependency</string>
<string>191.IBPluginDependency</string> <string>191.IBPluginDependency</string>
<string>192.IBPluginDependency</string> <string>192.IBPluginDependency</string>
<string>193.IBEditorWindowLastContentRect</string>
<string>193.IBPluginDependency</string>
<string>194.IBPluginDependency</string>
<string>195.IBPluginDependency</string>
<string>196.IBPluginDependency</string>
<string>197.IBPluginDependency</string>
<string>198.IBPluginDependency</string>
<string>199.IBEditorWindowLastContentRect</string> <string>199.IBEditorWindowLastContentRect</string>
<string>199.IBPluginDependency</string> <string>199.IBPluginDependency</string>
<string>2.IBPluginDependency</string> <string>2.IBPluginDependency</string>
@ -2004,11 +1743,6 @@
<string>204.IBPluginDependency</string> <string>204.IBPluginDependency</string>
<string>205.IBPluginDependency</string> <string>205.IBPluginDependency</string>
<string>21.IBPluginDependency</string> <string>21.IBPluginDependency</string>
<string>215.IBEditorWindowLastContentRect</string>
<string>215.IBPluginDependency</string>
<string>216.IBPluginDependency</string>
<string>217.IBPluginDependency</string>
<string>218.IBPluginDependency</string>
<string>219.IBEditorWindowLastContentRect</string> <string>219.IBEditorWindowLastContentRect</string>
<string>219.IBPluginDependency</string> <string>219.IBPluginDependency</string>
<string>22.IBPluginDependency</string> <string>22.IBPluginDependency</string>
@ -2093,7 +1827,7 @@
<boolean value="YES"/> <boolean value="YES"/>
<string>{2000, 2000}</string> <string>{2000, 2000}</string>
<string>{480, 359}</string> <string>{480, 359}</string>
<string>{{459, 601}, {64, 6}}</string> <string>{{477, 601}, {64, 6}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{436, 809}, {64, 6}}</string> <string>{{436, 809}, {64, 6}}</string>
@ -2101,7 +1835,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{256, 344}, {242, 243}}</string> <string>{{249, 384}, {242, 203}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2114,16 +1848,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{491, 314}, {337, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{498, 324}, {259, 103}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{498, 294}, {337, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<reference ref="0"/> <reference ref="0"/>
@ -2134,19 +1859,14 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{498, 324}, {173, 63}}</string> <string>{{491, 364}, {170, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{498, 324}, {170, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{127, 544}, {129, 63}}</string> <string>{{127, 544}, {122, 63}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2207,7 +1927,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{256, 494}, {211, 73}}</string> <string>{{249, 494}, {211, 73}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{525, 802}, {197, 73}}</string> <string>{{525, 802}, {197, 73}}</string>
@ -2219,7 +1939,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{256, 484}, {228, 123}}</string> <string>{{249, 484}, {222, 123}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{23, 794}, {245, 183}}</string> <string>{{23, 794}, {245, 183}}</string>
@ -2280,6 +2000,35 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>ignoreAllReports:</string>
<string>ignoreReport:</string>
<string>sendAllReports:</string>
<string>sendReport:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">ignoreAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">ignoreReport:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendReport:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -2313,6 +2062,75 @@
<string>NSTextView</string> <string>NSTextView</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>dateField</string>
<string>hideMenu</string>
<string>ignoreAllButton</string>
<string>ignoreButton</string>
<string>mainMenu</string>
<string>mainWindow</string>
<string>quitMenu</string>
<string>sendAllButton</string>
<string>sendButton</string>
<string>titleField</string>
<string>userEmailField</string>
<string>userReportView</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">dateField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">hideMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainMenu</string>
<string key="candidateClassName">NSMenu</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">quitMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">titleField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userReportView</string>
<string key="candidateClassName">NSTextView</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMReportWindow.h</string> <string key="minorKey">Classes/Framework/MGMReportWindow.h</string>
@ -2828,13 +2646,14 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1040" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -2843,5 +2662,20 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSApplicationIcon</string>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{128, 128}</string>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -905,6 +905,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -926,6 +945,45 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>bugView</string>
<string>cancelButton</string>
<string>mainWindow</string>
<string>reproduceView</string>
<string>sendButton</string>
<string>userEmailField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">bugView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">reproduceView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMBugWindow.h</string> <string key="minorKey">Classes/Framework/MGMBugWindow.h</string>
@ -1399,9 +1457,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -43,7 +43,7 @@
<int key="NSWindowBacking">2</int> <int key="NSWindowBacking">2</int>
<string key="NSWindowRect">{{414, 230}, {452, 318}}</string> <string key="NSWindowRect">{{414, 230}, {452, 318}}</string>
<int key="NSWTFlags">1618477056</int> <int key="NSWTFlags">1618477056</int>
<string key="NSWindowTitle">Contact Me</string> <string key="NSWindowTitle">Contacte-me</string>
<string key="NSWindowClass">NSWindow</string> <string key="NSWindowClass">NSWindow</string>
<nil key="NSViewClass"/> <nil key="NSViewClass"/>
<string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string> <string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string>
@ -910,6 +910,25 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancel:</string>
<string>send:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">cancel:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">send:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -933,6 +952,50 @@
<string>NSTextField</string> <string>NSTextField</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>cancelButton</string>
<string>mainWindow</string>
<string>messageView</string>
<string>sendButton</string>
<string>subjectPopUp</string>
<string>userEmailField</string>
<string>userNameField</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">cancelButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">messageView</string>
<string key="candidateClassName">NSTextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">subjectPopUp</string>
<string key="candidateClassName">NSPopUpButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userNameField</string>
<string key="candidateClassName">NSTextField</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMContactWindow.h</string> <string key="minorKey">Classes/Framework/MGMContactWindow.h</string>
@ -1427,9 +1490,10 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -1438,5 +1502,18 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>

View File

@ -2,17 +2,18 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1040</int> <int key="IBDocument.SystemTarget">1040</int>
<string key="IBDocument.SystemVersion">10C540</string> <string key="IBDocument.SystemVersion">10F569</string>
<string key="IBDocument.InterfaceBuilderVersion">740</string> <string key="IBDocument.InterfaceBuilderVersion">788</string>
<string key="IBDocument.AppKitVersion">1038.25</string> <string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">458.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">740</string> <string key="NS.object.0">788</string>
</object> </object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<integer value="1"/> <integer value="1"/>
<integer value="177"/>
</object> </object>
<object class="NSArray" key="IBDocument.PluginDependencies"> <object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
@ -43,7 +44,7 @@
<int key="NSWindowBacking">2</int> <int key="NSWindowBacking">2</int>
<string key="NSWindowRect">{{414, 196}, {479, 360}}</string> <string key="NSWindowRect">{{414, 196}, {479, 360}}</string>
<int key="NSWTFlags">1618477056</int> <int key="NSWTFlags">1618477056</int>
<string key="NSWindowTitle">Application Crashed</string> <string key="NSWindowTitle">Application Encravou</string>
<string key="NSWindowClass">NSWindow</string> <string key="NSWindowClass">NSWindow</string>
<nil key="NSViewClass"/> <nil key="NSViewClass"/>
<string key="NSWindowContentMaxSize">{2000, 2000}</string> <string key="NSWindowContentMaxSize">{2000, 2000}</string>
@ -512,7 +513,7 @@
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="38783522"> <object class="NSMenuItem" id="38783522">
<reference key="NSMenu" ref="933560928"/> <reference key="NSMenu" ref="933560928"/>
<string key="NSTitle">Application</string> <string key="NSTitle">Aplicação</string>
<string key="NSKeyEquiv"/> <string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
<object class="NSCustomResource" key="NSOnImage" id="121411531"> <object class="NSCustomResource" key="NSOnImage" id="121411531">
@ -525,7 +526,7 @@
</object> </object>
<string key="NSAction">submenuAction:</string> <string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="817535067"> <object class="NSMenu" key="NSSubmenu" id="817535067">
<string key="NSTitle">Application</string> <string key="NSTitle">Aplicação</string>
<object class="NSMutableArray" key="NSMenuItems"> <object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="608953261"> <object class="NSMenuItem" id="608953261">
@ -565,7 +566,7 @@
</object> </object>
<object class="NSMenuItem" id="512340788"> <object class="NSMenuItem" id="512340788">
<reference key="NSMenu" ref="817535067"/> <reference key="NSMenu" ref="817535067"/>
<string key="NSTitle">Outros Hide</string> <string key="NSTitle">Esconder outros</string>
<string key="NSKeyEquiv">h</string> <string key="NSKeyEquiv">h</string>
<int key="NSKeyEquivModMask">1572864</int> <int key="NSKeyEquivModMask">1572864</int>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
@ -574,7 +575,7 @@
</object> </object>
<object class="NSMenuItem" id="271045817"> <object class="NSMenuItem" id="271045817">
<reference key="NSMenu" ref="817535067"/> <reference key="NSMenu" ref="817535067"/>
<string key="NSTitle">Show All</string> <string key="NSTitle">Mostrar todos</string>
<string key="NSKeyEquiv"/> <string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
@ -697,71 +698,6 @@
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/> <reference key="NSMixedImage" ref="781528205"/>
</object> </object>
<object class="NSMenuItem" id="149062411">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Encontrar</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="641033652">
<string key="NSTitle">Encontrar</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="483902611">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Encontre…</string>
<string key="NSKeyEquiv">f</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<int key="NSState">1</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">1</int>
</object>
<object class="NSMenuItem" id="225898837">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Localizar seguinte</string>
<string key="NSKeyEquiv">g</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">2</int>
</object>
<object class="NSMenuItem" id="659604606">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Procurar anterior</string>
<string key="NSKeyEquiv">G</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">3</int>
</object>
<object class="NSMenuItem" id="44192373">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Usar selecção para Pesquisar</string>
<string key="NSKeyEquiv">e</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<int key="NSTag">7</int>
</object>
<object class="NSMenuItem" id="647221297">
<reference key="NSMenu" ref="641033652"/>
<string key="NSTitle">Ir para Seleção</string>
<string key="NSKeyEquiv">j</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="932063339"> <object class="NSMenuItem" id="932063339">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Ortografia e Gramática</string> <string key="NSTitle">Ortografia e Gramática</string>
@ -829,45 +765,6 @@
</object> </object>
</object> </object>
</object> </object>
<object class="NSMenuItem" id="248983077">
<reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Transformações</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="51407877">
<string key="NSTitle">Transformações</string>
<object class="NSMutableArray" key="NSMenuItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="393571759">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Faça Maiúsculas</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="603985329">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Faça Minúsculas</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
<object class="NSMenuItem" id="546964384">
<reference key="NSMenu" ref="51407877"/>
<string key="NSTitle">Capitalize</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/>
<reference key="NSMixedImage" ref="781528205"/>
</object>
</object>
</object>
</object>
<object class="NSMenuItem" id="752291159"> <object class="NSMenuItem" id="752291159">
<reference key="NSMenu" ref="676864266"/> <reference key="NSMenu" ref="676864266"/>
<string key="NSTitle">Discurso</string> <string key="NSTitle">Discurso</string>
@ -882,7 +779,7 @@
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSMenuItem" id="101356142"> <object class="NSMenuItem" id="101356142">
<reference key="NSMenu" ref="998271133"/> <reference key="NSMenu" ref="998271133"/>
<string key="NSTitle">Start Speaking</string> <string key="NSTitle">Começar de falar</string>
<string key="NSKeyEquiv"/> <string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
@ -943,7 +840,7 @@
</object> </object>
<object class="NSMenuItem" id="258512650"> <object class="NSMenuItem" id="258512650">
<reference key="NSMenu" ref="889328885"/> <reference key="NSMenu" ref="889328885"/>
<string key="NSTitle">Bring All to Front</string> <string key="NSTitle">Passar tudo para a frente</string>
<string key="NSKeyEquiv"/> <string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int> <int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="121411531"/> <reference key="NSOnImage" ref="121411531"/>
@ -1167,46 +1064,6 @@
</object> </object>
<int key="connectionID">235</int> <int key="connectionID">235</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="483902611"/>
</object>
<int key="connectionID">236</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="225898837"/>
</object>
<int key="connectionID">238</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="659604606"/>
</object>
<int key="connectionID">239</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performFindPanelAction:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="44192373"/>
</object>
<int key="connectionID">240</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">centerSelectionInVisibleArea:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="647221297"/>
</object>
<int key="connectionID">243</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">showGuessPanel:</string> <string key="label">showGuessPanel:</string>
@ -1247,30 +1104,6 @@
</object> </object>
<int key="connectionID">248</int> <int key="connectionID">248</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">uppercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="393571759"/>
</object>
<int key="connectionID">249</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">lowercaseWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="603985329"/>
</object>
<int key="connectionID">250</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">capitalizeWord:</string>
<reference key="source" ref="1003"/>
<reference key="destination" ref="546964384"/>
</object>
<int key="connectionID">251</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection"> <object class="IBActionConnection" key="connection">
<string key="label">startSpeaking:</string> <string key="label">startSpeaking:</string>
@ -1674,9 +1507,7 @@
<reference ref="935406412"/> <reference ref="935406412"/>
<reference ref="603231746"/> <reference ref="603231746"/>
<reference ref="387320488"/> <reference ref="387320488"/>
<reference ref="149062411"/>
<reference ref="932063339"/> <reference ref="932063339"/>
<reference ref="248983077"/>
<reference ref="752291159"/> <reference ref="752291159"/>
</object> </object>
<reference key="parent" ref="337908444"/> <reference key="parent" ref="337908444"/>
@ -1726,15 +1557,6 @@
<reference key="object" ref="387320488"/> <reference key="object" ref="387320488"/>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">182</int>
<reference key="object" ref="149062411"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="641033652"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">181</int> <int key="objectID">181</int>
<reference key="object" ref="932063339"/> <reference key="object" ref="932063339"/>
@ -1744,15 +1566,6 @@
</object> </object>
<reference key="parent" ref="676864266"/> <reference key="parent" ref="676864266"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">179</int>
<reference key="object" ref="248983077"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="51407877"/>
</object>
<reference key="parent" ref="676864266"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">178</int> <int key="objectID">178</int>
<reference key="object" ref="752291159"/> <reference key="object" ref="752291159"/>
@ -1782,32 +1595,6 @@
<reference key="object" ref="207105773"/> <reference key="object" ref="207105773"/>
<reference key="parent" ref="998271133"/> <reference key="parent" ref="998271133"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">215</int>
<reference key="object" ref="51407877"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="393571759"/>
<reference ref="603985329"/>
<reference ref="546964384"/>
</object>
<reference key="parent" ref="248983077"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">218</int>
<reference key="object" ref="393571759"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">217</int>
<reference key="object" ref="603985329"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">216</int>
<reference key="object" ref="546964384"/>
<reference key="parent" ref="51407877"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">199</int> <int key="objectID">199</int>
<reference key="object" ref="420966241"/> <reference key="object" ref="420966241"/>
@ -1852,44 +1639,6 @@
<reference key="object" ref="425553853"/> <reference key="object" ref="425553853"/>
<reference key="parent" ref="420966241"/> <reference key="parent" ref="420966241"/>
</object> </object>
<object class="IBObjectRecord">
<int key="objectID">193</int>
<reference key="object" ref="641033652"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="483902611"/>
<reference ref="225898837"/>
<reference ref="659604606"/>
<reference ref="44192373"/>
<reference ref="647221297"/>
</object>
<reference key="parent" ref="149062411"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">198</int>
<reference key="object" ref="483902611"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">197</int>
<reference key="object" ref="225898837"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">196</int>
<reference key="object" ref="659604606"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">195</int>
<reference key="object" ref="44192373"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">194</int>
<reference key="object" ref="647221297"/>
<reference key="parent" ref="641033652"/>
</object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">83</int> <int key="objectID">83</int>
<reference key="object" ref="42027193"/> <reference key="object" ref="42027193"/>
@ -1973,9 +1722,7 @@
<string>177.IBEditorWindowLastContentRect</string> <string>177.IBEditorWindowLastContentRect</string>
<string>177.IBPluginDependency</string> <string>177.IBPluginDependency</string>
<string>178.IBPluginDependency</string> <string>178.IBPluginDependency</string>
<string>179.IBPluginDependency</string>
<string>181.IBPluginDependency</string> <string>181.IBPluginDependency</string>
<string>182.IBPluginDependency</string>
<string>183.IBPluginDependency</string> <string>183.IBPluginDependency</string>
<string>184.IBPluginDependency</string> <string>184.IBPluginDependency</string>
<string>185.IBPluginDependency</string> <string>185.IBPluginDependency</string>
@ -1985,13 +1732,6 @@
<string>190.IBPluginDependency</string> <string>190.IBPluginDependency</string>
<string>191.IBPluginDependency</string> <string>191.IBPluginDependency</string>
<string>192.IBPluginDependency</string> <string>192.IBPluginDependency</string>
<string>193.IBEditorWindowLastContentRect</string>
<string>193.IBPluginDependency</string>
<string>194.IBPluginDependency</string>
<string>195.IBPluginDependency</string>
<string>196.IBPluginDependency</string>
<string>197.IBPluginDependency</string>
<string>198.IBPluginDependency</string>
<string>199.IBEditorWindowLastContentRect</string> <string>199.IBEditorWindowLastContentRect</string>
<string>199.IBPluginDependency</string> <string>199.IBPluginDependency</string>
<string>2.IBPluginDependency</string> <string>2.IBPluginDependency</string>
@ -2003,11 +1743,6 @@
<string>204.IBPluginDependency</string> <string>204.IBPluginDependency</string>
<string>205.IBPluginDependency</string> <string>205.IBPluginDependency</string>
<string>21.IBPluginDependency</string> <string>21.IBPluginDependency</string>
<string>215.IBEditorWindowLastContentRect</string>
<string>215.IBPluginDependency</string>
<string>216.IBPluginDependency</string>
<string>217.IBPluginDependency</string>
<string>218.IBPluginDependency</string>
<string>219.IBEditorWindowLastContentRect</string> <string>219.IBEditorWindowLastContentRect</string>
<string>219.IBPluginDependency</string> <string>219.IBPluginDependency</string>
<string>22.IBPluginDependency</string> <string>22.IBPluginDependency</string>
@ -2092,7 +1827,7 @@
<boolean value="YES"/> <boolean value="YES"/>
<string>{2000, 2000}</string> <string>{2000, 2000}</string>
<string>{479, 360}</string> <string>{479, 360}</string>
<string>{{477, 601}, {64, 6}}</string> <string>{{465, 601}, {64, 6}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{436, 809}, {64, 6}}</string> <string>{{436, 809}, {64, 6}}</string>
@ -2100,7 +1835,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{256, 344}, {244, 243}}</string> <string>{{244, 384}, {244, 203}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2113,16 +1848,7 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{488, 314}, {329, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{500, 324}, {286, 103}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{500, 294}, {329, 113}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<reference ref="0"/> <reference ref="0"/>
@ -2133,19 +1859,14 @@
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{500, 324}, {162, 63}}</string> <string>{{488, 364}, {168, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{500, 324}, {150, 43}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{127, 544}, {129, 63}}</string> <string>{{127, 544}, {117, 63}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@ -2206,7 +1927,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{256, 494}, {194, 73}}</string> <string>{{244, 494}, {249, 73}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{525, 802}, {197, 73}}</string> <string>{{525, 802}, {197, 73}}</string>
@ -2218,7 +1939,7 @@
<integer value="1"/> <integer value="1"/>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{256, 484}, {221, 123}}</string> <string>{{244, 484}, {221, 123}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/> <integer value="1"/>
<string>{{23, 794}, {245, 183}}</string> <string>{{23, 794}, {245, 183}}</string>
@ -2279,6 +2000,35 @@
<string>id</string> <string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>ignoreAllReports:</string>
<string>ignoreReport:</string>
<string>sendAllReports:</string>
<string>sendReport:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">ignoreAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">ignoreReport:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendAllReports:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo">
<string key="name">sendReport:</string>
<string key="candidateClassName">id</string>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="outlets"> <object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
@ -2312,6 +2062,75 @@
<string>NSTextView</string> <string>NSTextView</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>dateField</string>
<string>hideMenu</string>
<string>ignoreAllButton</string>
<string>ignoreButton</string>
<string>mainMenu</string>
<string>mainWindow</string>
<string>quitMenu</string>
<string>sendAllButton</string>
<string>sendButton</string>
<string>titleField</string>
<string>userEmailField</string>
<string>userReportView</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">dateField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">hideMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">ignoreButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainMenu</string>
<string key="candidateClassName">NSMenu</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">mainWindow</string>
<string key="candidateClassName">NSWindow</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">quitMenu</string>
<string key="candidateClassName">NSMenuItem</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendAllButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">sendButton</string>
<string key="candidateClassName">NSButton</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">titleField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userEmailField</string>
<string key="candidateClassName">NSTextField</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">userReportView</string>
<string key="candidateClassName">NSTextView</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier"> <object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string> <string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/Framework/MGMReportWindow.h</string> <string key="minorKey">Classes/Framework/MGMReportWindow.h</string>
@ -2827,13 +2646,14 @@
</object> </object>
</object> </object>
<int key="IBDocument.localizationMode">0</int> <int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1040" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1040" key="NS.object.0"/> <integer value="1050" key="NS.object.0"/>
</object> </object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
@ -2842,5 +2662,20 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string> <string key="IBDocument.LastKnownRelativeProjectPath">../../../GeckoReporter.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int> <int key="IBDocument.defaultPropertyAccessControl">3</int>
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSApplicationIcon</string>
<string>NSMenuCheckmark</string>
<string>NSMenuMixedState</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>{128, 128}</string>
<string>{9, 8}</string>
<string>{7, 2}</string>
</object>
</object>
</data> </data>
</archive> </archive>