Annotation of OpenXM/src/cfep/MyOutputWindowController.h, Revision 1.1
1.1 ! takayama 1: //
! 2: // MyOutputWindowController.h
! 3: // cfep
! 4: //
! 5: // Created by nobuki on 06/01/25.
! 6: // Copyright 2006 __MyCompanyName__. All rights reserved.
! 7: //
! 8:
! 9: #import <Cocoa/Cocoa.h>
! 10: @class MyDocument ;
! 11: enum actionType { FIND, REMOVE} ;
! 12:
! 13: @interface MyOutputWindowController : NSWindowController {
! 14: IBOutlet NSWindow *window;
! 15: IBOutlet NSTextView *textViewOut;
! 16: IBOutlet NSTextField *inputCounterField;
! 17:
! 18: int removable;
! 19: int displayed;
! 20: int winNo;
! 21: }
! 22:
! 23: +(MyOutputWindowController *) sharedMyOutputWindowController: (MyDocument *) sender action: (enum actionType) a;
! 24: +(MyOutputWindowController *) sharedMyOutputWindowController: (MyDocument *)sender ;
! 25: -(id) init;
! 26: -(void) closeMyOutputWindow: (MyDocument *) md;
! 27: -(void) windowDidLoad;
! 28: -(void) dealloc;
! 29: -(BOOL) windowShouldClose: (NSWindow *)sender ;
! 30:
! 31: -(void)changeWindowTitle: (NSString *)msg;
! 32: -(void)outputStringToOutputWindow:(NSString *)msg;
! 33: -(void)clearOutputWindow;
! 34: -(void)printErrorMessageToOutputWindow:(NSString *)msg;
! 35:
! 36: -(void) printDocument: (id) sender;
! 37:
! 38:
! 39:
! 40:
! 41: @end
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>