mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
25 lines
463 B
Objective-C
25 lines
463 B
Objective-C
//
|
|
// ReflectMenuItem.h
|
|
// NativeHost
|
|
//
|
|
// Created by Francisco Tolmasky on 9/2/09.
|
|
// Copyright 2009 280 North, Inc.. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@class WebScriptObject;
|
|
|
|
@interface MenuItemBridge : NSMenuItem
|
|
{
|
|
WebScriptObject * menuItemObject;
|
|
}
|
|
|
|
+ (id)menuItemBridgeWithMenuItemObject:(WebScriptObject *)aMenuItemObject;
|
|
- (id)initWithMenuItemObject:(WebScriptObject *)aMenuItemObject;
|
|
|
|
- (void)updateFromMenuItemObject;
|
|
|
|
@end
|