diff org.eclipse.jface/src/org/eclipse/jface/action/SubCoolBarManager.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.eclipse.jface/src/org/eclipse/jface/action/SubCoolBarManager.d	Sat Mar 14 18:23:29 2009 +0100
@@ -0,0 +1,114 @@
+/*******************************************************************************
+ * Copyright (c) 2003, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
+ *******************************************************************************/
+module org.eclipse.jface.action.SubCoolBarManager;
+
+import org.eclipse.jface.action.ICoolBarManager;
+import org.eclipse.jface.action.SubContributionManager;
+import org.eclipse.jface.action.IToolBarManager;
+import org.eclipse.jface.action.IMenuManager;
+import org.eclipse.jface.action.ToolBarContributionItem;
+
+import org.eclipse.core.runtime.Assert;
+
+import java.lang.all;
+import java.util.Set;
+
+/**
+ * A <code>SubCoolBarManager</code> monitors the additional and removal of
+ * items from a parent manager so that visibility of the entire set can be changed as a
+ * unit.
+ *
+ * @since 3.0
+ */
+public class SubCoolBarManager : SubContributionManager,
+        ICoolBarManager {
+    alias SubContributionManager.add add;
+
+    /**
+     * Constructs a new manager.
+     *
+     * @param mgr the parent manager.  All contributions made to the
+     *      <code>SubCoolBarManager</code> are forwarded and appear in the
+     *      parent manager.
+     */
+    public this(ICoolBarManager mgr) {
+        super(mgr);
+        Assert.isNotNull(cast(Object)mgr);
+    }
+
+    /* (non-Javadoc)
+     * @see org.eclipse.jface.action.ICoolBarManager#add(org.eclipse.jface.action.IToolBarManager)
+     */
+    public void add(IToolBarManager toolBarManager) {
+        Assert.isNotNull(cast(Object)toolBarManager);
+        super.add(new ToolBarContributionItem(toolBarManager));
+    }
+
+    /* (non-Javadoc)
+     * @see org.eclipse.jface.action.ICoolBarManager#getStyle()
+     */
+    public int getStyle() {
+        // It is okay to cast down since we only accept coolBarManager objects in the
+        // constructor
+        return (cast(ICoolBarManager) getParent()).getStyle();
+    }
+
+    /**
+     * Returns the parent cool bar manager that this sub-manager contributes to.
+     *
+     * @return the parent cool bar manager
+     */
+    protected final ICoolBarManager getParentCoolBarManager() {
+        // Cast is ok because that's the only
+        // thing we accept in the construtor.
+        return cast(ICoolBarManager) getParent();
+    }
+
+    /* (non-Javadoc)
+     * @see org.eclipse.jface.action.ICoolBarManager#isLayoutLocked()
+     */
+    public bool getLockLayout() {
+        return getParentCoolBarManager().getLockLayout();
+    }
+
+    /* (non-Javadoc)
+     * @see org.eclipse.jface.action.ICoolBarManager#lockLayout(bool)
+     */
+    public void setLockLayout(bool value) {
+    }
+
+    /* (non-Javadoc)
+     * SubCoolBarManagers do not have control of the global context menu.
+     */
+    public IMenuManager getContextMenuManager() {
+        return null;
+    }
+
+    /* (non-Javadoc)
+     * In SubCoolBarManager we do nothing.
+     */
+    public void setContextMenuManager(IMenuManager menuManager) {
+        // do nothing
+    }
+
+    /* (non-Javadoc)
+     * @see org.eclipse.jface.action.IContributionManager#update(bool)
+     */
+    public void update(bool force) {
+        // This method is not governed by visibility.  The client may
+        // call <code>setVisible</code> and then force an update.  At that
+        // point we need to update the parent.
+        getParentCoolBarManager().update(force);
+    }
+
+}