* Dennis Hayes <dennish@raytek.com>
authorDennis Hayes <dennis@mono-cvs.ximian.com>
Mon, 6 May 2002 22:22:16 +0000 (22:22 -0000)
committerDennis Hayes <dennis@mono-cvs.ximian.com>
Mon, 6 May 2002 22:22:16 +0000 (22:22 -0000)
* Added enums
*  GridItemType.cs
*  HelpNavigator.cs
*  HorizontalAlignment.cs
*  ImeMode.cs
*  ItemActivation.cs
*  ItemBoundsPortion.cs
*  Keys.cs
* All correct execpt for Keys.cs which is missing a half dozen
* duplicate entries that need correcting.

svn path=/trunk/mcs/; revision=4351

mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/System.Windows.Forms/System.Windows.Forms/GridItemType.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/HelpNavigator.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/HorizontalAlignment.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/ImeMode.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/ItemActivation.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/ItemBoundsPortion.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/System.Windows.Forms/Keys.cs [new file with mode: 0644]

index 8cc6d3e684bb98cfced2af1820bfdaf03b4fe437..c91483dc5380ece881df13e459095e914d49bc56 100644 (file)
@@ -1,37 +1,49 @@
-2002-04-10  Duncan Mak  <duncan@ximian.com>
-
-       * CaptionButton.cs:
-       * CharacterCasing.cs: 
-       * CheckState.cs: 
-       * DataGridParentRowsLabelStyle.cs: 
-       * DialogResult.cs: 
-       * DockStyle.cs: 
-       * DragAction.cs: 
-       * DragDropEffects.cs: 
-       * DrawItemState.cs: 
-       * DrawMode.cs: 
-       * ErrorBlinkStyle.cs: 
-       * ErrorIconAlignment.cs: 
-       * FlatStyle.cs: 
-       * FormBorderStyle.cs: 
-       * FormStartPosition.cs: 
-       * FormWindowState.cs: 
-       * FrameStyle.cs: Fixed enum layouts with EnumCheck.
-
-2002-4-23 Dennis Hayes <dennish@raytek.com>
-
-       * AccessibleNavigation.cs :added to cvs with bad enum values, I will correct.
-       * AccessibleSelection.cs :added with good enum values.
-       * ContentsResizedEventHandler.cs :Added delagate
-       * MainMenu.cs
-       * AccessibleObject.cs
-       * MeasureItemEventArgs :added stubbed classes. Commented out.
-       * IButtonControl.cs : Added interface.
-
-2002-4-23 Dennis Hayes <dennish@raytek.com>
-* added stubbed and commented out classes from F to G *
-
-2002-05-02 Daniel Carrera (dcarrera@math.utoronto.ca)
-* small update to classes [F-H]*
-* added stubbed and commented out classes for [I-L]*
-* added stubbed and commented out classes for R*
+2002-04-10  Duncan Mak  <duncan@ximian.com>\r
+\r
+       * CaptionButton.cs:\r
+       * CharacterCasing.cs: \r
+       * CheckState.cs: \r
+       * DataGridParentRowsLabelStyle.cs: \r
+       * DialogResult.cs: \r
+       * DockStyle.cs: \r
+       * DragAction.cs: \r
+       * DragDropEffects.cs: \r
+       * DrawItemState.cs: \r
+       * DrawMode.cs: \r
+       * ErrorBlinkStyle.cs: \r
+       * ErrorIconAlignment.cs: \r
+       * FlatStyle.cs: \r
+       * FormBorderStyle.cs: \r
+       * FormStartPosition.cs: \r
+       * FormWindowState.cs: \r
+       * FrameStyle.cs: Fixed enum layouts with EnumCheck.\r
+\r
+2002-4-23 Dennis Hayes <dennish@raytek.com>\r
+\r
+       * AccessibleNavigation.cs :added to cvs with bad enum values, I will correct.\r
+       * AccessibleSelection.cs :added with good enum values.\r
+       * ContentsResizedEventHandler.cs :Added delagate\r
+       * MainMenu.cs\r
+       * AccessibleObject.cs\r
+       * MeasureItemEventArgs :added stubbed classes. Commented out.\r
+       * IButtonControl.cs : Added interface.\r
+\r
+2002-4-23 Dennis Hayes <dennish@raytek.com>\r
+* added stubbed and commented out classes from F to G *\r
+\r
+2002-05-02 Daniel Carrera (dcarrera@math.utoronto.ca)\r
+* small update to classes [F-H]*\r
+* added stubbed and commented out classes for [I-L]*\r
+* added stubbed and commented out classes for R*\r
+\r
+* 5-5-2002 Dennis Hayes <dennish@raytek.com>\r
+* Added enums\r
+*      GridItemType.cs\r
+*      HelpNavigator.cs\r
+*      HorizontalAlignment.cs\r
+*      ImeMode.cs\r
+*      ItemActivation.cs\r
+*      ItemBoundsPortion.cs\r
+*      Keys.cs\r
+* All correct execpt for Keys.cs which is missing a half dozen\r
+* duplicate entries that need correcting.\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/GridItemType.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/GridItemType.cs
new file mode 100644 (file)
index 0000000..3946e0d
--- /dev/null
@@ -0,0 +1,21 @@
+//\r
+// System.Windows.Forms.GridItemType.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum GridItemType {\r
+               ArrayValue = 2,\r
+               Category = 1,\r
+               Property = 0,\r
+               Root = 3\r
+       }\r
+}\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/HelpNavigator.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/HelpNavigator.cs
new file mode 100644 (file)
index 0000000..fb6d104
--- /dev/null
@@ -0,0 +1,23 @@
+//\r
+// System.Windows.Forms.HelpNavigator.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum HelpNavigator {\r
+               AssociateIndex = -2147483643,\r
+               Find = -2147483644,\r
+               Index = -2147483645,\r
+               KeywordIndex = -2147483642,\r
+               TableOfContents = -2147483646,\r
+               Topic = -2147483647\r
+       }\r
+}\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/HorizontalAlignment.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/HorizontalAlignment.cs
new file mode 100644 (file)
index 0000000..0430f0a
--- /dev/null
@@ -0,0 +1,20 @@
+//\r
+// System.Windows.Forms.HorizontalAlignment.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum HorizontalAlignment {\r
+               Center = 2,\r
+               Left = 0,\r
+               Right = 1\r
+       }\r
+}\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ImeMode.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ImeMode.cs
new file mode 100644 (file)
index 0000000..bd34afa
--- /dev/null
@@ -0,0 +1,29 @@
+//\r
+// System.Windows.Forms.ImeMode.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum ImeMode {\r
+               Alpha = 8,\r
+               AlphaFull = 7,\r
+               Disable = 3,\r
+               Hangul = 10,\r
+               HangulFull = 9,\r
+               Hiragana = 4,\r
+               Inherit = -1,\r
+               Katakana = 5,\r
+               KatakanaHalf = 6,\r
+               NoControl = 0,\r
+               Off = 2,\r
+               On = 1\r
+       }\r
+}\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ItemActivation.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ItemActivation.cs
new file mode 100644 (file)
index 0000000..8d2b04f
--- /dev/null
@@ -0,0 +1,20 @@
+//\r
+// System.Windows.Forms.ItemActivation.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum ItemActivation {\r
+               OneClick = 1,\r
+               Standard = 0,\r
+               TwoClick = 2\r
+       }\r
+}
\ No newline at end of file
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ItemBoundsPortion.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ItemBoundsPortion.cs
new file mode 100644 (file)
index 0000000..8e9de3f
--- /dev/null
@@ -0,0 +1,21 @@
+//\r
+// System.Windows.Forms.ItemBoundsPortion.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       /// </summary>\r
+       public enum ItemBoundsPortion {\r
+               Entire = 0,\r
+               Icon = 1,\r
+               ItemOnly = 3,\r
+               Label = 2\r
+       }\r
+}\r
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/Keys.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/Keys.cs
new file mode 100644 (file)
index 0000000..aff8509
--- /dev/null
@@ -0,0 +1,210 @@
+//\r
+// System.Windows.Forms.Keys.cs\r
+//\r
+// Author:\r
+//   Dennis Hayes (dennish@raytek.com)\r
+// (C) 2002 Ximian, Inc.  http://www.ximian.com\r
+//\r
+\r
+using System;\r
+\r
+namespace System.Windows.Forms {\r
+\r
+       /// <summary>\r
+       //TODO:\r
+       //Values not yet implmented\r
+       //CapsLock = ,\r
+       //HanguelMode = ,\r
+       //KanaMode = ,\r
+       //KanjiMode = ,\r
+       //PageDown = ,\r
+       //PageUp = ,\r
+       //PrintScreen = ,\r
+       //Return = ,\r
+       /// </summary>\r
+       public enum Keys {\r
+               A = 65,\r
+               Add = 107,\r
+               Alt = 262144,\r
+               Apps = 93,\r
+               Attn = 246,\r
+               B = 66,\r
+               Back = 8,\r
+               BrowserBack = 166,\r
+               BrowserFavorites = 171,\r
+               BrowserForward = 167,\r
+               BrowserHome = 172,\r
+               BrowserRefresh = 168,\r
+               BrowserSearch = 170,\r
+               BrowserStop = 169,\r
+               C = 67,\r
+               Cancel = 3,\r
+               Capital = 20,\r
+               //CapsLock = ,\r
+               Clear = 12,\r
+               Control = 131072,\r
+               ControlKey = 17,\r
+               Crsel = 247,\r
+               D = 68,\r
+               D0 = 48,\r
+               D1 = 49,\r
+               D2 = 50,\r
+               D3 = 51,\r
+               D4 = 52,\r
+               D5 = 53,\r
+               D6 = 54,\r
+               D7 = 55,\r
+               D8 = 56,\r
+               D9 = 57,\r
+               Decimal = 110,\r
+               Delete = 46,\r
+               Divide = 111,\r
+               Down = 40,\r
+               E = 69,\r
+               End = 35,\r
+               Enter = 13,\r
+               EraseEof = 249,\r
+               Escape = 27,\r
+               Execute = 43,\r
+               Exsel = 248,\r
+               F = 70,\r
+               F1 = 112,\r
+               F2 = 113,\r
+               F3 = 114,\r
+               F4 = 115,\r
+               F5 = 116,\r
+               F6 = 117,\r
+               F7 = 118,\r
+               F8 = 119,\r
+               F9 = 120,\r
+               F10 = 121,\r
+               F11 = 122,\r
+               F12 = 123,\r
+               F13 = 124,\r
+               F14 = 125,\r
+               F15 = 126,\r
+               F16 = 127,\r
+               F17 = 128,\r
+               F18 = 129,\r
+               F19 = 130,\r
+               F20 = 131,\r
+               F21 = 132,\r
+               F22 = 133,\r
+               F23 = 134,\r
+               F24 = 135,\r
+               FinalMode = 24,\r
+               G = 71,\r
+               H = 72,\r
+               //HanguelMode = ,\r
+               HangulMode = 21,\r
+               HanjaMode = 25,\r
+               Help = 47,\r
+               Home = 36,\r
+               I = 73,\r
+               IMEAceept = 30,\r
+               IMEConvert = 28,\r
+               IMEModeChange = 31,\r
+               IMENonconvert = 29,\r
+               Insert = 45,\r
+               J = 74,\r
+               JunjaMode = 23,\r
+               K = 75,\r
+               //KanaMode = ,\r
+               //KanjiMode = ,\r
+               KeyCode = 65535,\r
+               L = 76,\r
+               LaunchApplication1 = 182,\r
+               LaunchApplication2 = 183,\r
+               LaunchMail = 180,\r
+               LButton = 1,\r
+               LControlKey = 162,\r
+               Left = 37,\r
+               LineFeed = 10,\r
+               LShiftKey = 160,\r
+               LMenu = 164,\r
+               LWin = 91,\r
+               M = 77,\r
+               MButton = 4,\r
+               MediaNextTrack = 176,\r
+               MediaPlayPause = 179,\r
+               MediaPreviousTrack = 177,\r
+               MediaStop = 178,\r
+               Menu = 18,\r
+               Modifiers = -65536,\r
+               Multiply = 106,\r
+               N = 78,\r
+               Next = 34,\r
+               NoName = 252,\r
+               None = 0,\r
+               NumLock = 144,\r
+               NumPad0 = 96,\r
+               NumPad1 = 97,\r
+               NumPad2 = 98,\r
+               NumPad3 = 99,\r
+               NumPad4 = 100,\r
+               NumPad5 = 101,\r
+               NumPad6 = 102,\r
+               NumPad7 = 103,\r
+               NumPad8 = 104,\r
+               NumPad9 = 105,\r
+               O = 79,\r
+               Oem8 = 223,\r
+               OemBackslash = 226,\r
+               OemClear = 254,\r
+               OemCloseBrackets = 221,\r
+               Oemcomma = 188,\r
+               OemMinus = 189,\r
+               OemOpenBrackets = 219,\r
+               OemPeriod = 190,\r
+               OemPipe = 220,\r
+               Oemplus = 187,\r
+               OemQuestion = 191,\r
+               OemQuotes = 222,\r
+               OemSemicolon = 186,\r
+               Oemtilde = 192,\r
+               P = 80,\r
+               Pa1 = 253,\r
+               //PageDown = ,\r
+               //PageUp = ,\r
+               Pause = 19,\r
+               Play = 250,\r
+               Print = 42,\r
+               //PrintScreen = ,\r
+               Prior = 33,\r
+               ProcessKey = 229,\r
+               Q = 81,\r
+               R = 82,\r
+               RButton = 2,\r
+               RControlKey = 163,\r
+               //Return = ,\r
+               Right = 39,\r
+               RMenu = 165,\r
+               RShiftKey = 161,\r
+               RWin = 92,\r
+               S = 83,\r
+               Scroll = 145,\r
+               Select = 41,\r
+               SelectMedia = 181,\r
+               Separator = 108,\r
+               Shift = 65536,\r
+               ShiftKey = 16,\r
+               Snapshot = 44,\r
+               Space = 32,\r
+               Subtract = 109,\r
+               T = 84,\r
+               Tab = 9,\r
+               U = 85,\r
+               Up = 38,\r
+               V = 86,\r
+               VolumeDown = 174,\r
+               VolumeMute = 173,\r
+               VolumeUp = 175,\r
+               W = 87,\r
+               X = 88,\r
+               XButton1 = 5,\r
+               XButton2 = 6,\r
+               Y = 89,\r
+               Z = 90,\r
+               Zoom = 251\r
+       }\r
+}\r