2008-04-02 Jonathan Pobst <monkey@jpobst.com>
authorJonathan Pobst <monkey@jpobst.com>
Wed, 2 Apr 2008 20:16:37 +0000 (20:16 -0000)
committerJonathan Pobst <monkey@jpobst.com>
Wed, 2 Apr 2008 20:16:37 +0000 (20:16 -0000)
* DataGridView.cs: Minor cleanups and call CellMouseUp.
* DataGridViewCell.cs: Make some painting routines internally virtual.
* DataGridViewButtonCell.cs: Implement.

2008-04-02  Jonathan Pobst  <monkey@jpobst.com>

* DataGridViewButtonCellTest.cs: Add.

2008-04-02  Jonathan Pobst  <monkey@jpobst.com>

* System.Windows.Forms_test.dll.sources: Add DataGridViewButtonCellTest.cs.

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

mcs/class/Managed.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridView.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewButtonCell.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewCell.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms_test.dll.sources
mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataGridViewButtonCellTest.cs [new file with mode: 0644]

index a947e9b949336068c69eca01ea293cb1f146acfe..3c3e43c824b774ef73635c715e8cd19486d6c57f 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-02  Jonathan Pobst  <monkey@jpobst.com>
+
+       * System.Windows.Forms_test.dll.sources: Add DataGridViewButtonCellTest.cs.
+
 2008-03-19  Ivan N. Zlatev  <contact@i-nz.net>
 
        * Makefile, System.Windows.Forms.dll.resources: Updated to reflect 
index 29c31f67f8aba2828ba8c50d35ba13e3c84379e1..9aeac03d312659ebafea88766d9a931531f26ff3 100644 (file)
@@ -1,3 +1,9 @@
+2008-04-02  Jonathan Pobst  <monkey@jpobst.com>
+
+       * DataGridView.cs: Minor cleanups and call CellMouseUp.
+       * DataGridViewCell.cs: Make some painting routines internally virtual.
+       * DataGridViewButtonCell.cs: Implement.
+
 2008-04-02  Jonathan Pobst  <monkey@jpobst.com>
 
        * Control.cs: We always need to invalidate our children with
index 69b1de16e95638daf729d7a5457bc906b345a911..b76f26482cf40f1075b432410de9abc6ff527d7d 100644 (file)
@@ -2533,14 +2533,7 @@ namespace System.Windows.Forms {
                        if (rowIndex < 0 || rowIndex >= rows.Count)
                                throw new ArgumentOutOfRangeException ("Row index is out of range.");
 
-                       foreach (DataGridViewRow row in rows) {
-                               foreach (DataGridViewCell cell in row.Cells) {
-                                       if (cell.RowIndex == rowIndex && cell.ColumnIndex == columnIndex) {
-                                               InvalidateCell (cell);
-                                               return;
-                                       }
-                               }
-                       }
+                       InvalidateCell (Rows[rowIndex].Cells[columnIndex]);
                }
 
                [MonoTODO ("Invalidates whole grid")]
