2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
// FeedbackController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/26/05.
|
2005-07-02 21:02:06 +00:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "FeedbackSocket.h"
|
2022-02-07 05:49:27 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface FeedbackController : NSWindowController <FeedbackSocketDelegate> {
|
2005-06-02 18:16:43 +00:00
|
|
|
IBOutlet NSTextField* fromView;
|
|
|
|
IBOutlet NSTextField* subjectView;
|
|
|
|
IBOutlet NSTextView* messageView;
|
2022-02-07 05:49:27 +00:00
|
|
|
IBOutlet NSProgressIndicator* sendingIndicator;
|
|
|
|
|
|
|
|
FeedbackSocket* feedbackSocket;
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)sendFeedback:(id)sender;
|
|
|
|
- (IBAction)cancel:(id)sender;
|
|
|
|
|
|
|
|
@end
|