[BACK]Return to MyOutputWindowController.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / cfep

File: [local] / OpenXM / src / cfep / MyOutputWindowController.h (download)

Revision 1.1.1.1 (vendor branch), Fri Mar 3 23:31:12 2006 UTC (18 years, 2 months ago) by takayama
Branch: TAKAYAMA
CVS Tags: RELEASE_0_9
Changes since 1.1: +0 -0 lines

The initial release of cfep (cocoa front end view process for OpenXM engines).
It has been built and tested on Mac OS X 10.4 (tigers) and xcode 2.2.
The default engine is risa/asir.

//
//  MyOutputWindowController.h
//  cfep
//
//  Created by nobuki on 06/01/25.
//  Copyright 2006 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>
@class MyDocument ;
enum actionType { FIND, REMOVE} ;

@interface MyOutputWindowController : NSWindowController {
  IBOutlet NSWindow *window;
  IBOutlet NSTextView *textViewOut;
  IBOutlet NSTextField *inputCounterField;
  
  int removable;
  int displayed;
  int winNo;
}

+(MyOutputWindowController *) sharedMyOutputWindowController: (MyDocument *) sender action: (enum actionType) a;
+(MyOutputWindowController *) sharedMyOutputWindowController: (MyDocument *)sender ;
-(id) init;
-(void) closeMyOutputWindow: (MyDocument *) md;
-(void) windowDidLoad;
-(void) dealloc;
-(BOOL) windowShouldClose: (NSWindow *)sender ;

-(void)changeWindowTitle: (NSString *)msg; 
-(void)outputStringToOutputWindow:(NSString *)msg;  
-(void)clearOutputWindow;
-(void)printErrorMessageToOutputWindow:(NSString *)msg;  

-(void) printDocument: (id) sender; 




@end