/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * 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 2 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.frontend.client.widget.security; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.HasAlignment; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.Image; import com.google.gwt.user.client.ui.PopupPanel; import com.openkm.frontend.client.Main; import com.openkm.frontend.client.util.OKMBundleResources; /** * Status * * @author jllort * */ public class Status extends PopupPanel { private HorizontalPanel hPanel; private HTML msg; private HTML space; private Image image; private boolean flag_update = false; /** * Status */ public Status() { super(false,true); hPanel = new HorizontalPanel(); image = new Image(OKMBundleResources.INSTANCE.indicator()); msg = new HTML(""); space = new HTML(""); hPanel.add(image); hPanel.add(msg); hPanel.add(space); hPanel.setCellVerticalAlignment(image, HasAlignment.ALIGN_MIDDLE); hPanel.setCellVerticalAlignment(msg, HasAlignment.ALIGN_MIDDLE); hPanel.setCellHorizontalAlignment(image, HasAlignment.ALIGN_CENTER); hPanel.setCellWidth(image, "30px"); hPanel.setCellWidth(space, "7px"); hPanel.setHeight("25px"); msg.setStyleName("okm-NoWrap"); super.hide(); setWidget(hPanel); } /** * Refresh */ public void refresh() { if (flag_update) { int left = ((Main.get().securityPopup.getOffsetWidth()-200)/2) + Main.get().securityPopup.getAbsoluteLeft(); int top = ((Main.get().securityPopup.getOffsetHeight()-40)/2) + Main.get().securityPopup.getAbsoluteTop(); setPopupPosition(left,top); show(); } else { hide(); } } /** * Sets update flag */ public void setFlag_update() { msg.setHTML(Main.i18n("security.status.updating")); flag_update = true; refresh(); } /** * Unset update flag */ public void unsetFlag_update() { flag_update = false; refresh(); } }