diff dwt/custom/ST.d @ 41:6337764516f1

Sync dwt/custom with dwt-linux (took copy of complete folder)
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:29:55 +0200
parents 380af2bdd8e5
children
line wrap: on
line diff
--- a/dwt/custom/ST.d	Tue Oct 07 14:41:31 2008 +0200
+++ b/dwt/custom/ST.d	Tue Oct 07 16:29:55 2008 +0200
@@ -1,5 +1,5 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 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
@@ -7,123 +7,127 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
+ * Port to the D programming language:
+ *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
-module dwt.custom;
+module dwt.custom.ST;
 
 
 /**
  * This class provides access to the public constants provided by <code>StyledText</code>.
+ *
+ * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
  */
 public class ST {
-     
+
     /*
      *  Navigation Key Actions. Key bindings for the actions are set
      *  by the StyledText widget.
-     */ 
-    public static final int LINE_UP = 16777217;             // binding = DWT.ARROW_UP
-    public static final int LINE_DOWN = 16777218;       // binding = DWT.ARROW_DOWN
-    public static final int LINE_START = 16777223;      // binding = DWT.HOME
-    public static final int LINE_END = 16777224;        // binding = DWT.END
-    public static final int COLUMN_PREVIOUS = 16777219;     // binding = DWT.ARROW_LEFT
-    public static final int COLUMN_NEXT = 16777220;         // binding = DWT.ARROW_RIGHT
-    public static final int PAGE_UP = 16777221;             // binding = DWT.PAGE_UP
-    public static final int PAGE_DOWN = 16777222;       // binding = DWT.PAGE_DOWN
-    public static final int WORD_PREVIOUS = 17039363;   // binding = DWT.MOD1 + DWT.ARROW_LEFT
-    public static final int WORD_NEXT = 17039364;       // binding = DWT.MOD1 + DWT.ARROW_RIGHT
-    public static final int TEXT_START = 17039367;      // binding = DWT.MOD1 + DWT.HOME
-    public static final int TEXT_END = 17039368;        // binding = DWT.MOD1 + DWT.END
-    public static final int WINDOW_START = 17039365;    // binding = DWT.MOD1 + DWT.PAGE_UP
-    public static final int WINDOW_END = 17039366;      // binding = DWT.MOD1 + DWT.PAGE_DOWN
-
-    /* 
-     * Selection Key Actions 
      */
-    public static final int SELECT_ALL = 262209;                // binding = DWT.MOD1 + 'A'
-    public static final int SELECT_LINE_UP = 16908289;          // binding = DWT.MOD2 + DWT.ARROW_UP
-    public static final int SELECT_LINE_DOWN = 16908290;        // binding = DWT.MOD2 + DWT.ARROW_DOWN
-    public static final int SELECT_LINE_START = 16908295;       // binding = DWT.MOD2 + DWT.HOME
-    public static final int SELECT_LINE_END = 16908296;             // binding = DWT.MOD2 + DWT.END
-    public static final int SELECT_COLUMN_PREVIOUS = 16908291;  // binding = DWT.MOD2 + DWT.ARROW_LEFT
-    public static final int SELECT_COLUMN_NEXT = 16908292;      // binding = DWT.MOD2 + DWT.ARROW_RIGHT
-    public static final int SELECT_PAGE_UP = 16908293;          // binding = DWT.MOD2 + DWT.PAGE_UP
-    public static final int SELECT_PAGE_DOWN = 16908294;        // binding = DWT.MOD2 + DWT.PAGE_DOWN
-    public static final int SELECT_WORD_PREVIOUS = 17170435;        // binding = DWT.MOD1 + DWT.MOD2 + DWT.ARROW_LEFT
-    public static final int SELECT_WORD_NEXT = 17170436;        // binding = DWT.MOD1 + DWT.MOD2 + DWT.ARROW_RIGHT
-    public static final int SELECT_TEXT_START = 17170439;       // binding = DWT.MOD1 + DWT.MOD2 + DWT.HOME
-    public static final int SELECT_TEXT_END = 17170440;             // binding = DWT.MOD1 + DWT.MOD2 + DWT.END
-    public static final int SELECT_WINDOW_START = 17170437;         // binding = DWT.MOD1 + DWT.MOD2 + DWT.PAGE_UP
-    public static final int SELECT_WINDOW_END = 17170438;       // binding = DWT.MOD1 + DWT.MOD2 + DWT.PAGE_DOWN
+    public static const int LINE_UP = 16777217;             // binding = DWT.ARROW_UP
+    public static const int LINE_DOWN = 16777218;       // binding = DWT.ARROW_DOWN
+    public static const int LINE_START = 16777223;      // binding = DWT.HOME
+    public static const int LINE_END = 16777224;        // binding = DWT.END
+    public static const int COLUMN_PREVIOUS = 16777219;     // binding = DWT.ARROW_LEFT
+    public static const int COLUMN_NEXT = 16777220;         // binding = DWT.ARROW_RIGHT
+    public static const int PAGE_UP = 16777221;             // binding = DWT.PAGE_UP
+    public static const int PAGE_DOWN = 16777222;       // binding = DWT.PAGE_DOWN
+    public static const int WORD_PREVIOUS = 17039363;   // binding = DWT.MOD1 + DWT.ARROW_LEFT
+    public static const int WORD_NEXT = 17039364;       // binding = DWT.MOD1 + DWT.ARROW_RIGHT
+    public static const int TEXT_START = 17039367;      // binding = DWT.MOD1 + DWT.HOME
+    public static const int TEXT_END = 17039368;        // binding = DWT.MOD1 + DWT.END
+    public static const int WINDOW_START = 17039365;    // binding = DWT.MOD1 + DWT.PAGE_UP
+    public static const int WINDOW_END = 17039366;      // binding = DWT.MOD1 + DWT.PAGE_DOWN
 
     /*
-     *  Modification Key Actions 
+     * Selection Key Actions
      */
-    public static final int CUT = 131199;           // binding = DWT.MOD2 + DWT.DEL
-    public static final int COPY = 17039369;        // binding = DWT.MOD1 + DWT.INSERT;
-    public static final int PASTE = 16908297;       // binding = DWT.MOD2 + DWT.INSERT ;
-    public static final int DELETE_PREVIOUS = '\b';     // binding = DWT.BS;
-    public static final int DELETE_NEXT = 0x7F;         // binding = DWT.DEL;
-    public static final int DELETE_WORD_PREVIOUS = 262152;  // binding = DWT.BS | DWT.MOD1;
-    public static final int DELETE_WORD_NEXT = 262271;  // binding = DWT.DEL | DWT.MOD1;
+    public static const int SELECT_ALL = 262209;                // binding = DWT.MOD1 + 'A'
+    public static const int SELECT_LINE_UP = 16908289;          // binding = DWT.MOD2 + DWT.ARROW_UP
+    public static const int SELECT_LINE_DOWN = 16908290;        // binding = DWT.MOD2 + DWT.ARROW_DOWN
+    public static const int SELECT_LINE_START = 16908295;       // binding = DWT.MOD2 + DWT.HOME
+    public static const int SELECT_LINE_END = 16908296;             // binding = DWT.MOD2 + DWT.END
+    public static const int SELECT_COLUMN_PREVIOUS = 16908291;  // binding = DWT.MOD2 + DWT.ARROW_LEFT
+    public static const int SELECT_COLUMN_NEXT = 16908292;      // binding = DWT.MOD2 + DWT.ARROW_RIGHT
+    public static const int SELECT_PAGE_UP = 16908293;          // binding = DWT.MOD2 + DWT.PAGE_UP
+    public static const int SELECT_PAGE_DOWN = 16908294;        // binding = DWT.MOD2 + DWT.PAGE_DOWN
+    public static const int SELECT_WORD_PREVIOUS = 17170435;        // binding = DWT.MOD1 + DWT.MOD2 + DWT.ARROW_LEFT
+    public static const int SELECT_WORD_NEXT = 17170436;        // binding = DWT.MOD1 + DWT.MOD2 + DWT.ARROW_RIGHT
+    public static const int SELECT_TEXT_START = 17170439;       // binding = DWT.MOD1 + DWT.MOD2 + DWT.HOME
+    public static const int SELECT_TEXT_END = 17170440;             // binding = DWT.MOD1 + DWT.MOD2 + DWT.END
+    public static const int SELECT_WINDOW_START = 17170437;         // binding = DWT.MOD1 + DWT.MOD2 + DWT.PAGE_UP
+    public static const int SELECT_WINDOW_END = 17170438;       // binding = DWT.MOD1 + DWT.MOD2 + DWT.PAGE_DOWN
 
-    /* 
-     * Miscellaneous Key Actions 
+    /*
+     *  Modification Key Actions
      */
-    public static final int TOGGLE_OVERWRITE = 16777225; // binding = DWT.INSERT;
-    
+    public static const int CUT = 131199;           // binding = DWT.MOD2 + DWT.DEL
+    public static const int COPY = 17039369;        // binding = DWT.MOD1 + DWT.INSERT;
+    public static const int PASTE = 16908297;       // binding = DWT.MOD2 + DWT.INSERT ;
+    public static const int DELETE_PREVIOUS = '\b';     // binding = DWT.BS;
+    public static const int DELETE_NEXT = 0x7F;         // binding = DWT.DEL;
+    public static const int DELETE_WORD_PREVIOUS = 262152;  // binding = DWT.BS | DWT.MOD1;
+    public static const int DELETE_WORD_NEXT = 262271;  // binding = DWT.DEL | DWT.MOD1;
+
+    /*
+     * Miscellaneous Key Actions
+     */
+    public static const int TOGGLE_OVERWRITE = 16777225; // binding = DWT.INSERT;
+
     /**
      *  Bullet style dot.
-     * 
+     *
      *  @see Bullet
-     *  
+     *
      *  @since 3.2
      */
-    public static final int BULLET_DOT = 1 << 0;
+    public static const int BULLET_DOT = 1 << 0;
 
     /**
      *  Bullet style number.
-     * 
+     *
      *  @see Bullet
-     *  
+     *
      *  @since 3.2
      */
-    public static final int BULLET_NUMBER = 1 << 1;
+    public static const int BULLET_NUMBER = 1 << 1;
 
     /**
      *  Bullet style lower case letter.
-     * 
+     *
      *  @see Bullet
-     *  
+     *
      *  @since 3.2
      */
-    public static final int BULLET_LETTER_LOWER = 1 << 2;
+    public static const int BULLET_LETTER_LOWER = 1 << 2;
 
     /**
      *  Bullet style upper case letter.
-     * 
+     *
      *  @see Bullet
-     *  
+     *
      *  @since 3.2
      */
-    public static final int BULLET_LETTER_UPPER = 1 << 3;
+    public static const int BULLET_LETTER_UPPER = 1 << 3;
 
     /**
      *  Bullet style text.
-     * 
+     *
      *  @see Bullet
-     *  
+     *
      *  @since 3.2
      */
-    public static final int BULLET_TEXT = 1 << 4;
+    public static const int BULLET_TEXT = 1 << 4;
 
     /**
      *  Bullet style custom draw.
-     *  
+     *
      *  @see StyledText#addPaintObjectListener(PaintObjectListener)
      *  @see StyledText#removePaintObjectListener(PaintObjectListener)
-     *  @see Bullet 
-     *  
+     *  @see Bullet
+     *
      *  @since 3.2
      */
-    public static final int BULLET_CUSTOM = 1 << 5;
+    public static const int BULLET_CUSTOM = 1 << 5;
 
 }