| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- //
- // StatusStripTests.cs
- //
- // 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.
- //
- // Copyright (c) 2006 Novell, Inc.
- //
- // Authors:
- // Jonathan Pobst ([email protected])
- //
- #if NET_2_0
- using System;
- using System.Collections.Generic;
- using System.Text;
- using NUnit.Framework;
- using System.Drawing;
- using System.Windows.Forms;
- using System.ComponentModel;
- namespace MonoTests.System.Windows.Forms
- {
- [TestFixture]
- public class StatusStripTests
- {
- [Test]
- public void Constructor ()
- {
- StatusStrip ts = new StatusStrip ();
- Assert.AreEqual (false, ts.CanOverflow, "A1");
- Assert.AreEqual (new Rectangle (1, 0, 185, 22), ts.DisplayRectangle, "A2");
- Assert.AreEqual (DockStyle.Bottom, ts.Dock, "A3");
- Assert.AreEqual (ToolStripGripStyle.Hidden, ts.GripStyle, "A4");
- Assert.AreEqual (ToolStripLayoutStyle.Table, ts.LayoutStyle, "A5");
- Assert.AreEqual (new Padding (1, 0, 14, 0), ts.Padding, "A6");
- Assert.AreEqual (false, ts.ShowItemToolTips, "A7");
- Assert.AreEqual (new Rectangle (188, 0, 12, 22), ts.SizeGripBounds, "A8");
- Assert.AreEqual (true, ts.SizingGrip, "A9");
- Assert.AreEqual (true, ts.Stretch, "A10");
- }
- [Test]
- public void ControlStyle ()
- {
- ExposeProtectedProperties epp = new ExposeProtectedProperties ();
-
- ControlStyles cs = ControlStyles.ContainerControl;
- cs |= ControlStyles.UserPaint;
- cs |= ControlStyles.ResizeRedraw;
- cs |= ControlStyles.StandardClick;
- cs |= ControlStyles.SupportsTransparentBackColor;
- cs |= ControlStyles.StandardDoubleClick;
- cs |= ControlStyles.AllPaintingInWmPaint;
- cs |= ControlStyles.OptimizedDoubleBuffer;
- cs |= ControlStyles.UseTextForAccessibility;
- Assert.AreEqual (cs, epp.GetControlStyles (), "Styles");
- }
- [Test]
- public void ProtectedProperties ()
- {
- ExposeProtectedProperties epp = new ExposeProtectedProperties ();
- Assert.AreEqual (DockStyle.Bottom, epp.DefaultDock, "C1");
- Assert.AreEqual (new Padding (1, 0, 14, 0), epp.DefaultPadding, "C2");
- Assert.AreEqual (false, epp.DefaultShowItemToolTips, "C3");
- Assert.AreEqual (new Size (200, 22), epp.DefaultSize, "C4");
- }
- [Test]
- public void PropertyCanOverflow ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.CanOverflow = true;
- Assert.AreEqual (true, ts.CanOverflow, "B1");
- }
- [Test]
- public void PropertyDock ()
- {
- StatusStrip ts = new StatusStrip ();
-
- ts.Dock = DockStyle.Top;
- Assert.AreEqual (DockStyle.Top, ts.Dock, "B1");
- }
- [Test]
- [ExpectedException (typeof (InvalidEnumArgumentException))]
- public void PropertyDockIEAE ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.Dock = (DockStyle)42;
- }
- [Test]
- public void PropertyGripStyle ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.GripStyle = ToolStripGripStyle.Visible;
- Assert.AreEqual (ToolStripGripStyle.Visible, ts.GripStyle, "B1");
- }
- [Test]
- [ExpectedException (typeof (InvalidEnumArgumentException))]
- public void PropertyGripStyleIEAE ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.GripStyle = (ToolStripGripStyle) 42;
- }
- [Test]
- public void PropertyLayoutStyle ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.LayoutStyle = ToolStripLayoutStyle.VerticalStackWithOverflow;
- Assert.AreEqual (ToolStripLayoutStyle.VerticalStackWithOverflow, ts.LayoutStyle, "B1");
- }
- [Test]
- [ExpectedException (typeof (InvalidEnumArgumentException))]
- public void PropertyLayoutStyleIEAE ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.LayoutStyle = (ToolStripLayoutStyle) 42;
- }
- [Test]
- public void PropertyPadding ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.Padding = new Padding (7);
- Assert.AreEqual (new Padding (7), ts.Padding, "B1");
- }
- [Test]
- public void PropertyShowItemToolTips ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.ShowItemToolTips = true;
- Assert.AreEqual (true, ts.ShowItemToolTips, "B1");
- }
- [Test]
- public void PropertySizingGrip ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.SizingGrip = false;
- Assert.AreEqual (false, ts.SizingGrip, "B1");
- }
- [Test]
- public void PropertyStretch ()
- {
- StatusStrip ts = new StatusStrip ();
- ts.Stretch = false;
- Assert.AreEqual (false, ts.Stretch, "B1");
- }
-
- private class ExposeProtectedProperties : StatusStrip
- {
- public new DockStyle DefaultDock { get { return base.DefaultDock; } }
- public new Padding DefaultPadding { get { return base.DefaultPadding; } }
- public new bool DefaultShowItemToolTips { get { return base.DefaultShowItemToolTips; } }
- public new Size DefaultSize { get { return base.DefaultSize; } }
-
- public ControlStyles GetControlStyles ()
- {
- ControlStyles retval = (ControlStyles) 0;
-
- foreach (ControlStyles cs in Enum.GetValues (typeof (ControlStyles)))
- if (this.GetStyle (cs) == true)
- retval |= cs;
-
- return retval;
- }
- }
- }
- }
- #endif
|