2010-01-06 18:11:16 -06:00
|
|
|
//
|
|
|
|
// MGMBugWindow.h
|
|
|
|
// GeckoReporter
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 1/2/10.
|
|
|
|
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@class MGMSender;
|
|
|
|
|
|
|
|
@interface MGMBugWindow : NSObject {
|
|
|
|
IBOutlet NSWindow *mainWindow;
|
|
|
|
IBOutlet NSTextView *bugView;
|
|
|
|
IBOutlet NSTextView *reproduceView;
|
|
|
|
IBOutlet NSTextField *userEmailField;
|
|
|
|
IBOutlet NSButton *sendButton;
|
|
|
|
IBOutlet NSButton *cancelButton;
|
|
|
|
MGMSender *mailSender;
|
|
|
|
}
|
2010-01-12 08:05:09 -06:00
|
|
|
+ (id)sharedBugWindow;
|
2010-01-06 18:11:16 -06:00
|
|
|
- (void)setButtonsEnabled:(BOOL)flag;
|
|
|
|
- (void)close;
|
|
|
|
- (IBAction)send:(id)sender;
|
|
|
|
- (IBAction)cancel:(id)sender;
|
|
|
|
@end
|