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

Diff for /OpenXM/src/cfep/MyDocument.m between version 1.4 and 1.11

version 1.4, 2006/03/08 04:58:14 version 1.11, 2016/10/03 07:42:29
Line 74  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 74  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
     [self addMenuExec]; // adding the execution menu.      [self addMenuExec]; // adding the execution menu.
     [textViewIn setAllowsUndo:YES];      [textViewIn setAllowsUndo:YES];
         if ([textViewIn isContinuousSpellCheckingEnabled]) [textViewIn toggleContinuousSpellChecking: self]; // Turn off the spell checking.          if ([textViewIn isContinuousSpellCheckingEnabled]) [textViewIn toggleContinuousSpellChecking: self]; // Turn off the spell checking.
       if ([textViewIn isAutomaticQuoteSubstitutionEnabled]) [textViewIn toggleAutomaticQuoteSubstitution: self]; // Turn off the smart quote.
       if ([MyEnvironment isX11Installed] != 1)
             [self messageDialog: NSLocalizedString(@"XQuartz(X11) is not installed. To install it, visit http://www.xquartz.org.",nil) with: 0];
   //      if ([MyEnvironment isGccInstalled] != 1)
   //        [self messageDialog: NSLocalizedString(@"gcc is not installed. To install it, insert MacOS DVD1 and open Xcode Tools->XcodeTools.mpkg",nil) with: 0];
         [self sayTheMessageAboutX];          [self sayTheMessageAboutX];
         [self initAux];          [self initAux];
 }  }
Line 152  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 157  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
         [self openMyModel: myEnvironment ];          [self openMyModel: myEnvironment ];
         [MyOpenGLController initMyOpenGLController]; // For the second execution, it will do nothing.          [MyOpenGLController initMyOpenGLController]; // For the second execution, it will do nothing.
 }  }
 -(int) getMyDocumentKey { return myDocumentKey; }  -(NSString *) getMyDocumentKey { return myDocumentKey; }
   
 -(id) openMyModel: (MyEnvironment *) myEnvironment {  -(id) openMyModel: (MyEnvironment *) myEnvironment {
     [myEnvironment showForDebug]; // for debug.      [myEnvironment showForDebug]; // for debug.
Line 167  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 172  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
         [peerEndEvaluteMark retain];          [peerEndEvaluteMark retain];
   
         [self stopIndicator];          [self stopIndicator];
     if (NoEngine && (!restartMode)) { task = nil; return; }      if (NoEngine && (!restartMode)) { task = nil; return self; }
   
         // Initialization to call /bin/bash          // Initialization to call /bin/bash
     outboundPipe = [NSPipe pipe];  // since autorelease is called in pipe.      outboundPipe = [NSPipe pipe];  // since autorelease is called in pipe.
Line 245  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 250  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
   NSLog(@"myDocumentSaidTheMessageAboutX=%d\n",myDocumentSaidTheMessageAboutX);    NSLog(@"myDocumentSaidTheMessageAboutX=%d\n",myDocumentSaidTheMessageAboutX);
   if (!myDocumentSaidTheMessageAboutX) {    if (!myDocumentSaidTheMessageAboutX) {
     if ([MyEnvironment checkX] != 1)      if ([MyEnvironment checkX] != 1)
            [self messageDialog:            // [self messageDialog:
              NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil) with: 0];            //    NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil) with: 0];
             [self changeOutputCounterFieldWithString:
               [NSLocalizedString(@"Output mini-view: ",nil) stringByAppendingString:
                    NSLocalizedString(@"A few commands (plot, ...) cannot be used, because X11 is not running.",nil)]];
         myDocumentSaidTheMessageAboutX = 1;          myDocumentSaidTheMessageAboutX = 1;
   }    }
 }  }
