setup Crash Reporter interface
- Add AppDelegate files. git-svn-id: svn://localhost/ardour2/branches/3.0@5200 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
5924788df5
commit
6d66ac448f
21
tools/CrashReporter/AppDelegate.h
Normal file
21
tools/CrashReporter/AppDelegate.h
Normal file
@ -0,0 +1,21 @@
|
||||
//
|
||||
// AppDelegate.h
|
||||
// CrashReporter
|
||||
//
|
||||
// Created by Taybin Rutkin on 6/10/09.
|
||||
// Copyright 2009 Penguin Sounds. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
@interface AppDelegate : NSObject {
|
||||
IBOutlet NSFormCell *nameField;
|
||||
IBOutlet NSFormCell *emailField;
|
||||
IBOutlet NSTextView *descriptionView;
|
||||
IBOutlet NSTextView *stackTrackView;
|
||||
}
|
||||
|
||||
- (IBAction)sendButton:(id)sender;
|
||||
|
||||
@end
|
19
tools/CrashReporter/AppDelegate.m
Normal file
19
tools/CrashReporter/AppDelegate.m
Normal file
@ -0,0 +1,19 @@
|
||||
//
|
||||
// AppDelegate.m
|
||||
// CrashReporter
|
||||
//
|
||||
// Created by Taybin Rutkin on 6/10/09.
|
||||
// Copyright 2009 Penguin Sounds. All rights reserved.
|
||||
//
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
- (IBAction)sendButton:(id)sender
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@end
|
@ -8,6 +8,7 @@
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58140DA1D0A300B32029 /* MainMenu.xib */; };
|
||||
6928CD410FE0A55A006F5860 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6928CD400FE0A55A006F5860 /* AppDelegate.m */; };
|
||||
8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
|
||||
8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
|
||||
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
|
||||
@ -22,6 +23,8 @@
|
||||
29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
|
||||
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
|
||||
32CA4F630368D1EE00C91783 /* CrashReporter_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CrashReporter_Prefix.pch; sourceTree = "<group>"; };
|
||||
6928CD3F0FE0A55A006F5860 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
||||
6928CD400FE0A55A006F5860 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
||||
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
8D1107320486CEB800E47090 /* CrashReporter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CrashReporter.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
@ -41,6 +44,8 @@
|
||||
080E96DDFE201D6D7F000001 /* Classes */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6928CD3F0FE0A55A006F5860 /* AppDelegate.h */,
|
||||
6928CD400FE0A55A006F5860 /* AppDelegate.m */,
|
||||
);
|
||||
name = Classes;
|
||||
sourceTree = "<group>";
|
||||
@ -167,6 +172,7 @@
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8D11072D0486CEB800E47090 /* main.m in Sources */,
|
||||
6928CD410FE0A55A006F5860 /* AppDelegate.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user