diff org.eclipse.jface/src/org/eclipse/jface/bindings/keys/formatting/FormalKeyFormatter.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/bindings/keys/formatting/FormalKeyFormatter.d	Sat Mar 14 18:23:29 2009 +0100
@@ -0,0 +1,89 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005 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.bindings.keys.formatting.FormalKeyFormatter;
+
+import org.eclipse.jface.bindings.keys.formatting.AbstractKeyFormatter;
+
+import org.eclipse.jface.bindings.keys.IKeyLookup;
+import org.eclipse.jface.bindings.keys.KeyLookupFactory;
+import org.eclipse.jface.bindings.keys.KeySequence;
+import org.eclipse.jface.bindings.keys.KeyStroke;
+
+import java.lang.all;
+
+/**
+ * <p>
+ * Formats the keys in the internal key sequence grammar. This is used for
+ * persistence, and is not really intended for display to the user.
+ * </p>
+ *
+ * @since 3.1
+ */
+public final class FormalKeyFormatter : AbstractKeyFormatter {
+    alias AbstractKeyFormatter.format format;
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see org.eclipse.jface.bindings.keys.KeyFormatter#format(org.eclipse.ui.keys.KeySequence)
+     */
+    public override String format(int key) {
+        IKeyLookup lookup = KeyLookupFactory.getDefault();
+        return lookup.formalNameLookup(key);
+    }
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see org.eclipse.jface.bindings.keys.AbstractKeyFormatter#getKeyDelimiter()
+     */
+    protected override String getKeyDelimiter() {
+        return KeyStroke.KEY_DELIMITER;
+    }
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see org.eclipse.jface.bindings.keys.AbstractKeyFormatter#getKeyStrokeDelimiter()
+     */
+    protected override String getKeyStrokeDelimiter() {
+        return KeySequence.KEY_STROKE_DELIMITER;
+    }
+
+    /*
+     * (non-Javadoc)
+     *
+     * @see org.eclipse.jface.bindings.keys.AbstractKeyFormatter#sortModifierKeys(int)
+     */
+    protected override int[] sortModifierKeys(int modifierKeys) {
+        IKeyLookup lookup = KeyLookupFactory.getDefault();
+        int[] sortedKeys = new int[4];
+        int index = 0;
+
+        if ((modifierKeys & lookup.getAlt()) !is 0) {
+            sortedKeys[index++] = lookup.getAlt();
+        }
+        if ((modifierKeys & lookup.getCommand()) !is 0) {
+            sortedKeys[index++] = lookup.getCommand();
+        }
+        if ((modifierKeys & lookup.getCtrl()) !is 0) {
+            sortedKeys[index++] = lookup.getCtrl();
+        }
+        if ((modifierKeys & lookup.getShift()) !is 0) {
+            sortedKeys[index++] = lookup.getShift();
+        }
+
+        return sortedKeys;
+    }
+}