multiwindowbackable.java

来自「ErGo是一个很早的Java通用围棋服务器(IGS/NNGS)客户端程序。有全部」· Java 代码 · 共 28 行

JAVA
28
字号
package ergo.ui;

// $Id: MultiWindowBackable.java,v 1.2 1999/08/13 01:20:09 sigue Exp $

/*
 *  Copyright (C) 1999  Carl L. Gay and Antranig M. Basman.
 *  See the file copyright.txt, distributed with this software,
 *  for further information.
 */

import java.awt.Event;
import java.awt.Frame;
import java.awt.MenuShortcut;

public interface MultiWindowBackable {
  boolean actionOn (Event e, Object arg); // duplicated. Cunning!
  String windowName ();
  String[] sortMethods ();	// itemise available sorting methods, for menu
  void setSort (int i);		// set the current sorting method.
  // these last two for WindowsMenuCommand reflection;
  void winDestroyed ();
  String menuString ();
  MenuShortcut menuShortcut ();
  int menuPriority ();
  void menuSelect (Frame f);
  Class appliesTo ();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?