summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js')
-rw-r--r--webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js111
1 files changed, 0 insertions, 111 deletions
diff --git a/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js b/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js
deleted file mode 100644
index ee34ddfe25..0000000000
--- a/webapps/qooxdoo-0.6.5-sdk/frontend/framework/source/class/qx/manager/object/MenuManager.js
+++ /dev/null
@@ -1,111 +0,0 @@
-/* ************************************************************************
-
- qooxdoo - the new era of web development
-
- http://qooxdoo.org
-
- Copyright:
- 2004-2007 1&1 Internet AG, Germany, http://www.1and1.org
-
- License:
- LGPL: http://www.gnu.org/licenses/lgpl.html
- EPL: http://www.eclipse.org/org/documents/epl-v10.php
- See the LICENSE file in the project's top-level directory for details.
-
- Authors:
- * Sebastian Werner (wpbasti)
- * Andreas Ecker (ecker)
-
-************************************************************************ */
-
-/* ************************************************************************
-
-#module(ui_menu)
-
-************************************************************************ */
-
-/*!
- This singleton manages multiple instances of qx.ui.menu.Menu and their state.
-*/
-qx.OO.defineClass("qx.manager.object.MenuManager", qx.manager.object.ObjectManager,
-function(){
- qx.manager.object.ObjectManager.call(this);
-});
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- METHODS
----------------------------------------------------------------------------
-*/
-
-qx.Proto.update = function(vTarget, vEventName)
-{
- var vMenu, vHashCode;
- var vAll = this.getAll();
-
- for (vHashCode in vAll)
- {
- vMenu = vAll[vHashCode];
-
- if(!vMenu.getAutoHide()) {
- continue;
- }
-
- if (vTarget && vTarget.getMenu && vTarget.getMenu()) {
- continue;
- }
-
- // Hide on global events (mouseup, window focus, window blur, ...)
- if (!vTarget)
- {
- vMenu.hide();
- continue;
- }
-
- // Hide only if the target is not a button inside this
- // or any sub menu and is not the opener
- var isMouseDown = vEventName == "mousedown";
- var isMouseUp = vEventName == "mouseup";
-
- //Close menu if the target is not the opener button...
- if (vMenu.getOpener() !== vTarget
-
- // and
- && ( vTarget &&
- // the event is a mouse down on a non-child of the menu
- (!vMenu.isSubElement(vTarget) && isMouseDown)
-
- // or the event is a mouse up on a child button of the menu
- || (vMenu.isSubElement(vTarget, true) && isMouseUp)
-
- // or the event is a key (esc) event
- || (!isMouseDown && !isMouseUp )))
-
-
- {
- vMenu.hide();
- continue;
- }
- }
-}
-
-
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- DEFER SINGLETON INSTANCE
----------------------------------------------------------------------------
-*/
-
-/**
- * Singleton Instance Getter
- */
-qx.Class.getInstance = qx.lang.Function.returnInstance;