Kiwi User Interface Framework  beta
KUMenuItem.h
Go to the documentation of this file.
00001 
00008 #import <AppKit/AppKit.h>
00009 #import <Coconut/Coconut.h>
00010 #import "KUResponder.h"
00011 #import "KUFixedStrings.h"
00012 
00016 @interface KUMenuItem : KUResponder
00017 {
00019         NSMenuItem *            menuItemObject ;
00020 }
00021 
00022 @property (retain) NSMenuItem * menuItemObject ;
00023 
00031 - (id) initWithTitle: (NSString *) title keyEquivalent: (NSString *) code withResource: (struct CNResource *) resource ;
00033 - (void) dealloc ;
00034 
00036 - (id) clicked ;
00037 
00038 @end