public
Description:
Homepage:
Clone URL: git://github.com/jessegrosjean/quickcursor.git
quickcursor / CrashReporter.h
100644 36 lines (25 sloc) 0.781 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// CrashReporter.h
// Documents
//
// Created by Jesse Grosjean on 9/6/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface CrashReporter : NSWindowController {
    IBOutlet NSTextField *titleTextField;
    IBOutlet NSTextField *statusMessageTextField;
    IBOutlet NSTextView *problemCommentsTextView;
    IBOutlet NSTextView *problemDetailsTextView;
    IBOutlet NSButton *sendReportButton;
    IBOutlet NSProgressIndicator *statusProgressIndicator;
 
NSMutableDictionary *crashReport;
}
 
#pragma mark class methods
 
+ (id)sharedInstance;
 
#pragma mark actions
 
- (IBAction)check:(id)sender;
- (IBAction)sendReport:(id)sender;
- (IBAction)ignore:(id)sender;
 
@end
 
extern NSString *CrashReporterLastCheckDateDefaultsKey;