📄 tablecontextmenumanager.java
字号:
/*
* File : TableContextMenuManager.java
* Created : 2004/May/16
*
* Copyright (C) 2004, 2005, 2006 Aelitis SAS, All rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* This program 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 General Public License for more details ( see the LICENSE file ).
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* AELITIS, SAS au capital de 46,603.30 euros,
* 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
*/
package org.gudy.azureus2.ui.swt.views.table.utils;
import java.util.*;
import org.gudy.azureus2.core3.util.AEMonitor;
import org.gudy.azureus2.core3.util.Debug;
import org.gudy.azureus2.plugins.ui.tables.*;
public class TableContextMenuManager {
private static TableContextMenuManager instance;
private static AEMonitor class_mon = new AEMonitor( "TableContextMenuManager" );
/* Holds all the TableContextMenu objects.
* key = TABLE_* type (see TableColumn)
* value = Map:
* key = context menu key
* value = TableContextMenu object
*/
private Map items;
private AEMonitor items_mon = new AEMonitor( "TableContextMenuManager:items" );
private TableContextMenuManager() {
items = new HashMap();
}
/** Retrieve the static TableContextMenuManager instance
* @return the static TableContextMenuManager instance
*/
public static TableContextMenuManager getInstance() {
try{
class_mon.enter();
if (instance == null)
instance = new TableContextMenuManager();
return instance;
}finally{
class_mon.exit();
}
}
public void addContextMenuItem(TableContextMenuItem item) {
try {
String name = item.getResourceKey();
String sTableID = item.getTableID();
try{
items_mon.enter();
Map mTypes = (Map)items.get(sTableID);
if (mTypes == null) {
// LinkedHashMap to preserve order
mTypes = new LinkedHashMap();
items.put(sTableID, mTypes);
}
mTypes.put(name, item);
}finally{
items_mon.exit();
}
} catch (Exception e) {
System.out.println("Error while adding Context Table Menu Item");
Debug.printStackTrace( e );
}
}
public TableContextMenuItem[] getAllAsArray(String sTableID) {
Map mTypes = (Map)items.get(sTableID);
if (mTypes != null) {
ArrayList l = new ArrayList();
l.addAll(mTypes.values());
// Add global table context menu items
mTypes = (Map)items.get(null);
if (mTypes != null)
l.addAll(mTypes.values());
return (TableContextMenuItem[])l.toArray(new TableContextMenuItem[l.size()]);
}
return new TableContextMenuItem[0];
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -