Ver Fonte

2003-01-10 Gaurav Vaish <gvaish_mono AT lycos.com>

	* MobileListItemType.cs,
	* ObjectListViewMode.cs,
	* WmlListFieldType.cs,    // Failed to locate enumeration!
	* Wrapping.cs
	                         : Added enumerations.

svn path=/trunk/mcs/; revision=10343
Gaurav Vaish há 23 anos atrás
pai
commit
b76e1498d1

+ 8 - 0
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog

@@ -1,4 +1,12 @@
 
+2003-01-10	Gaurav Vaish <gvaish_mono AT lycos.com>
+
+	* MobileListItemType.cs,
+	* ObjectListViewMode.cs,
+	* WmlListFieldType.cs,    // Failed to locate enumeration!
+	* Wrapping.cs
+	                         : Added enumerations.
+
 2003-01-09	Gaurav Vaish <gvaish_mono AT lycos.com>
 
 	* MobileControl.cs       : Added some more properties (dummies).

+ 20 - 0
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobileListItemType.cs

@@ -0,0 +1,20 @@
+/**
+ * Project   : Mono
+ * Namespace : System.Web.UI.MobileControls
+ * Class     : MobileListItemType
+ * Author    : Gaurav Vaish
+ *
+ * Copyright : 2002 with Gaurav Vaish, and with
+ *             Ximian Inc
+ */
+
+namespace System.Web.UI.MobileControls
+{
+	public enum MobileListItemType
+	{
+		HeaderItem,
+		ListItem,
+		FooterItem,
+		SeparatorItem
+	}
+}

+ 19 - 0
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ObjectListViewMode.cs

@@ -0,0 +1,19 @@
+/**
+ * Project   : Mono
+ * Namespace : System.Web.UI.MobileControls
+ * Class     : ObjectListViewMode
+ * Author    : Gaurav Vaish
+ *
+ * Copyright : 2002 with Gaurav Vaish, and with
+ *             Ximian Inc
+ */
+
+namespace System.Web.UI.MobileControls
+{
+	public enum ObjectListViewMode
+	{
+		List,
+		Commands,
+		Details
+	}
+}

+ 22 - 0
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/WmlListFieldType.cs

@@ -0,0 +1,22 @@
+/**
+ * Project   : Mono
+ * Namespace : System.Web.UI.MobileControls
+ * Class     : WmlListFieldType
+ * Author    : Gaurav Vaish
+ *
+ * Copyright : 2002 with Gaurav Vaish, and with
+ *             Ximian Inc
+ */
+
+/// <summary>
+/// The enumeration exists only in the documentation.
+/// I failed to locate it in the assembly (.dll).
+/// </summary>
+/*
+namespace System.Web.UI.MobileControls
+{
+	public enum WmlListFieldType
+	{
+	}
+}
+*/

+ 19 - 0
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Wrapping.cs

@@ -0,0 +1,19 @@
+/**
+ * Project   : Mono
+ * Namespace : System.Web.UI.MobileControls
+ * Class     : Wrapping
+ * Author    : Gaurav Vaish
+ *
+ * Copyright : 2002 with Gaurav Vaish, and with
+ *             Ximian Inc
+ */
+
+namespace System.Web.UI.MobileControls
+{
+	public enum Wrapping
+	{
+		NotSet,
+		Wrap,
+		NoWrap
+	}
+}