ftp.nice.ch/pub/next/connectivity/mail/bundles/EnhanceMail.2.2p1.s.gnutar.gz#/EnhanceMail-2.2p1/Source/HelpPanel.m

This is HelpPanel.m in view mode; [Download] [Up]

/* -*-C-*-
*******************************************************************************
*
* File:         HelpPanel.m
* RCS:          /usr/local/sources/CVS/EnhanceMail/HelpPanel.m,v 1.4 1997/11/01 00:19:26 tom Exp
* Description:  
* Author:       Carl Edman
* Created:      Tue Oct 31 22:16:31 1995
* Modified:     Sun Nov  5 10:20:25 1995 (Carl Edman) cedman@capitalist.princeton.edu
* Language:     C
* Package:      N/A
* Status:       Experimental (Do Not Distribute)
*
* (C) Copyright 1995, but otherwise this file is perfect freeware.
*
*******************************************************************************
*/

#import "EnhanceMail.h"
#import "HelpPanel.h"


static id maybeAddSupplement(NXHelpPanel *helpPanel)
{
   static BOOL isLoaded = NO;
   char path[MAXPATHLEN+1],*c;
   
   if (!isLoaded && helpPanel && EnhanceBundle &&
       [EnhanceBundle getPath:path forResource:"EnhanceHelp" ofType:0])
   {
      for(c=path;*c;c++);
      while((c>=path) && (*c!='/')) c--;
      *c='\0';
      [helpPanel addSupplement:"EnhanceHelp" inPath:path];
      isLoaded = YES;
   }
   return helpPanel;
}


@implementation EnhanceHelpPanel

+ finishLoading:(struct mach_header *)header
{
   EnhanceBundleInit();
   [self poseAs:[self superclass]];
   return self;
}

+ new
{
   return maybeAddSupplement([super new]);
}

/* [TRH  1-Feb-97] Original +newForDirectory: override did not always work
   when another Mail bundle loaded before EnhanceMail adds its help
   supplement by the naive [[NXHelpPanel new] addSupplement:...] approach.
   (EM is too smart for its own good:-/) */

@end // EnhanceHelpPanel

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.