⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resource.java

📁 一个类似QQ的在线通讯聊天软件原码,适合初学者参考学习。
💻 JAVA
字号:
package openicq.data;/** * The <code>Resource</code> class holds information about the resources of * this application. * @author Hansgeorg Schwibbe * @copyright 2004 */public class Resource{  /**   * The path to the configuration file   */  public static final String CONFIG_FILE = "./OpenICQ.ini";  /**   * The path to the folder where the language classes are stored.   */  public static final String FOLDER_NAME_LANGUAGE_CLASSES = "./bin/language";  /**   * The path to the folder where the images for the languages are stored.   */  public static final String FOLDER_NAME_LANGUAGE_ICONS = "./res/images/language";  /**   * The paths to the images for the details.   */  public static final String[] ICON_SOURCE_DETAILS = new String[]  {   "./res/images/details/overview.png",   "./res/images/details/icqdetails.png",   "./res/images/details/private.png",   "./res/images/details/work.png",   "./res/images/details/personal.png",   "./res/images/details/interests.png",   "./res/images/details/info.png",   "./res/images/details/phone.png"  };  /**   * The paths to the images for the login frame.   */  public static final String[] ICON_SOURCE_LOGIN = new String[]  {   "./res/images/login/login1.png",   "./res/images/login/login2.png",   "./res/images/login/login3.png",   "./res/images/login/login4.png",   "./res/images/login/login5.png",   "./res/images/login/login6.png",   "./res/images/login/login7.png",   "./res/images/login/login8.png"  };  /**   * The path to the logo.   */  public static final String ICON_SOURCE_LOGO = "./res/images/logo.gif";  /**   * The paths to the images for the menue items.   */  public static final String[] ICON_SOURCE_MENU_ITEMS = new String[]  {   "./res/images/menu/dummy.png",   "./res/images/menu/finduser.png",   "./res/images/menu/details.png",   "./res/images/menu/settings.png",   "./res/images/menu/help.png"  };  /**   * The paths to the images for the popup menu.   */  public static final String[] ICON_SOURCE_POPUPMENU_ITEMS = new String[]  {   "./res/images/type/message.png",   "./res/images/details/overview.png",   "./res/images/popup/adduser.png",   "./res/images/popup/rename.png",   "./res/images/popup/delete.png"  };  /**   * The paths to the images for the settings.   */  public static final String[] ICON_SOURCE_SETTINGS = new String[]  {   "./res/images/settings/general.png",   "./res/images/settings/login.png",   "./res/images/settings/language.png",   "./res/images/settings/sounds.png",   "./res/images/settings/visibility.png"  };  /**   * The paths to the sound files.   */  public static final String[] ICON_SOURCE_SOUNDS = new String[]  {   "./res/sounds/startup.wav",   "./res/sounds/incoming_user.wav",   "./res/sounds/notify.wav"  };  /**   * The paths to the images for the status.   */  public static final String[] ICON_SOURCE_STATUS = new String[]  {   "./res/images/status/online.png",   "./res/images/status/free_for_chat.png",   "./res/images/status/away.png",   "./res/images/status/na.png",   "./res/images/status/occupied.png",   "./res/images/status/dnd.png",   "./res/images/status/invisible.png",   "./res/images/status/offline.png",   "./res/images/status/unknown.png"  };  /**   * The paths to the tray icons.   */  public static final String[] ICON_SOURCE_TRAY = new String[]  {   "./res/images/tray/online.ico",   "./res/images/tray/free_for_chat.ico",   "./res/images/tray/away.ico",   "./res/images/tray/na.ico",   "./res/images/tray/occupied.ico",   "./res/images/tray/dnd.ico",   "./res/images/tray/invisible.ico",   "./res/images/tray/offline.ico",   "./res/images/tray/unknown.ico",   "./res/images/tray/dummy.ico",   "./res/images/tray/event.ico"  };  /**   * The paths to the images for the chat.   */  public static final String[] ICON_SOURCE_TYPES = new String[]  {   "./res/images/type/history.png",   "./res/images/type/message.png",   "./res/images/type/dummy.png"  };  /**   * The paths to the images for the visibility panel.   */  public static final String[] VISIBILITY_IMG_SRC = new String[]  {   "./res/images/visibility/contacts.png",   "./res/images/visibility/visible.png",   "./res/images/visibility/standard.png",   "./res/images/visibility/invisible.png",   "./res/images/visibility/ignore.png"  };}

⌨️ 快捷键说明

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