ftp.nice.ch/Attic/openStep/implementation/gnustep/sources/objcX-0.87.tgz#/objcX-0.87/appkit/MenuCell.m

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

/* Implementation for MenuCell
 *
 * Copyright (C)  1993  The Board of Trustees of The Leland Stanford
 *                      Junior University.  All Rights Reserved.
 * 
 * Authors: Paul Kunz, Tom Pavel, and Libing Wang (SLAC)
 *	    Mike Kienenberger (Alaska)
 *
 * This file is part of an Objective-C class library for a window system
 *
 * MenuCell.m,v 1.33 1995/12/13 22:33:07 fedor Exp
 */


#include "MenuCell.h"

/* Required for implementation: */
#include "Menu.h"

#include <stdlib.h>             /* for free() */
#ifdef	sgi
#include <malloc.h>	/* although you might need to edit malloc.h */
#endif	/* sgi */

extern char *MenuCellInstanceName(void);


@implementation MenuCell:ButtonCell

+ useUserKeyEquivalents:(BOOL)flag
{
  return self;
}

- init
{
    [super init];
    instancename = MenuCellInstanceName();
    [self _init];
    return self;
}

- initTextCell:(const char *)aString
{
    return [self notImplemented:_cmd];
}

- copyFromZone:(NSZone *)zone
{
    MenuCell	*newCell;

    newCell = [super copyFromZone:zone];
    if ( subMenu ) {
        [newCell setSubmenu:[subMenu copy]];
    }
    return newCell;
}

- free
{
    if (subMenu) [subMenu free];
    return [super free];
}

- (BOOL)hasSubmenu
{
    return (subMenu != NULL);
}

- setSubmenu:aMenu
 /*	Deposits a submenu in the menu tree  */
{
    subMenu = aMenu;
    [self _setSubmenu];
    return self;
}

- setState:(int) value
{
  /* override method to avoid highlighting */
    cFlags1.state = value ? 1 : 0;
    return self;
}

- (unsigned short)userKeyEquivalent
{
    [self notImplemented:_cmd];
    return 0;
}

- (BOOL)trackMouse:(NXEvent *)theEvent 
 inRect:(const NXRect *)cellFrame ofView:controlView
{
    [self notImplemented:_cmd];
    return 0;
}

- setUpdateAction:(SEL)aSelector forMenu:aMenu
 /* 
	For use in the future when we want to be able to dictate
	which menu items are selected and which are not.
 	Allows one to set up the action which the item calls to update
	itself.
 */
{
    [aMenu setAutoupdate:YES];
    updateAction = aSelector;
    return self;
}

- (SEL)updateAction
{
    return updateAction;
}

- read:(TypedStream *)typedStream
{
    [super read:typedStream];

/*
    objc_read_object(typedStream, &subMenu);
    objc_read_type(typedStream, "int", &numargs);
    objc_read_type(typedStream, "int", &allocedargs);
    objc_read_type(typedStream, "int", &arglist);
    objc_read_type(typedStream, "int", &widgetid);
*/

    return self;
}
    
- awake
{
    [super awake];
    instancename = MenuCellInstanceName();
    [self _init];
#ifdef DEBUG
    fprintf(stderr, "MenuCell '%s': awake\n", contents);
    fprintf(stderr, "target = %d, action = %d\n", target, action);
#endif

    return self;
}

- write:(TypedStream *)typedStream
{
    [super write:typedStream];

    objc_write_object(typedStream, subMenu);
    objc_write_type(typedStream, "i", &numargs);
    objc_write_type(typedStream, "i", &allocedargs);
    objc_write_type(typedStream, "int", arglist);
    objc_write_type(typedStream, "int", widgetid);

    return self;
}

@end

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