本文整理汇总了Java中logbook.gui.listener.TableKeyShortcutAdapter类的典型用法代码示例。如果您正苦于以下问题:Java TableKeyShortcutAdapter类的具体用法?Java TableKeyShortcutAdapter怎么用?Java TableKeyShortcutAdapter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
TableKeyShortcutAdapter类属于logbook.gui.listener包,在下文中一共展示了TableKeyShortcutAdapter类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addTable
import logbook.gui.listener.TableKeyShortcutAdapter; //导入依赖的package包/类
/**
* テーブルを追加します
*
* @param parent テーブルの親コンポジット
* @return TableWrapper
*/
protected TableWrapper<T> addTable(Composite parent) {
// テーブル
Table table = new Table(parent, SWT.FULL_SELECTION | SWT.MULTI);
table.setLinesVisible(true);
table.setHeaderVisible(true);
table.addKeyListener(new TableKeyShortcutAdapter(table));
// テーブル右クリックメニュー
Menu tablemenu = new Menu(table);
table.setMenu(tablemenu);
MenuItem sendclipbord = new MenuItem(tablemenu, SWT.NONE);
sendclipbord.addSelectionListener(new TableToClipboardAdapter(table));
sendclipbord.setText("クリップボードにコピー(&C)");
MenuItem reloadtable = new MenuItem(tablemenu, SWT.NONE);
reloadtable.setText("再読み込み(&R)");
reloadtable.addSelectionListener(new TableReloadAdapter());
TableWrapper<T> wrapper = new TableWrapper<T>(table, this.clazz)
.setDialogClass(this.getClass())
.setDecorator(TableItemDecorator.stripe(SWTResourceManager.getColor(AppConstants.ROW_BACKGROUND)));
this.tables.add(wrapper);
return wrapper;
}