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

Diff for /OpenXM/src/cfep/MyDocument.h between version 1.1.1.1 and 1.6

version 1.1.1.1, 2006/03/03 23:31:12 version 1.6, 2016/09/30 01:13:38
Line 58 
Line 58 
   int ox_texmacs_level;    int ox_texmacs_level;
   // For select engine menu.    // For select engine menu.
   int oxEngine;  // cf. peer_type. temporal.    int oxEngine;  // cf. peer_type. temporal.
   // OnState or OffState in the execution menu     // For error handling.
   NSMenuItem *menuItemNotebookMode;  
   NSMenuItem *menuItemBasicMode;  
   NSMenuItem *menuItemRisaAsir;  
   NSMenuItem *menuItemKanSm1;  
   NSMenuItem *menuItemOutputDebugMessages;  //cf. debugMyTunnel;  
   // For error handling.  
   NSMutableArray *errorLines;    NSMutableArray *errorLines;
   // For debug the tunnel    // For debug the tunnel
   int debugMyTunnel;    int debugMyTunnel;
     // asir-contrib is loaded or not.
     int asir_contrib;
     // pretty printing
     int prettyPrint;
     //  cf. NoEngine
     int restartMode;
   //////////    //////////
   NSTask *task;    NSTask *task;
   NSPipe *inboundPipe;    NSPipe *inboundPipe;
Line 120 
Line 120 
 -(void)outputStringInNotebookMode: (NSString *)msg;  -(void)outputStringInNotebookMode: (NSString *)msg;
 -(void)outputErrorStringInNotebookMode: (NSString *)msg;  -(void)outputErrorStringInNotebookMode: (NSString *)msg;
 -(void)outputStringInNotebookMode: (NSString *)msg withColor: (NSColor *)color;  -(void)outputStringInNotebookMode: (NSString *)msg withColor: (NSColor *)color;
   -(void)outputBorderLine: (NSColor *)color;
   
 - (void)messageDialog:(NSString *)msg with:(int) no;  - (void)messageDialog:(NSString *)msg with:(int) no;
 -(void) printDocument: (id) sender;  -(void) printDocument: (id) sender;
Line 133 
Line 134 
 -(void) readInboundData: (NSNotification *) sender;  -(void) readInboundData: (NSNotification *) sender;
 -(void) readErrData: (NSNotification *) sender;  -(void) readErrData: (NSNotification *) sender;
   
   -(NSData *) getPeerEndEvaluateMark;
   
 -(int) selectIllegalCharacter ;  -(int) selectIllegalCharacter ;
 -(NSRange) selectBlockForwardFrom: (int) offset with: (int) first and: (int) last ;  -(NSRange) selectBlockForwardFrom: (int) offset with: (int) first and: (int) last ;
 -(NSRange) selectBlockForward ;  -(NSRange) selectBlockForward ;
Line 147 
Line 150 
 // managing OpenGL messages. (channel 1 and 2)  // managing OpenGL messages. (channel 1 and 2)
 -(int) openGLActionFor: (NSString *)cmd;  -(int) openGLActionFor: (NSString *)cmd;
 -(int) openGLInitActionFor: (NSString *)cmd;  -(int) openGLInitActionFor: (NSString *)cmd;
   -(void) showListOfOglComm: (int) gid;
   -(void) openGLMeta: (NSString *) cmd to: (int) gid;
   // managing png messages. (channel 10)
   -(void) pngActionFor: (NSString *)cmd;
 // notebookMode  // notebookMode
 -(void) insertInputCell;  -(void) insertInputCell;
 -(NSString *)getContentsOfInputCell;  -(NSString *)getContentsOfInputCell;
Line 164 
Line 171 
 -(void) setEngineRisaAsir: (id) sender;  -(void) setEngineRisaAsir: (id) sender;
 -(void) setEngineKanSm1: (id) sender;  -(void) setEngineKanSm1: (id) sender;
 -(void) setDebugMyTunnel: (id) sender;  -(void) setDebugMyTunnel: (id) sender;
   -(void) loadAsirContrib: (id) sender;
   -(NSMenuItem *) menuItemLoadLibrary: (int) oxengine;
   -(void) setPrettyPrint: (id) sender;
 -(void) mytest: (id) sender;  -(void) mytest: (id) sender;
   
 @end  @end

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.6

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>