From 2e2005f5be30bc51c3d93d112d33b6e72df30c1c Mon Sep 17 00:00:00 2001 From: joncham Date: Tue, 5 Dec 2006 16:31:37 +0000 Subject: [PATCH] Added DrawTreeNodeEventArgs.cs. git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@69052 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- class/Managed.Windows.Forms/ChangeLog | 4 ++ .../System.Windows.Forms.dll.sources | 1 + .../System.Windows.Forms/ChangeLog | 5 ++ .../System.Windows.Forms/DrawTreeNodeEventArgs.cs | 81 ++++++++++++++++++++++ 4 files changed, 91 insertions(+) create mode 100644 class/Managed.Windows.Forms/System.Windows.Forms/DrawTreeNodeEventArgs.cs diff --git a/class/Managed.Windows.Forms/ChangeLog b/class/Managed.Windows.Forms/ChangeLog index 7c96b1f233..d4999842ea 100644 --- a/class/Managed.Windows.Forms/ChangeLog +++ b/class/Managed.Windows.Forms/ChangeLog @@ -1,3 +1,7 @@ +2006-12-05 Jonathan Chambers + + * System.Windows.Forms.dll.sources: Added DrawTreeNodeEventArgs.cs. + 2006-12-01 Chris Toshok * System.Windows.Forms.dll.sources: add IBindableComponent.cs diff --git a/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources b/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources index 11c5a16470..bc54a59e8a 100644 --- a/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources +++ b/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources @@ -288,6 +288,7 @@ System.Windows.Forms/DrawItemEventArgs.cs System.Windows.Forms/DrawItemEventHandler.cs System.Windows.Forms/DrawItemState.cs System.Windows.Forms/DrawMode.cs +System.Windows.Forms/DrawTreeNodeEventArgs.cs System.Windows.Forms/ErrorBlinkStyle.cs System.Windows.Forms/ErrorIconAlignment.cs System.Windows.Forms/ErrorProvider.cs diff --git a/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog index 7ec2b4122e..8669322770 100644 --- a/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog +++ b/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog @@ -1,3 +1,7 @@ +2006-12-05 Jonathan Chambers + + * DrawTreeNodeEventArgs.cs: Added. + 2006-12-05 Rolf Bjarne Kvinge * InternalWindowManager.cs: Remove an unused field. @@ -24,6 +28,7 @@ * Control.cs: Make the Console.WriteLine in WndProc write more info. +>>>>>>> .r69051 2006-12-05 Chris Toshok * ToolStripManager.cs, ToolStripButton.cs, diff --git a/class/Managed.Windows.Forms/System.Windows.Forms/DrawTreeNodeEventArgs.cs b/class/Managed.Windows.Forms/System.Windows.Forms/DrawTreeNodeEventArgs.cs new file mode 100644 index 0000000000..48a48a5747 --- /dev/null +++ b/class/Managed.Windows.Forms/System.Windows.Forms/DrawTreeNodeEventArgs.cs @@ -0,0 +1,81 @@ +// 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 Jonathan Chambers +// +// Authors: +// Jonathan Chambers (joncham@gmail.com) +// + + +#if NET_2_0 +using System.Drawing; + +namespace System.Windows.Forms +{ + public class DrawTreeNodeEventArgs : EventArgs + { + private Rectangle bounds; + private bool draw_default; + private Graphics graphics; + private TreeNode node; + private TreeNodeStates state; + + #region Public Constructors + public DrawTreeNodeEventArgs (Graphics graphics, TreeNode node, + Rectangle bounds, TreeNodeStates state) + { + this.bounds = bounds; + this.draw_default = true; + this.graphics = graphics; + this.node = node; + this.state = state; + } + #endregion // Public Constructors + + #region Public Instance Properties + public Rectangle Bounds + { + get { return bounds; } + } + + public bool DrawDefault + { + get { return draw_default; } + set { draw_default = value; } + } + + Graphics Graphics + { + get { return graphics; } + } + + TreeNode Node + { + get { return node; } + } + + TreeNodeStates State + { + get { return state; } + } + #endregion // Public Instance Properties + } +} +#endif \ No newline at end of file -- 2.11.4.GIT