Package jfix.zk

Source Code of jfix.zk.Window

/*
    Copyright (C) 2010 maik.jablonski@gmail.com

    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 3 of the License, or
    (at your option) any later version.

    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.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package jfix.zk;

import org.zkoss.zk.ui.event.Event;
import org.zkoss.zk.ui.event.EventListener;
import org.zkoss.zk.ui.event.Events;

public class Window extends org.zkoss.zul.Window {

  public Window() {
    this("?", true);
  }

  public Window(String title) {
    this(title, true);
  }

  public Window(String title, boolean closable) {
    this(title, "normal", closable);
  }

  public Window(String title, String border, boolean closable) {
    super(title, border, closable);
    doOverlapped();
    setPosition("none");
    setWidth("70%");
    setLeft("15%");
    setTop("2%");   
  }

  /**
   * Closes the window by detaching it from parent.
   */
  public void close() {
    setParent(null);
  }

  public void addCloseListener(final ActionListener actionListener) {
    addEventListener(Events.ON_CLOSE, new EventListener() {
      public void onEvent(Event e) throws Exception {
        actionListener.actionPerformed(e);
      }
    });
  }

  public void setTitle(String title) {
    title = (title == null) ? "?" : title.trim().replace("null", "?");
    super.setTitle("".equals(title) ? "..." : title);
  }

  public void setTitle(Object obj) {
    if (obj == null) {
      setTitle("...");
    } else {
      String title = obj.toString();
      if (title == null) {
        setTitle("...");
      } else {
        setTitle(title);
      }
    }
  }

  public void doModal() {
    doHighlighted();
  }
}
TOP

Related Classes of jfix.zk.Window

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.