2003-01-10 Gaurav Vaish <gvaish_mono AT lycos.com>
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>
Fri, 10 Jan 2003 17:30:32 +0000 (17:30 -0000)
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>
Fri, 10 Jan 2003 17:30:32 +0000 (17:30 -0000)
* MobileListItemType.cs,
* ObjectListViewMode.cs,
* WmlListFieldType.cs,    // Failed to locate enumeration!
* Wrapping.cs
                         : Added enumerations.

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

mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobileListItemType.cs [new file with mode: 0644]
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ObjectListViewMode.cs [new file with mode: 0644]
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/WmlListFieldType.cs [new file with mode: 0644]
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Wrapping.cs [new file with mode: 0644]

index bf25afd6ece7063df312a0f44a55848aecc8a142..ad433e11574b0ed202bfa7472f9aa4c78bc3ecc4 100644 (file)
@@ -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).
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobileListItemType.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/MobileListItemType.cs
new file mode 100644 (file)
index 0000000..e25685c
--- /dev/null
@@ -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
+       }
+}
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ObjectListViewMode.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ObjectListViewMode.cs
new file mode 100644 (file)
index 0000000..3face38
--- /dev/null
@@ -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
+       }
+}
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/WmlListFieldType.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/WmlListFieldType.cs
new file mode 100644 (file)
index 0000000..1d8c4ed
--- /dev/null
@@ -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
+       {
+       }
+}
+*/
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Wrapping.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Wrapping.cs
new file mode 100644 (file)
index 0000000..7f3b5fc
--- /dev/null
@@ -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
+       }
+}