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

📄 mail.java

📁 ajax例子,Google Web Toolkit 1.0.21
💻 JAVA
字号:
/* * Copyright 2006 Google Inc. *  * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *  * http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */package com.google.gwt.sample.mail.client;import com.google.gwt.core.client.EntryPoint;import com.google.gwt.user.client.Window;import com.google.gwt.user.client.WindowResizeListener;import com.google.gwt.user.client.ui.DockPanel;import com.google.gwt.user.client.ui.RootPanel;import com.google.gwt.user.client.ui.VerticalPanel;/** * This application demonstrates how to construct a relatively complex user * interface, similar to many common email readers. It has no back-end, * populating its components with hard-coded data. */public class Mail implements EntryPoint, WindowResizeListener {  private static Mail singleton;  /**   * Gets the singleton Mail instance.   */  public static Mail get() {    return singleton;  }  private TopPanel topPanel = new TopPanel();  private VerticalPanel rightPanel = new VerticalPanel();  private MailList mailList;  private MailDetail mailDetail = new MailDetail();  private Shortcuts shortcuts = new Shortcuts();  /**   * This method constructs the application user interface by instantiating   * controls and hooking up event listeners.   */  public void onModuleLoad() {    singleton = this;    topPanel.setWidth("100%");    // MailList uses Mail.get() in its constructor, so initialize it after    // 'singleton'.    mailList = new MailList();    mailList.setWidth("100%");    // Create the right panel, containing the email list & details.    rightPanel.add(mailList);    rightPanel.add(mailDetail);    mailList.setWidth("100%");    mailDetail.setWidth("100%");    // Create a dock panel that will contain the menu bar at the top,    // the shortcuts to the left, and the mail list & details taking the rest.    DockPanel outer = new DockPanel();    outer.add(topPanel, DockPanel.NORTH);    outer.add(shortcuts, DockPanel.WEST);    outer.add(rightPanel, DockPanel.CENTER);    outer.setWidth("100%");    outer.setSpacing(4);    outer.setCellWidth(rightPanel, "100%");    // Hook the window resize event, so that we can adjust the UI.    Window.addWindowResizeListener(this);    // Get rid of scrollbars, and clear out the window's built-in margin,    // because we want to take advantage of the entire client area.    Window.enableScrolling(false);    Window.setMargin("0px");    // Finally, add the outer panel to the RootPanel, so that it will be    // displayed.    RootPanel.get().add(outer);    // Call the window resized handler to get the initial sizes setup.    onWindowResized(Window.getClientWidth(), Window.getClientHeight());  }  public void onWindowResized(int width, int height) {    // Adjust the shortcut panel and detail area to take up the available room    // in the window.    int shortcutHeight = height - shortcuts.getAbsoluteTop() - 8;    if (shortcutHeight < 1)      shortcutHeight = 1;    shortcuts.setHeight("" + shortcutHeight);    // Give the mail detail widget a chance to resize itself as well.    mailDetail.adjustSize(width, height);  }  /**   * Displays the specified item.   *    * @param item   */  public void displayItem(MailItem item) {    mailDetail.setItem(item);  }}

⌨️ 快捷键说明

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