summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js77
1 files changed, 0 insertions, 77 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js
deleted file mode 100644
index 218c988c83..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/manager/object/PopupManager.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/* ************************************************************************
-
- qooxdoo - the new era of web development
-
- http://qooxdoo.org
-
- Copyright:
- 2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org
-
- License:
- LGPL 2.1: http://www.gnu.org/licenses/lgpl.html
-
- Authors:
- * Sebastian Werner (wpbasti)
- * Andreas Ecker (ecker)
-
-************************************************************************ */
-
-/* ************************************************************************
-
-#module(ui_popup)
-
-************************************************************************ */
-
-/*!
- This singleton is used to manager multiple instances of popups and their state.
-*/
-qx.OO.defineClass("qx.manager.object.PopupManager", qx.manager.object.ObjectManager,
-function() {
- qx.manager.object.ObjectManager.call(this);
-});
-
-
-
-/*
----------------------------------------------------------------------------
- METHODS
----------------------------------------------------------------------------
-*/
-
-qx.Proto.update = function(vTarget)
-{
- // be sure that target is correctly set (needed for contains() later)
- if (!(vTarget instanceof qx.ui.core.Widget)) {
- vTarget = null;
- }
-
- var vPopup, vHashCode;
- var vAll = this.getAll();
-
- for (vHashCode in vAll)
- {
- vPopup = vAll[vHashCode];
-
- if(!vPopup.getAutoHide() || vTarget == vPopup || vPopup.contains(vTarget)) {
- continue;
- }
-
- vPopup.hide();
- }
-}
-
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- DEFER SINGLETON INSTANCE
----------------------------------------------------------------------------
-*/
-
-/**
- * Singleton Instance Getter
- */
-qx.Class.getInstance = qx.util.Return.returnInstance;