| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- //---------------------------------------------------------------------
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //
- //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
- //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- //PARTICULAR PURPOSE.
- //---------------------------------------------------------------------
- using System.Drawing;
- using System.Windows.Forms;
- using System.Threading;
-
- namespace Dongke.IBOSS.PRD.Basics.BaseControls
- {
- /// <summary>
- /// Summary description for TreeGridCell.
- /// </summary>
- public class TreeGridCell : DataGridViewTextBoxCell
- {
- private const int INDENT_WIDTH = 20;
- private const int INDENT_MARGIN = 5;
- private int glyphWidth;
- private int calculatedLeftPadding;
- internal bool IsSited;
- private Padding _previousPadding;
- private int _imageWidth = 0;
- private int _imageHeight = 0;
- private Image _image1;
- private Image _image2;
- public TreeGridCell()
- {
- glyphWidth = 15;
- calculatedLeftPadding = 0;
- this.IsSited = false;
- //_image1 = (Image)System.Resources.UpgradeReport_Minus;
- //_image2 = (Image)Resources.UpgradeReport_Plus;
- }
- public override object Clone()
- {
- TreeGridCell c = (TreeGridCell)base.Clone();
- c.glyphWidth = this.glyphWidth;
- c.calculatedLeftPadding = this.calculatedLeftPadding;
- return c;
- }
- internal protected virtual void UnSited()
- {
- // The row this cell is in is being removed from the grid.
- this.IsSited = false;
- this.Style.Padding = this._previousPadding;
- }
- internal protected virtual void Sited()
- {
- // when we are added to the DGV we can realize our style
- this.IsSited = true;
- // remember what the previous padding size is so it can be restored when unsiting
- this._previousPadding = this.Style.Padding;
- this.UpdateStyle();
- }
- internal protected virtual void UpdateStyle()
- {
- // styles shouldn't be modified when we are not sited.
- if (this.IsSited == false) return;
- int level = this.Level;
- Padding p = this._previousPadding;
- Size preferredSize;
- using (Graphics g = this.OwningNode._grid.CreateGraphics())
- {
- preferredSize = this.GetPreferredSize(g, this.InheritedStyle, this.RowIndex, new Size(0, 0));
- }
- //Image image = this.OwningNode.Image;
- //if (image != null)
- //{
- // // calculate image size
- // _imageWidth = image.Width + 2;
- // _imageHeight = image.Height + 2;
- //}
- //else
- //{
- // _imageWidth = glyphWidth;
- // _imageHeight = 0;
- //}
- // TODO: Make this cleaner
- if (preferredSize.Height < _imageHeight)
- {
- this.Style.Padding = new Padding(p.Left + (level * INDENT_WIDTH) + _imageWidth + INDENT_MARGIN,
- p.Top + (_imageHeight / 2), p.Right, p.Bottom + (_imageHeight / 2));
- }
- else
- {
- this.Style.Padding = new Padding(p.Left + (level * INDENT_WIDTH) + _imageWidth + INDENT_MARGIN,
- p.Top, p.Right, p.Bottom);
- }
- calculatedLeftPadding = ((level - 1) * glyphWidth) + _imageWidth + INDENT_MARGIN;
- }
- public int Level
- {
- get
- {
- TreeGridNode row = this.OwningNode;
- if (row != null)
- {
- return row.Level;
- }
- else
- return -1;
- }
- }
- protected virtual int GlyphMargin
- {
- get
- {
- return ((this.Level - 1) * INDENT_WIDTH) + INDENT_MARGIN;
- }
- }
- protected virtual int GlyphOffset
- {
- get
- {
- return ((this.Level - 1) * INDENT_WIDTH);
- }
- }
- //protected override void Paint(Graphics graphics, Rectangle clipBounds,
- // Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState,
- // object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle,
- // DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
- //{
- // TreeGridNode node = this.OwningNode;
- // if (node == null) return;
- // //Image image = node.Image;
- // if (this._imageHeight == 0 && image != null) this.UpdateStyle();
- // // paint the cell normally
- // base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, value,
- // formattedValue, errorText, cellStyle, advancedBorderStyle, paintParts);
- // // TODO: Indent width needs to take image size into account
- // Rectangle glyphRect = new Rectangle(cellBounds.X + this.GlyphMargin,
- // cellBounds.Y, INDENT_WIDTH, cellBounds.Height - 1);
- // int glyphHalf = glyphRect.Width / 2;
- // //TODO: This painting code needs to be rehashed to be cleaner
- // int level = this.Level;
- // // Paint tree lines
- // if (node._grid != null && node._grid.ShowLines)
- // {
- // using (Pen linePen = new Pen(SystemBrushes.ControlDark, 1.0f))
- // {
- // linePen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
- // bool isLastSibling = node.IsLastSibling;
- // bool isFirstSibling = node.IsFirstSibling;
- // if (node.Level == 1)
- // {
- // // the Root nodes display their lines differently
- // if (isFirstSibling && isLastSibling)
- // {
- // // only node, both first and last. Just draw horizontal line
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // }
- // else if (isLastSibling)
- // {
- // // last sibling doesn't draw the line extended below. Paint horizontal then vertical
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top, glyphRect.X + 4,
- // cellBounds.Top + cellBounds.Height / 2);
- // }
- // else if (isFirstSibling)
- // {
- // // first sibling doesn't draw the line extended above. Paint horizontal then vertical
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.X + 4, cellBounds.Bottom);
- // }
- // else
- // {
- // // normal drawing draws extended from top to bottom. Paint horizontal then vertical
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top, glyphRect.X + 4, cellBounds.Bottom);
- // }
- // }
- // else
- // {
- // if (isLastSibling)
- // {
- // // last sibling doesn't draw the line extended below. Paint horizontal then vertical
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top,
- // glyphRect.X + 4, cellBounds.Top + cellBounds.Height / 2);
- // }
- // else
- // {
- // // normal drawing draws extended from top to bottom. Paint horizontal then vertical
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top
- // + cellBounds.Height / 2, glyphRect.Right, cellBounds.Top + cellBounds.Height / 2);
- // graphics.DrawLine(linePen, glyphRect.X + 4, cellBounds.Top, glyphRect.X + 4, cellBounds.Bottom);
- // }
- // // paint lines of previous levels to the root
- // TreeGridNode previousNode = node.Parent;
- // int horizontalStop = (glyphRect.X + 4) - INDENT_WIDTH;
- // while (!previousNode.IsRoot)
- // {
- // if (previousNode.HasChildren && !previousNode.IsLastSibling)
- // {
- // // paint vertical line
- // graphics.DrawLine(linePen, horizontalStop, cellBounds.Top, horizontalStop, cellBounds.Bottom);
- // }
- // previousNode = previousNode.Parent;
- // horizontalStop = horizontalStop - INDENT_WIDTH;
- // }
- // }
- // }
- // }
- // if (node.HasChildren || (node._grid != null && node._grid.VirtualNodes))
- // {
- // Point pp = new Point();
- // //Paint node glyphs
- // if (node.IsExpanded)
- // {
- // pp = new Point(glyphRect.X + this.glyphWidth, cellBounds.Height / 4 + cellBounds.Y);
- // graphics.DrawImage(_image1, pp);
- // }
- // else
- // {
- // pp = new Point(glyphRect.X + this.glyphWidth, cellBounds.Height / 4 + cellBounds.Y);
- // graphics.DrawImage(_image2, pp);
- // }
- // }
- //}
- protected override void OnMouseUp(DataGridViewCellMouseEventArgs e)
- {
- base.OnMouseUp(e);
- TreeGridNode node = this.OwningNode;
- if (node != null)
- node._grid._inExpandCollapseMouseCapture = false;
- }
- //protected override void OnMouseDown(DataGridViewCellMouseEventArgs e)
- //{
- // if (e.Location.X > this.InheritedStyle.Padding.Left)
- // {
- // base.OnMouseDown(e);
- // }
- // else
- // {
- // // Expand the node
- // //TODO: Calculate more precise location
- // TreeGridNode node = this.OwningNode;
- // if (node != null)
- // {
- // node._grid._inExpandCollapseMouseCapture = true;
- // if (node.IsExpanded)
- // node.Collapse();
- // else
- // node.Expand();
- // }
- // }
- //}
- public TreeGridNode OwningNode
- {
- get { return base.OwningRow as TreeGridNode; }
- }
- }
- public class TreeGridColumn : DataGridViewTextBoxColumn
- {
- internal Image _defaultNodeImage;
- public TreeGridColumn()
- {
- this.CellTemplate = new TreeGridCell();
- }
- // Need to override Clone for design-time support.
- public override object Clone()
- {
- TreeGridColumn c = (TreeGridColumn)base.Clone();
- c._defaultNodeImage = this._defaultNodeImage;
- return c;
- }
- public Image DefaultNodeImage
- {
- get { return _defaultNodeImage; }
- set { _defaultNodeImage = value; }
- }
- }
- }
|