@@ -3737,6 +3730,13 @@ namespace System.Windows.Forms {
                protected override void OnMouseUp (MouseEventArgs e)
                {
                        base.OnMouseUp(e);
+
+                       HitTestInfo hit = this.HitTest (e.X, e.Y);
+
+                       if (hit.Type == DataGridViewHitTestType.Cell) {
+                               Rectangle display = GetCellDisplayRectangle (hit.ColumnIndex, hit.RowIndex, false);
+                               OnCellMouseUp (new DataGridViewCellMouseEventArgs (hit.ColumnIndex, hit.RowIndex, e.X - display.X, e.Y - display.Y, e));
+                       }
                }
 
                protected override void OnMouseWheel (MouseEventArgs e)
@@ -4316,7 +4316,7 @@ namespace System.Windows.Forms {
                        return false;
                }
 
-               [MonoTODO ("What does delete do?")]
+               [MonoTODO ("What does insert do?")]
                protected bool ProcessInsertKey (Keys keyData)
                {
                        return false;
@@ -4616,10 +4616,6 @@ namespace System.Windows.Forms {
                                
                                top += row.Height;
                        }
-                       //top_row_index++;
-                       //verticalScrollingOffset = e.NewValue;
-                       //Invalidate();
-                       //OnScroll(e);
                }
 
                internal void RaiseCellStyleChanged (DataGridViewCellEventArgs e) {
index ed34356da5ea43ab64384a45c3baaaeade524e8b..9fa71ca10a8aee34e81cb1a17d03b82d85f03f36 100644 (file)
@@ -27,6 +27,7 @@
 
 using System.Drawing;
 using System.ComponentModel;
+using System.Windows.Forms.VisualStyles;
 
 namespace System.Windows.Forms {
 
@@ -34,9 +35,12 @@ namespace System.Windows.Forms {
 
                private FlatStyle flatStyle;
                private bool useColumnTextForButtonValue;
-
-               public DataGridViewButtonCell () {
+               private PushButtonState button_state;
+               
+               public DataGridViewButtonCell ()
+               {
                        useColumnTextForButtonValue = false;
+                       button_state = PushButtonState.Normal;
                }
 
                public override Type EditType {
@@ -57,7 +61,7 @@ namespace System.Windows.Forms {
                }
 
                public override Type FormattedValueType {
-                       get { return base.FormattedValueType; }
+                       get { return typeof (string); }
                }
 
                [DefaultValue (false)]
@@ -67,7 +71,7 @@ namespace System.Windows.Forms {
                }
 
                public override Type ValueType {
-                       get { return base.ValueType; }
+                       get { return base.ValueType == null ? typeof (object) : base.ValueType; }
                }
 
                public override object Clone () {
@@ -85,31 +89,56 @@ namespace System.Windows.Forms {
                        return new DataGridViewButtonCellAccessibleObject(this);
                }
 
-               protected override Rectangle GetContentBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex) {
-                       throw new NotImplementedException();
+               protected override Rectangle GetContentBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex)
+               {
+                       if (DataGridView == null)
+                               return Rectangle.Empty;
+                               
+                       Rectangle retval = Rectangle.Empty;
+                       
+                       retval.Height = OwningRow.Height - 1;
+                       retval.Width = OwningColumn.Width - 1;
+                       
+                       return retval;
                }
 
-               protected override Rectangle GetErrorIconBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex) {
-                       throw new NotImplementedException();
+               [MonoTODO ("Not implemented")]
+               protected override Rectangle GetErrorIconBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex)
+               {
+                       return Rectangle.Empty;
                }
 
-               protected override Size GetPreferredSize (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex, Size constraintSize) {
-                       throw new NotImplementedException();
+               protected override Size GetPreferredSize (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex, Size constraintSize)
+               {
+                       object o = FormattedValue;
+
+                       if (o != null) {
+                               Size s = DataGridViewCell.MeasureTextSize (graphics, o.ToString (), cellStyle.Font, TextFormatFlags.Default);
+                               s.Height = Math.Max (s.Height, 21);
+                               s.Width += 10;
+                               return s;
+                       } else
+                               return new Size (21, 21);
                }
 
-               protected override object GetValue (int rowIndex) {
-                       throw new NotImplementedException();
+               protected override object GetValue (int rowIndex)
+               {
+                       if (useColumnTextForButtonValue)
+                               return (OwningColumn as DataGridViewButtonColumn).Text;
+                               
+                       return base.GetValue (rowIndex);
                }
 
-               protected override bool KeyDownUnsharesRow (KeyEventArgs e, int rowIndex) {
+               protected override bool KeyDownUnsharesRow (KeyEventArgs e, int rowIndex)
+               {
                        // true if the user pressed the SPACE key without modifier keys; otherwise, false
-                       throw new NotImplementedException();
+                       return e.KeyData == Keys.Space;
                }
 
-               protected override bool KeyUpUnsharesRow (KeyEventArgs e, int rowIndex) {
+               protected override bool KeyUpUnsharesRow (KeyEventArgs e, int rowIndex)
+               {
                        // true if the user released the SPACE key; otherwise false
-                       throw new NotImplementedException();
-
+                       return e.KeyData == Keys.Space;
                }
 
                protected override bool MouseDownUnsharesRow (DataGridViewCellMouseEventArgs e) {
@@ -119,65 +148,110 @@ namespace System.Windows.Forms {
                protected override bool MouseEnterUnsharesRow (int rowIndex)
                {
                        // true if the cell was the last cell receiving a mouse click; otherwise, false.
-                       throw new NotImplementedException();
+                       return false;
                }
 
                protected override bool MouseLeaveUnsharesRow (int rowIndex)
                {
                        // true if the button displayed by the cell is in the pressed state; otherwise, false.
-                       throw new NotImplementedException();
+                       return button_state == PushButtonState.Pressed;
                }
 
                protected override bool MouseUpUnsharesRow (DataGridViewCellMouseEventArgs e)
                {
                        // true if the mouse up was caused by the release of the left mouse button; otherwise false.
-                       throw new NotImplementedException();
+                       return e.Button == MouseButtons.Left;
                }
 
                protected override void OnKeyDown (KeyEventArgs e, int rowIndex)
                {
                        // when activated by the SPACE key, this method updates the cell's user interface
-                       throw new NotImplementedException();
+                       if ((e.KeyData & Keys.Space) == Keys.Space) {
+                               button_state = PushButtonState.Pressed;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnKeyUp (KeyEventArgs e, int rowIndex)
                {
                        // when activated by the SPACE key, this method updates the cell's user interface
-                       throw new NotImplementedException();
+                       if ((e.KeyData & Keys.Space) == Keys.Space) {
+                               button_state = PushButtonState.Normal;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnLeave (int rowIndex, bool throughMouseClick)
                {
-                       throw new NotImplementedException();
+                       if (button_state != PushButtonState.Normal) {
+                               button_state = PushButtonState.Normal;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnMouseDown (DataGridViewCellMouseEventArgs e)
                {
-                       // if activated by depresing the left mouse button, this method updates the cell's user interface
-                       throw new NotImplementedException();
+                       if ((e.Button & MouseButtons.Left) == MouseButtons.Left) {
+                               button_state = PushButtonState.Pressed;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnMouseLeave (int rowIndex)
                {
-                       // if the cell's button is not in its normal state, this method causes the cell's user interface to be updated.
-                       throw new NotImplementedException();
+                       if (button_state != PushButtonState.Normal) {
+                               button_state = PushButtonState.Normal;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnMouseMove (DataGridViewCellMouseEventArgs e)
                {
-                       throw new NotImplementedException ();
+                       if (button_state != PushButtonState.Normal && button_state != PushButtonState.Hot) {
+                               button_state = PushButtonState.Hot;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
                protected override void OnMouseUp (DataGridViewCellMouseEventArgs e)
                {
-                       // if activated by the left mouse button, this method updates the cell's user interface
-                       throw new NotImplementedException();
+                       if ((e.Button & MouseButtons.Left) == MouseButtons.Left) {
+                               button_state = PushButtonState.Normal;
+                               DataGridView.InvalidateCell (this);
+                       }
                }
 
-               protected override void Paint (Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates elementState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts) {
-                       throw new NotImplementedException();
+               protected override void Paint (Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates elementState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
+               {
+                       // The internal paint routines are overridden instead of
+                       // doing the custom paint logic here
+                       base.Paint (graphics, clipBounds, cellBounds, rowIndex, elementState, value, formattedValue, errorText, cellStyle, advancedBorderStyle, paintParts);
                }
 
+               internal override void PaintPartBackground (Graphics graphics, Rectangle cellBounds, DataGridViewCellStyle style)
+               {
+                       ButtonRenderer.DrawButton (graphics, cellBounds, button_state);
+               }
+
+               internal override void PaintPartSelectionBackground (Graphics graphics, Rectangle cellBounds, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle)
+               {
+                       cellBounds.Inflate (-2, -2);
+                       base.PaintPartSelectionBackground (graphics, cellBounds, cellState, cellStyle);
+               }
+               
+               internal override void PaintPartContent (Graphics graphics, Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle, object formattedValue)
+               {
+                       Color color = Selected ? cellStyle.SelectionForeColor : cellStyle.ForeColor;
+
+                       TextFormatFlags flags = TextFormatFlags.EndEllipsis | TextFormatFlags.VerticalCenter | TextFormatFlags.TextBoxControl | TextFormatFlags.HorizontalCenter;
+
+                       cellBounds.Height -= 2;
+                       cellBounds.Width -= 2;
+
+                       if (formattedValue != null)
+                               TextRenderer.DrawText (graphics, formattedValue.ToString (), cellStyle.Font, cellBounds, color, flags);
+               }
+               
                protected class DataGridViewButtonCellAccessibleObject : DataGridViewCellAccessibleObject {
 
                        public DataGridViewButtonCellAccessibleObject (DataGridViewCell owner) : base(owner) {
index c9db462686b528816647b7cfd60202f7ea89e21d..a067b49adbab5edd490461d4d1ff3e8562277924 100644 (file)
@@ -1339,7 +1339,7 @@ namespace System.Windows.Forms {
                {
                }
 
-               private void PaintPartBackground (Graphics graphics, Rectangle cellBounds, DataGridViewCellStyle style)
+               internal virtual void PaintPartBackground (Graphics graphics, Rectangle cellBounds, DataGridViewCellStyle style)
                {
                        Color color = style.BackColor;
                        graphics.FillRectangle (ThemeEngine.Current.ResPool.GetSolidBrush (color), cellBounds);
@@ -1374,7 +1374,7 @@ namespace System.Windows.Forms {
                        }
                }
 
-               private void PaintPartContent (Graphics graphics, Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle, object formattedValue)
+               internal virtual void PaintPartContent (Graphics graphics, Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle, object formattedValue)
                {
                        if (IsInEditMode)
                                return;
@@ -1399,7 +1399,7 @@ namespace System.Windows.Forms {
                                ControlPaint.DrawFocusRectangle (graphics, cellBounds);
                }
 
-               private void PaintPartSelectionBackground (Graphics graphics, Rectangle cellBounds, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle)
+               internal virtual void PaintPartSelectionBackground (Graphics graphics, Rectangle cellBounds, DataGridViewElementStates cellState, DataGridViewCellStyle cellStyle)
                {
                        if ((cellState & DataGridViewElementStates.Selected) != DataGridViewElementStates.Selected)
                                return;
index 7df5d34fe0006132f073c37c65315df368c0adaf..671eff277e90916460a187022c8b46a80672ac3b 100644 (file)
@@ -44,6 +44,7 @@ System.Windows.Forms/DataGridTextBoxColumnTest.cs
 System.Windows.Forms/DataGridTextBoxTest.cs
 System.Windows.Forms/DataGridViewAdvancedBorderStyleTest.cs
 System.Windows.Forms/DataGridViewBandTest.cs
+System.Windows.Forms/DataGridViewButtonCellTest.cs
 System.Windows.Forms/DataGridViewCellCollectionTest.cs
 System.Windows.Forms/DataGridViewCellStyleTest.cs
 System.Windows.Forms/DataGridViewCellTest.cs
index cf3b45188a1d93314b532374bb145f3ad46f50b2..66876e4e5757e2c09fa149d454d6e6312ad0481b 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-02  Jonathan Pobst  <monkey@jpobst.com>
+
+       * DataGridViewButtonCellTest.cs: Add.
+
 2008-04-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
 
        * BindingSourceTest.cs: New test for ICancelAddNew support.
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataGridViewButtonCellTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/DataGridViewButtonCellTest.cs
new file mode 100644 (file)
index 0000000..e71517e
--- /dev/null
@@ -0,0 +1,874 @@
+//
+// DataGridViewButtonCellTest.cs - Unit tests for
+// System.Windows.Forms.DataGridViewButtonCellTest
+//
+// Author:
+//     Gert Driesen  <drieseng@users.sourceforge.net>
+//
+// Copyright (C) 2007 Gert Driesen
+//
+// 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.
+//
+
+#if NET_2_0
+
+using System;
+using System.Windows.Forms;
+
+using NUnit.Framework;
+using System.Drawing;
+using System.Threading;
+using System.ComponentModel;
+
+namespace MonoTests.System.Windows.Forms
+{
+       [TestFixture]
+       public class DataGridViewButtonCellTest
+       {
+               [Test]
+               public void Value ()
+               {
+                       DataGridViewTextBoxCell tbc = new DataGridViewTextBoxCell ();
+                       Assert.IsNull (tbc.Value, "#1");
+                       tbc.Value = string.Empty;
+                       Assert.AreEqual (string.Empty, tbc.Value, "#2");
+                       tbc.Value = 5;
+                       Assert.AreEqual (5, tbc.Value, "#3");
+                       tbc.Value = null;
+                       Assert.IsNull (tbc.Value, "#4");
+               }
+
+               [Test]
+               public void ColumnIndex ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (-1, c.ColumnIndex, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (0, dgv.Rows[0].Cells[0].ColumnIndex, "A2");
+               }
+
+               /* font measurement dependent*/
+               [Test]
+               public void ContentBounds ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (Rectangle.Empty, c.ContentBounds, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (new Rectangle (0, 0, 99, 21), dgv.Rows[0].Cells[0].ContentBounds, "A2");
+               }
+               
+
+               [Test]
+               public void ContextMenuStrip ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.ContextMenuStrip, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       ContextMenuStrip cms1 = new ContextMenuStrip ();
+                       cms1.Items.Add ("hey");
+
+                       ContextMenuStrip cms2 = new ContextMenuStrip ();
+                       cms2.Items.Add ("yo");
+
+                       dgv.Rows[0].ContextMenuStrip = cms1;
+                       Assert.AreEqual (null, dgv.Rows[0].Cells[0].ContextMenuStrip, "A2");
+
+                       dgv.Rows[0].Cells[0].ContextMenuStrip = cms2;
+                       Assert.AreSame (cms2, dgv.Rows[0].Cells[0].ContextMenuStrip, "A3");
+               }
+
+               [Test]
+               public void DataGridView ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.DataGridView, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreSame (dgv, dgv.Rows[0].Cells[0].DataGridView, "A2");
+               }
+
+               [Test]
+               public void DefaultNewRowValue ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.DefaultNewRowValue, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (null, dgv.Rows[0].Cells[0].DefaultNewRowValue, "A2");
+               }
+
+               [Test]
+               public void Displayed ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.Displayed, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Displayed, "A2");
+               }
+
+               [Test]
+               public void EditedFormattedValue ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.EditedFormattedValue, "A1");
+               }
+
+               [Test]
+               public void FormattedValueType ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (typeof (string), c.FormattedValueType, "A1");
+               }
+
+               [Test]
+               public void Frozen ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.Frozen, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Frozen, "A2");
+
+                       dgv.Columns[0].Frozen = true;
+                       dgv.Rows[0].Frozen = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Frozen, "A3");
+               }
+
+               [Test]
+               public void HasStyle ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.HasStyle, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].HasStyle, "A2");
+
+                       dgv.Rows[0].Cells[0].Style.BackColor = Color.Orange;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].HasStyle, "A3");
+               }
+
+               [Test]
+               public void InheritedState ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (DataGridViewElementStates.ResizableSet, c.InheritedState, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (DataGridViewElementStates.ResizableSet | DataGridViewElementStates.Resizable | DataGridViewElementStates.Visible, dgv.Rows[0].Cells[0].InheritedState, "A2");
+
+                       dgv.Rows[0].Selected = true;
+                       Assert.AreEqual (DataGridViewElementStates.Selected | DataGridViewElementStates.ResizableSet | DataGridViewElementStates.Resizable | DataGridViewElementStates.Visible, dgv.Rows[0].Cells[0].InheritedState, "A3");
+
+                       dgv.Rows[0].Selected = false;
+                       dgv.Columns[0].Selected = true;
+                       Assert.AreEqual (DataGridViewElementStates.ResizableSet | DataGridViewElementStates.Resizable | DataGridViewElementStates.Visible, dgv.Rows[0].Cells[0].InheritedState, "A4");
+               }
+
+               [Test]
+               public void InheritedStyle ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (SystemColors.Window, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A1");
+
+                       dgv.DefaultCellStyle.BackColor = Color.Firebrick;
+                       Assert.AreEqual (Color.Firebrick, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A2");
+
+                       dgv.Columns[0].DefaultCellStyle.BackColor = Color.FloralWhite;
+                       Assert.AreEqual (Color.FloralWhite, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A3");
+
+                       dgv.RowsDefaultCellStyle.BackColor = Color.DeepPink;
+                       Assert.AreEqual (Color.DeepPink, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A4");
+
+                       dgv.Rows[0].DefaultCellStyle.BackColor = Color.DeepSkyBlue;
+                       Assert.AreEqual (Color.DeepSkyBlue, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A5");
+
+                       dgv.Rows[0].Cells[0].Style.BackColor = Color.DodgerBlue;
+                       Assert.AreEqual (Color.DodgerBlue, dgv.Rows[0].Cells[0].InheritedStyle.BackColor, "A6");
+               }
+
+               [Test]
+               public void IsInEditMode ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.IsInEditMode, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].IsInEditMode, "A2");
+               }
+
+               [Test]
+               public void OwningColumn ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.OwningColumn, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreSame (dgv.Columns[0], dgv.Rows[0].Cells[0].OwningColumn, "A2");
+               }
+
+               [Test]
+               public void OwningRow ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.OwningRow, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreSame (dgv.Rows[0], dgv.Rows[0].Cells[0].OwningRow, "A2");
+               }
+
+               /* Font measurement dependent * */
+               [Test]
+               public void PreferredSize ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (new Size (-1, -1), c.PreferredSize, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (new Size (21, 21), dgv.Rows[0].Cells[0].PreferredSize, "A2");
+
+                       dgv.Rows[0].Cells[0].Value = "bob";
+                       Assert.AreEqual (new Size (35, 21), dgv.Rows[0].Cells[0].PreferredSize, "A3");
+
+                       dgv.Rows[0].Cells[0].Value = "roasted quail";
+                       Assert.AreEqual (new Size (77, 21), dgv.Rows[0].Cells[0].PreferredSize, "A3");
+               }
+               
+
+               [Test]
+               public void ReadOnly ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.ReadOnly, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].ReadOnly, "A2");
+
+                       dgv.Rows[0].ReadOnly = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].ReadOnly, "A3");
+
+                       dgv.Rows[0].Cells[0].ReadOnly = false;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].ReadOnly, "A4");
+               }
+
+               [Test]
+               public void Resizable ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.Resizable, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A2");
+
+                       dgv.Rows[0].Resizable = DataGridViewTriState.False;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A3");
+
+                       dgv.Columns[0].Resizable = DataGridViewTriState.False;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Resizable, "A4");
+
+                       dgv.Columns[0].Resizable = DataGridViewTriState.True;
+                       dgv.Rows[0].Resizable = DataGridViewTriState.True;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A5");
+
+                       dgv.AllowUserToResizeColumns = false;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A6");
+
+                       dgv.AllowUserToResizeRows = false;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A7");
+
+                       dgv.Columns[0].Resizable = DataGridViewTriState.NotSet;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Resizable, "A8");
+
+                       dgv.Rows[0].Resizable = DataGridViewTriState.NotSet;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Resizable, "A9");
+               }
+
+               [Test]
+               public void RowIndex ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (-1, c.RowIndex, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (0, dgv.Rows[0].Cells[0].RowIndex, "A2");
+               }
+
+               [Test]
+               public void Selected ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.Selected, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Selected, "A2");
+
+                       dgv.Columns[0].Selected = true;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Selected, "A3");
+
+                       dgv.Rows[0].Selected = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Selected, "A4");
+
+                       dgv.Rows[0].Cells[0].Selected = false;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Selected, "A5");
+
+                       dgv.Rows[0].Selected = false;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Selected, "A6");
+
+                       dgv.Rows[0].Cells[0].Selected = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Selected, "A7");
+               }
+
+               /* The height of a cell (row) is based on Font*/
+               [Test]
+               public void Size ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (new Size (-1, -1), c.Size, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (new Size (100, 22), dgv.Rows[0].Cells[0].Size, "A2");
+                       
+                       // Does not resize to content
+                       dgv.Rows[0].Cells[0].Value = "bob";
+                       Assert.AreEqual (new Size (100, 22), dgv.Rows[0].Cells[0].Size, "A3");
+               }
+               
+
+               [Test]
+               public void Style ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (DataGridViewContentAlignment.NotSet, c.Style.Alignment, "A1");
+                       Assert.AreEqual (Color.Empty, c.Style.BackColor, "A2");
+                       Assert.AreEqual (DBNull.Value, c.Style.DataSourceNullValue, "A3");
+                       Assert.AreEqual (null, c.Style.Font, "A4");
+                       Assert.AreEqual (Color.Empty, c.Style.ForeColor, "A5");
+                       Assert.AreEqual (string.Empty, c.Style.Format, "A6");
+                       Assert.AreEqual (Thread.CurrentThread.CurrentCulture, c.Style.FormatProvider, "A7");
+                       Assert.AreEqual (true, c.Style.IsDataSourceNullValueDefault, "A8");
+                       Assert.AreEqual (true, c.Style.IsFormatProviderDefault, "A9");
+                       Assert.AreEqual (true, c.Style.IsNullValueDefault, "A10");
+                       Assert.AreEqual (string.Empty, c.Style.NullValue, "A11");
+                       Assert.AreEqual (Padding.Empty, c.Style.Padding, "A12");
+                       Assert.AreEqual (Color.Empty, c.Style.SelectionBackColor, "A13");
+                       Assert.AreEqual (Color.Empty, c.Style.SelectionForeColor, "A14");
+                       Assert.AreEqual (null, c.Style.Tag, "A15");
+                       Assert.AreEqual (DataGridViewTriState.NotSet, c.Style.WrapMode, "A16");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       // Style does not change based on parent
+                       // (InheritedStyle does)
+                       Assert.AreEqual (DataGridViewContentAlignment.NotSet, c.Style.Alignment, "A17");
+                       Assert.AreEqual (Color.Empty, c.Style.BackColor, "A18");
+                       Assert.AreEqual (DBNull.Value, c.Style.DataSourceNullValue, "A19");
+                       Assert.AreEqual (null, c.Style.Font, "A20");
+                       Assert.AreEqual (Color.Empty, c.Style.ForeColor, "A21");
+                       Assert.AreEqual (string.Empty, c.Style.Format, "A22");
+                       Assert.AreEqual (Thread.CurrentThread.CurrentCulture, c.Style.FormatProvider, "A23");
+                       Assert.AreEqual (true, c.Style.IsDataSourceNullValueDefault, "A24");
+                       Assert.AreEqual (true, c.Style.IsFormatProviderDefault, "A25");
+                       Assert.AreEqual (true, c.Style.IsNullValueDefault, "A26");
+                       Assert.AreEqual (string.Empty, c.Style.NullValue, "A27");
+                       Assert.AreEqual (Padding.Empty, c.Style.Padding, "A28");
+                       Assert.AreEqual (Color.Empty, c.Style.SelectionBackColor, "A29");
+                       Assert.AreEqual (Color.Empty, c.Style.SelectionForeColor, "A30");
+                       Assert.AreEqual (null, c.Style.Tag, "A31");
+                       Assert.AreEqual (DataGridViewTriState.NotSet, c.Style.WrapMode, "A32");
+               }
+
+               [Test]
+               public void Tag ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.Tag, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (null, dgv.Rows[0].Cells[0].Tag, "A2");
+
+                       dgv.Rows[0].Cells[0].Tag = "bob";
+                       Assert.AreEqual ("bob", dgv.Rows[0].Cells[0].Tag, "A3");
+               }
+
+               [Test]
+               public void ToolTipText ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (string.Empty, c.ToolTipText, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (string.Empty, dgv.Rows[0].Cells[0].ToolTipText, "A2");
+
+                       dgv.Rows[0].Cells[0].ToolTipText = "bob";
+                       Assert.AreEqual ("bob", dgv.Rows[0].Cells[0].ToolTipText, "A3");
+               }
+
+               [Test]
+               public void Value2 ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.Value, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (null, dgv.Rows[0].Cells[0].Value, "A2");
+
+                       dgv.Rows[0].Cells[0].Value = "bob";
+                       Assert.AreEqual ("bob", dgv.Rows[0].Cells[0].Value, "A3");
+               }
+
+               [Test]
+               public void ValueType ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (typeof (object), c.ValueType, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (typeof (object), dgv.Rows[0].Cells[0].ValueType, "A2");
+
+                       dgv.Rows[0].Cells[0].ValueType = typeof (bool);
+                       Assert.AreEqual (typeof (bool), dgv.Rows[0].Cells[0].ValueType, "A3");
+               }
+
+               [Test]
+               public void Visible ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (false, c.Visible, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Visible, "A2");
+
+                       dgv.Columns[0].Visible = false;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Visible, "A3");
+
+                       dgv.Columns[0].Visible = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Visible, "A4");
+
+                       dgv.Rows[0].Visible = false;
+                       Assert.AreEqual (false, dgv.Rows[0].Cells[0].Visible, "A5");
+
+                       dgv.Rows[0].Visible = true;
+                       Assert.AreEqual (true, dgv.Rows[0].Cells[0].Visible, "A6");
+               }
+
+               [Test]
+               public void MethodBorderWidths ()
+               {
+                       BaseCell c = new BaseCell ();
+
+                       DataGridViewAdvancedBorderStyle style = new DataGridViewAdvancedBorderStyle ();
+                       style.Bottom = DataGridViewAdvancedCellBorderStyle.Inset;
+                       style.Left = DataGridViewAdvancedCellBorderStyle.InsetDouble;
+                       style.Top = DataGridViewAdvancedCellBorderStyle.None;
+                       //style.Right = DataGridViewAdvancedCellBorderStyle.NotSet;
+
+                       Assert.AreEqual (new Rectangle (2, 0, 0, 1), c.PublicBorderWidths (style), "A1");
+
+                       style.Bottom = DataGridViewAdvancedCellBorderStyle.Outset;
+                       style.Left = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
+                       style.Right = DataGridViewAdvancedCellBorderStyle.OutsetPartial;
+                       style.Top = DataGridViewAdvancedCellBorderStyle.Single;
+
+                       Assert.AreEqual (new Rectangle (2, 1, 1, 1), c.PublicBorderWidths (style), "A2");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       dgv.Rows[0].DividerHeight = 3;
+                       dgv.Columns[0].DividerWidth = 5;
+
+                       Assert.AreEqual (new Rectangle (2, 1, 6, 4), (dgv.Rows[0].Cells[0] as BaseCell).PublicBorderWidths (style), "A3");
+               }
+
+               /* Font measurement dependent*/
+               [Test]
+               public void MethodGetContentBounds ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (Rectangle.Empty, c.GetContentBounds (c.RowIndex), "A1");
+                       c.Value = "hello there";
+                       
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (new Rectangle (0, 0, 99, 21), dgv.Rows[0].Cells[0].GetContentBounds (dgv.Rows[0].Cells[0].RowIndex), "A2");
+
+                       dgv.Rows[0].Cells[0].Value = "whoa whoa whoa whoa whoa whoa";
+                       Assert.AreEqual (new Rectangle (0, 0, 99, 21), dgv.Rows[0].Cells[0].GetContentBounds (dgv.Rows[0].Cells[0].RowIndex), "A3");
+               }
+               
+               [Test]
+               public void MethodGetContentBoundsOverload ()
+               {
+                       Bitmap b = new Bitmap (1, 1);
+                       Graphics g = Graphics.FromImage (b);
+
+                       BaseCell c = new BaseCell ();
+                       Assert.AreEqual (Rectangle.Empty, c.PublicGetContentBounds (g, c.Style, c.RowIndex), "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (new Rectangle (0, 0, 99, 21), (dgv.Rows[0].Cells[0] as BaseCell).PublicGetContentBounds (g, dgv.Rows[0].Cells[0].InheritedStyle, dgv.Rows[0].Cells[0].RowIndex), "A2");
+                       g.Dispose ();
+                       b.Dispose ();
+               }
+               
+               
+               [Test]
+               public void MethodGetErrorIconBounds ()
+               {
+                       Bitmap b = new Bitmap (1, 1);
+                       Graphics g = Graphics.FromImage (b);
+
+                       BaseCell c = new BaseCell ();
+                       Assert.AreEqual (Rectangle.Empty, c.PublicGetErrorIconBounds (g, c.Style, c.RowIndex), "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (Rectangle.Empty, (dgv.Rows[0].Cells[0] as BaseCell).PublicGetErrorIconBounds (g, dgv.Rows[0].Cells[0].InheritedStyle, dgv.Rows[0].Cells[0].RowIndex), "A2");
+                       g.Dispose ();
+                       b.Dispose ();
+               }
+
+               [Test]
+               public void MethodGetErrorText ()
+               {
+                       Bitmap b = new Bitmap (1, 1);
+                       Graphics g = Graphics.FromImage (b);
+
+                       BaseCell c = new BaseCell ();
+                       Assert.AreEqual (string.Empty, c.PublicGetErrorText (c.RowIndex), "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (string.Empty, (dgv.Rows[0].Cells[0] as BaseCell).PublicGetErrorText (dgv.Rows[0].Cells[0].RowIndex), "A2");
+                       g.Dispose ();
+                       b.Dispose ();
+               }
+
+               [Test]
+               public void MethodKeyEntersEditMode ()
+               {
+                       string result = string.Empty;
+                       string expected = string.Empty;
+                       
+                       DataGridViewCell c = new BaseCell ();
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (c.KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       result = string.Empty;
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (dgv.Rows[0].Cells[0].KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A2");
+
+                       result = string.Empty;
+                       dgv.EditMode = DataGridViewEditMode.EditOnEnter;
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (dgv.Rows[0].Cells[0].KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A3");
+
+                       result = string.Empty;
+                       dgv.EditMode = DataGridViewEditMode.EditOnF2;
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (dgv.Rows[0].Cells[0].KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A4");
+
+                       result = string.Empty;
+                       dgv.EditMode = DataGridViewEditMode.EditOnKeystroke;
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (dgv.Rows[0].Cells[0].KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A5");
+
+                       result = string.Empty;
+                       dgv.EditMode = DataGridViewEditMode.EditProgrammatically;
+
+                       foreach (Keys k in Enum.GetValues (typeof (Keys)))
+                               if (dgv.Rows[0].Cells[0].KeyEntersEditMode (new KeyEventArgs (k)))
+                                       result += ((int)k).ToString () + ";";
+
+                       Assert.AreEqual (expected, result, "A6");
+               }
+
+               [Test]
+               public void MethodParseFormattedValue ()
+               {
+                       DataGridViewCell c = new FormattedBaseCell ();
+                       c.ValueType = typeof (bool);
+
+                       BooleanConverter bc = new BooleanConverter ();
+                       StringConverter sc = new StringConverter ();
+
+                       object o = c.ParseFormattedValue ("true", c.Style, sc, bc);
+                       Assert.AreEqual (true, (bool)o, "A1");
+               }
+
+               [Test]
+               public void MethodGetInheritedContextMenuStrip ()
+               {
+                       DataGridViewCell c = new BaseCell ();
+                       Assert.AreEqual (null, c.GetInheritedContextMenuStrip (c.RowIndex), "A1");
+
+                       DataGridView dgv = new DataGridView ();
+                       dgv.Columns.Add ("hi", "there");
+
+                       DataGridViewRow row = new DataGridViewRow ();
+                       row.Cells.Add (c);
+                       dgv.Rows.Add (row);
+
+                       Assert.AreEqual (null, dgv.Rows[0].Cells[0].GetInheritedContextMenuStrip (dgv.Rows[0].Cells[0].RowIndex), "A2");
+
+                       ContextMenuStrip cms1 = new ContextMenuStrip ();
+                       cms1.Items.Add ("Moose");
+                       dgv.ContextMenuStrip = cms1;
+
+                       Assert.AreSame (cms1, dgv.Rows[0].Cells[0].GetInheritedContextMenuStrip (dgv.Rows[0].Cells[0].RowIndex), "A3");
+
+                       ContextMenuStrip cms2 = new ContextMenuStrip ();
+                       cms2.Items.Add ("Moose");
+                       dgv.Columns[0].ContextMenuStrip = cms2;
+
+                       Assert.AreSame (cms2, dgv.Rows[0].Cells[0].GetInheritedContextMenuStrip (dgv.Rows[0].Cells[0].RowIndex), "A4");
+
+                       dgv.Rows[0].ContextMenuStrip = cms1;
+                       Assert.AreSame (cms1, dgv.Rows[0].Cells[0].GetInheritedContextMenuStrip (dgv.Rows[0].Cells[0].RowIndex), "A5");
+
+                       dgv.Rows[0].Cells[0].ContextMenuStrip = cms2;
+                       Assert.AreSame (cms2, dgv.Rows[0].Cells[0].GetInheritedContextMenuStrip (dgv.Rows[0].Cells[0].RowIndex), "A6");
+               }
+
+               private class FormattedBaseCell : DataGridViewButtonCell
+               {
+                       public override Type FormattedValueType { get { return typeof (string); } }
+               }
+
+               private class BaseCell : DataGridViewButtonCell
+               {
+                       public Rectangle PublicGetContentBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex)
+                       { return GetContentBounds (graphics, cellStyle, rowIndex); }
+                       public Rectangle PublicGetErrorIconBounds (Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex)
+                       { return GetErrorIconBounds (graphics, cellStyle, rowIndex); }
+                       public string PublicGetErrorText (int rowIndex)
+                       { return GetErrorText (rowIndex); }
+                       public Rectangle PublicBorderWidths (DataGridViewAdvancedBorderStyle advancedBorderStyle)
+                       { return BorderWidths (advancedBorderStyle); }
+               }
+
+       }
+}
+#endif