2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
// FeedbackController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/26/05.
|
2005-07-02 17:02:06 -04:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "FeedbackSocket.h"
|
2022-02-07 02:49:27 -03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2005-06-02 14:16:43 -04:00
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface FeedbackController : NSWindowController <FeedbackSocketDelegate> {
|
2025-02-26 06:11:55 -03:00
|
|
|
IBOutlet NSTextField* nameView;
|
|
|
|
IBOutlet NSTextField* emailView;
|
2005-06-02 14:16:43 -04:00
|
|
|
IBOutlet NSTextView* messageView;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)sendFeedback:(id)sender;
|
|
|
|
- (IBAction)cancel:(id)sender;
|
|
|
|
|
2025-02-26 06:11:55 -03:00
|
|
|
- (BOOL)waitForCompletion;
|
|
|
|
|
|
|
|
- (NSString *)name;
|
|
|
|
- (NSString *)email;
|
|
|
|
- (NSString *)comments;
|
|
|
|
|
2005-06-02 14:16:43 -04:00
|
|
|
@end
|