2013-06-23 01:32:48 +00:00
|
|
|
/*
|
2014-02-01 22:54:30 +00:00
|
|
|
Copyright 2014 Hardcoded Software (http://www.hardcoded.net)
|
2013-06-23 01:32:48 +00:00
|
|
|
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "HSErrorReportWindow.h"
|
|
|
|
#import "HSErrorReportWindow_UI.h"
|
|
|
|
|
|
|
|
@implementation HSErrorReportWindow
|
|
|
|
|
|
|
|
@synthesize contentTextView;
|
2014-03-30 14:07:01 +00:00
|
|
|
@synthesize githubUrl;
|
2013-06-23 01:32:48 +00:00
|
|
|
|
2014-03-30 14:07:01 +00:00
|
|
|
+ (void)showErrorReportWithContent:(NSString *)content githubUrl:(NSString *)githubUrl
|
2013-06-23 01:32:48 +00:00
|
|
|
{
|
2014-03-30 14:07:01 +00:00
|
|
|
HSErrorReportWindow *report = [[HSErrorReportWindow alloc] initWithContent:content githubUrl:githubUrl];
|
|
|
|
[NSApp runModalForWindow:[report window]];
|
2013-06-23 01:32:48 +00:00
|
|
|
[report release];
|
|
|
|
}
|
|
|
|
|
2014-03-30 14:07:01 +00:00
|
|
|
- (id)initWithContent:(NSString *)content githubUrl:(NSString *)aGithubUrl
|
2013-06-23 01:32:48 +00:00
|
|
|
{
|
|
|
|
self = [super initWithWindow:nil];
|
|
|
|
[self setWindow:createHSErrorReportWindow_UI(self)];
|
|
|
|
[contentTextView alignLeft:nil];
|
|
|
|
[[[contentTextView textStorage] mutableString] setString:content];
|
2014-03-30 14:07:01 +00:00
|
|
|
self.githubUrl = aGithubUrl;
|
2013-06-23 01:32:48 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2014-03-30 14:07:01 +00:00
|
|
|
- (void)goToGithub
|
2013-06-23 01:32:48 +00:00
|
|
|
{
|
2014-03-30 14:07:01 +00:00
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:self.githubUrl]];
|
2013-06-23 01:32:48 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 14:07:01 +00:00
|
|
|
- (void)close
|
2013-06-23 01:32:48 +00:00
|
|
|
{
|
|
|
|
[[self window] orderOut:self];
|
2014-03-30 14:07:01 +00:00
|
|
|
[NSApp stopModalWithCode:NSOKButton];
|
2013-06-23 01:32:48 +00:00
|
|
|
}
|
|
|
|
@end
|