| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
- * details.
- */
- #import "ContextMenuHandlers.h"
- #import "MenuManager.h"
- @implementation NSObject (ContextMenuHandlers)
- + (void)ContextMenuHandlers_addViewSpecificStuffToMenu:(id)arg1 browserViewController:(id)arg2 context:(unsigned int)arg3 // 10.7 & 10.8
- {
- [self ContextMenuHandlers_addViewSpecificStuffToMenu:arg1 browserViewController:arg2 context:arg3];
- MenuManager* menuManager = [MenuManager sharedInstance];
- if (menuManager.menuItems.count > 0)
- {
- [menuManager addItemsToMenu:arg1 forFiles:menuManager.menuItems];
- [menuManager.menuItems removeAllObjects];
- }
- }
- + (void)ContextMenuHandlers_addViewSpecificStuffToMenu:(id)arg1 clickedView:(id)arg2 browserViewController:(id)arg3 context:(unsigned int)arg4 // 10.9
- {
- [self ContextMenuHandlers_addViewSpecificStuffToMenu:arg1 clickedView:arg2 browserViewController:arg3 context:arg4];
- MenuManager* menuManager = [MenuManager sharedInstance];
- if (menuManager.menuItems.count > 0)
- {
- [menuManager addItemsToMenu:arg1 forFiles:menuManager.menuItems];
- [menuManager.menuItems removeAllObjects];
- }
- }
- + (void)ContextMenuHandlers_handleContextMenuCommon:(unsigned int)arg1 nodes:(const struct TFENodeVector*)arg2 event:(id)arg3 view:(id)arg4 windowController:(id)arg5 addPlugIns:(BOOL)arg6 // 10.7
- {
- MenuManager* menuManager = [MenuManager sharedInstance];
- menuManager.menuItems = (NSMutableArray*)[menuManager pathsForNodes:arg2];
- [self ContextMenuHandlers_handleContextMenuCommon:arg1 nodes:arg2 event:arg3 view:arg4 windowController:arg5 addPlugIns:arg6];
- }
- + (void)ContextMenuHandlers_handleContextMenuCommon:(unsigned int)arg1 nodes:(const struct TFENodeVector*)arg2 event:(id)arg3 view:(id)arg4 browserController:(id)arg5 addPlugIns:(BOOL)arg6 // 10.8
- {
- MenuManager* menuManager = [MenuManager sharedInstance];
- menuManager.menuItems = (NSMutableArray*)[menuManager pathsForNodes:arg2];
- [self ContextMenuHandlers_handleContextMenuCommon:arg1 nodes:arg2 event:arg3 view:arg4 browserController:arg5 addPlugIns:arg6];
- }
- + (void)ContextMenuHandlers_handleContextMenuCommon:(unsigned int)arg1 nodes:(const struct TFENodeVector*)arg2 event:(id)arg3 clickedView:(id)arg4 browserViewController:(id)arg5 addPlugIns:(BOOL)arg6 // 10.9
- {
- MenuManager* menuManager = [MenuManager sharedInstance];
- menuManager.menuItems = (NSMutableArray*)[menuManager pathsForNodes:arg2];
- [self ContextMenuHandlers_handleContextMenuCommon:arg1 nodes:arg2 event:arg3 clickedView:arg4 browserViewController:arg5 addPlugIns:arg6];
- }
- - (void)ContextMenuHandlers_configureWithNodes:(const struct TFENodeVector*)arg1 windowController:(id)arg2 container:(BOOL)arg3 // 10.7
- {
- [self ContextMenuHandlers_configureWithNodes:arg1 windowController:arg2 container:arg3];
- TContextMenu* realSelf = (TContextMenu*)self;
- MenuManager* menuManager = [MenuManager sharedInstance];
- NSArray* selectedItems = [menuManager pathsForNodes:arg1];
- [menuManager addItemsToMenu:realSelf forFiles:selectedItems];
- }
- - (void)ContextMenuHandlers_configureWithNodes:(const struct TFENodeVector*)arg1 browserController:(id)arg2 container:(BOOL)arg3 // 10.8
- {
- [self ContextMenuHandlers_configureWithNodes:arg1 browserController:arg2 container:arg3];
- TContextMenu* realSelf = (TContextMenu*)self;
- MenuManager* menuManager = [MenuManager sharedInstance];
- NSArray* selectedItems = [menuManager pathsForNodes:arg1];
- [menuManager addItemsToMenu:realSelf forFiles:selectedItems];
- }
- - (void)ContextMenuHandlers_configureFromMenuNeedsUpdate:(id)arg1 clickedView:(id)arg2 container:(BOOL)arg3 event:(id)arg4 selectedNodes:(const struct TFENodeVector *)arg5 // 10.9
- {
- [self ContextMenuHandlers_configureFromMenuNeedsUpdate:arg1 clickedView:arg2 container:arg3 event:arg4 selectedNodes:arg5]; // 10.8
- TContextMenu* realSelf = (TContextMenu*)self;
- MenuManager* menuManager = [MenuManager sharedInstance];
- NSArray* selectedItems = [menuManager pathsForNodes:arg5];
- [menuManager addItemsToMenu:realSelf forFiles:selectedItems];
- }
- @end
|