File: programming/cocoa/NiftyFeatures.zip/NiftyFeatures/UKFeedbackProvider.h


//
//  UKFeedbackProvider.h
//  NiftyFeatures
//
//  Created by Uli Kusterer on Mon Nov 24 2003.
//  Copyright (c) 2003 M. Uli Kusterer. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
@interface UKFeedbackProvider : NSObject
{
	IBOutlet NSWindow*		feedbackWindow;			// Will automatically be hooked up. Don't do this yourself.
	IBOutlet NSComboBox*	subjectField;			// Will automatically be hooked up. Don't do this yourself.
	IBOutlet NSTextView*	messageText;			// Will automatically be hooked up. Don't do this yourself.
}
 
// Action for the "send feedback" menu item:
-(IBAction) orderFrontFeedbackWindow: (id)sender;   // Recommended menu item action method.
-(IBAction) sendFeedback: (id)sender;				// Old name, just for compatibility.
 
// Actions for the three buttons in the window:
-(IBAction) sendFeedbackButtonAction: (id)sender;
-(IBAction) closeFeedbackWindow: (id)sender;
-(IBAction) openURL: (id)sender;
 
 
 
@end

This code uses the PclZip Zip File reading code, which is subject to the GNU LGPL. It also uses the GeSHi syntax highlighter, subject to the GPL. Ask if you want this for your own web site, it's free.