This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / GridItem.cs
index 9acce5a3c78ff45b38dd86924a31084f2912fe8b..6cc1af6acbf6731d78a1b59c34cdd10df9f7a0c7 100644 (file)
@@ -3,95 +3,85 @@
 //
 // Author:
 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
+//     Partially completed by Dennis Hayes (dennish@raytek.com)
 //
-// (C) 2002 Ximian, Inc
+// (C) 2002/3 Ximian, Inc
 //
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+using System.ComponentModel;
 namespace System.Windows.Forms {
 
        // <summary>
-       //      This is only a template.  Nothing is implemented yet.
-       //
        // </summary>
 
-        //public abstract class GridItem {
-
+    public abstract class GridItem {
+               bool expandable;
+               bool expanded;
                //
                //  --- Public Properties
                //
-               //[MonoTODO]
-               //public bool Expandable {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public bool Expanded {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //      set {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract GridItemCollection GridItems {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract GridItemType GridItemType {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract string Label {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract GridItem Parent {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract PropertyDescriptor PropertyDescriptor {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
-               //[MonoTODO]
-               //public abstract object Value {
-               //      get {
-               //              throw new NotImplementedException ();
-               //      }
-               //}
+               public virtual bool Expandable {
+                       get {
+                               return expandable;
+                       }
+               }
+               public virtual bool Expanded {
+                       get {
+                               return expanded;
+                       }
+                       set {
+                               expanded = value;
+                       }
+               }
 
-               //
-               //  --- Public Properties
-               //
-               //[MonoTODO]
-               //public virtual bool Equals(object o);
-               //{
-               //      throw new NotImplementedException ();
-               //}
-               //[MonoTODO]
-               //public static bool Equals(object o1, object o2);
-               //{
-               //      throw new NotImplementedException ();
-               //}
 
+               public abstract GridItemCollection GridItems {
+                       get;
+               }
+               public abstract GridItemType GridItemType {
+                       get;
+               }
+               public abstract string Label {
+                       get;
+               }
+               public abstract GridItem Parent {
+                       get;
+               }
+               public abstract PropertyDescriptor PropertyDescriptor {
+                       get;
+               }
+               public abstract object Value {
+                       get;
+               }
+
+               public abstract bool Select ();
                //
                // --- Protected Constructor
                //
-               //[MonoTODO]
-               //protected GridItem()
-               //{
-               //      throw new NotImplementedException ();
-               //}
-       // }
+               [MonoTODO]
+               protected GridItem()
+               {
+                       
+               }
+        }
 }