/** * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.webui.core; import org.exoplatform.commons.serialization.api.annotations.Serialized; import org.exoplatform.webui.application.WebuiRequestContext; import org.exoplatform.webui.config.annotation.ComponentConfig; import org.exoplatform.webui.config.annotation.EventConfig; import org.exoplatform.webui.event.Event; import org.exoplatform.webui.event.EventListener; /** * Created by The eXo Platform SARL Author : Tran The Trong trong.tran@exoplatform.com * * @version: $Id$ Aug 11, 2006 * * A component that creates an empty popup window */ @ComponentConfig(template = "system:/groovy/webui/core/UIPopupWindow.gtmpl", events = @EventConfig(listeners = UIPopupWindow.CloseActionListener.class, name = "ClosePopup")) @Serialized public class UIPopupWindow extends UIComponentDecorator { /** * The width of the window */ private int width_ = -1; /** * The height of the window */ private int height_ = -1; /** * Whether to show the close button at the bottom of the window */ private boolean showCloseButton = true; /** * The visibility status of the window */ private boolean isShow = false; /** * Whether this window is resizable */ private boolean isResizable = false; protected String closeEvent_ = "ClosePopup"; private boolean isShowMask_ = false; public boolean isShowMask() { return isShowMask_; } public void setShowMask(boolean isShowMask) { isShowMask_ = isShowMask; } public int getWindowWidth() { return width_; } public int getWindowHeight() { return height_; } public void setWindowSize(int w, int h) { width_ = w; height_ = h; } public boolean isResizable() { return isResizable; } public void setResizable(boolean isResizable) { this.isResizable = isResizable; } public boolean isShow() { return isShow; } public void setShow(boolean isShow) { this.isShow = isShow; } public static class CloseActionListener extends EventListener<UIPopupWindow> { public void execute(Event<UIPopupWindow> event) throws Exception { UIPopupWindow uiPopupWindow = event.getSource(); if (!uiPopupWindow.isShow()) return; uiPopupWindow.setShow(false); WebuiRequestContext context = event.getRequestContext(); context.addUIComponentToUpdateByAjax(uiPopupWindow); } } public boolean isShowCloseButton() { return showCloseButton; } public void setShowCloseButton(boolean showCloseButton) { this.showCloseButton = showCloseButton; } public String getCloseEvent() { return closeEvent_; } public void setCloseEvent(String closeEvent) { this.closeEvent_ = closeEvent; } }