celestia/macosx/Menu_Extensions.h

42 lines
1.4 KiB
Objective-C

//
// Menu_Extensions.h
// celestia
//
// Created by Da Woon Jung on 12/9/07.
// Copyright (C) 2007, Celestia Development Team
//
#import <Cocoa/Cocoa.h>
@class CelestiaSelection;
@class BrowserItem;
@protocol MenuCallbackNotifier <NSObject>
- (void)selectSatellite:(id)sender;
- (void)activateMenuItem:(id)item;
@end
@interface NSMenu (CelestiaMenu)
- (NSInteger) indexOfItemWithLocalizableTitle: (NSString *) aTitle;
- (BOOL) insertRefMarkItemsForSelection: (CelestiaSelection *) aSelection
atIndex: (NSInteger) aIndex;
- (BOOL) insertPlanetarySystemItemForSelection: (CelestiaSelection *) aSelection
target: (id) aTarget
atIndex: (NSInteger) aIndex;
- (BOOL) insertAltSurfaceItemForSelection: (CelestiaSelection *) aSelection
target: (id) aTarget
atIndex: (NSInteger) aIndex;
- (void) removeRefMarkItems;
- (void) removePlanetarySystemItem;
- (void) removeAltSurfaceItem;
@end
@interface NSMenuItem (CelestiaMenu)
- (void) addPlanetarySystemMenuForItem: (BrowserItem *) browseItem
target: (id) target
action: (SEL) action;
- (void) addAltSurfaceMenuWithNames: (NSArray *) surfaces
target: (id) target
action: (SEL) action;
@end