home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1992 Thomas A. Dilligan
- // All Rights Reserved
- //
- // For best results, set tabstop=4
-
- #import "PopUpMenu.h"
-
- @implementation PopUpMenu
-
- - mouseDown:(NXEvent *)event
- {
- [popUpList popUp:self];
- return self;
- }
-
- - initFrame:(NXRect *)frameRect;
- {
- [super initFrame:frameRect];
- popUpList=[[PopUpList alloc] init];
- [self setIconPosition:NX_ICONRIGHT];
- [self setAlignment:NX_LEFTALIGNED];
- [self setIcon:"Spot"];
- return self;
- }
-
- - popUpList
- {
- return popUpList;
- }
-
- @end
-