Line 289  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 297  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
           [textViewIn replaceCharactersInRange: NSMakeRange(pos,0) withString: @"\n"];            [textViewIn replaceCharactersInRange: NSMakeRange(pos,0) withString: @"\n"];
                 }                  }
                 cmd0 = [cmd0 substringWithRange:r ];                  cmd0 = [cmd0 substringWithRange:r ];
         }          }
           [self outputBorderLine: [NSColor magentaColor]];
           [self outputString: cmd0];
           if ([cmd0 length] > 0) {
         if ([cmd0 characterAtIndex: ([cmd0 length]-1)] != 0xa) [self outputString: @"\n"];
       }
       [self outputBorderLine: [NSColor yellowColor]];
   }else{    }else{
     cmd0 = [textViewIn string];      cmd0 = [textViewIn string];
     MyOutputWindowController *mc;      MyOutputWindowController *mc;
Line 408  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
Line 422  static NSMenuItem *menuItemPrettyPrint = nil;  // pret
         else [mc outputStringToOutputWindow: amt];          else [mc outputStringToOutputWindow: amt];
   }    }
 }  }
   -(void)outputBorderLine: (NSColor *)color {
       MyOutputWindowController *mc;
       mc = [MyOutputWindowController sharedMyOutputWindowController: self];
       [mc outputStringToOutputWindow: @"----------------------------------------\n" withColor: color];
   }
 - (void) outputErrorString: (NSString *) amt {  - (void) outputErrorString: (NSString *) amt {
   int oldEnd;    int oldEnd;
   int newEnd;    int newEnd;
Line 1032  int debugInbound = 0;
Line 1051  int debugInbound = 0;
         return -1;          return -1;
   }    }
   gid = [[a objectAtIndex: 0] intValue];    gid = [[a objectAtIndex: 0] intValue];
   if ([[a objectAtIndex: 1] hasPrefix: @"meta"]) {[self openGLMeta: [a objectAtIndex: 1] to: gid]; return; }    if ([[a objectAtIndex: 1] hasPrefix: @"meta"]) {[self openGLMeta: [a objectAtIndex: 1] to: gid]; return 0; }
   [MyOpenGLController addOglComm: [a objectAtIndex: 1] to: gid from: self];    [MyOpenGLController addOglComm: [a objectAtIndex: 1] to: gid from: self];
   return 0;    return 0;
 }  }
Line 1051  int debugInbound = 0;
Line 1070  int debugInbound = 0;
 -(void)openGLMeta: (NSString *) cmd to: (int) gid{  -(void)openGLMeta: (NSString *) cmd to: (int) gid{
   MyOpenGLController *oglc;    MyOpenGLController *oglc;
   oglc = [MyOpenGLController getOglWindow: gid];    oglc = [MyOpenGLController getOglWindow: gid];
   if (!oglc) {[self outputErrorString: [NSString stringWithFormat: @"Invalid gid %d in openGLMeta\n",gid]]; return; }    if (!oglc) {[self printErrorMessage:
        [NSString stringWithFormat: @"Invalid gid %d in openGLMeta command %@\n",gid,cmd]]; return; }
   if ([cmd hasPrefix: @"meta_showListOfOglComm"]) {    if ([cmd hasPrefix: @"meta_showListOfOglComm"]) {
     [self showListOfOglComm: gid]; return ;      [self showListOfOglComm: gid]; return ;
   }else if ([cmd hasPrefix: @"meta_removeAllInit"]) { // longer command must come first, because we use prefix.    }else if ([cmd hasPrefix: @"meta_removeAllInit"]) { // longer command must come first, because we use prefix.
Line 1063  int debugInbound = 0;
Line 1083  int debugInbound = 0;
   }else if ([cmd hasPrefix: @"meta_removeLast"]) {    }else if ([cmd hasPrefix: @"meta_removeLast"]) {
     [oglc removeLastOfOglComm];      [oglc removeLastOfOglComm];
   }else{    }else{
     [self outputErrorString: [NSString stringWithFormat: @"Unknown OpenGL meta command %@\n",cmd]];      [self printErrorMessage: [NSString stringWithFormat: @"Unknown OpenGL meta command %@\n",cmd]];
   }    }
 }  }
 -(void) showListOfOglComm: (int) gid {  -(void) showListOfOglComm: (int) gid {
Line 1108  int debugInbound = 0;
Line 1128  int debugInbound = 0;
   // NSLog(@"%@",a);    // NSLog(@"%@",a);
   if ([[a objectAtIndex: 0]  hasPrefix: @"notAvailable"]) {    if ([[a objectAtIndex: 0]  hasPrefix: @"notAvailable"]) {
     [self messageDialog:      [self messageDialog:
           NSLocalizedString(@"Typeset the output by TeX is not available. latex, dvips, and pstoimg must be installed.",nil)  with: 0];            NSLocalizedString(@"Typeset the output by TeX is not available. latex and dvipng must be installed.",nil)  with: 0];
         prettyPrint = 1; [self setPrettyPrint: nil];          prettyPrint = 1; [self setPrettyPrint: nil];
         return;          return;
   }     else if ([[a objectAtIndex: 0]  compare: @"showFile"] == NSOrderedSame) {    }     else if ([[a objectAtIndex: 0]  compare: @"showFile"] == NSOrderedSame) {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.11

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