You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.8 KiB
73 lines
1.8 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using ICSharpCode.SharpDevelop.Gui; |
|
using System; |
|
using System.Xml; |
|
|
|
namespace ICSharpCode.XmlEditor |
|
{ |
|
public class XmlElementTreeNode : ExtTreeNode |
|
{ |
|
public const string XmlElementTreeNodeImageKey = "XmlElementTreeNodeImage"; |
|
|
|
XmlElement element; |
|
|
|
public XmlElementTreeNode(XmlElement element) |
|
{ |
|
this.element = element; |
|
Text = GetDisplayText(element); |
|
Tag = element; |
|
ImageKey = XmlElementTreeNodeImageKey; |
|
|
|
if (element.HasChildNodes) { |
|
// Add dummy node so that the tree node can be |
|
// expanded in the tree view. |
|
Nodes.Add(new ExtTreeNode()); |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Gets the XmlElement associated with this tree node. |
|
/// </summary> |
|
public XmlElement XmlElement { |
|
get { |
|
return element; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Adds child elements to this tree node. |
|
/// </summary> |
|
protected override void Initialize() |
|
{ |
|
Nodes.Clear(); |
|
foreach (XmlNode childNode in element.ChildNodes) { |
|
XmlElement childElement = childNode as XmlElement; |
|
XmlText text = childNode as XmlText; |
|
if (childElement != null) { |
|
XmlElementTreeNode treeNode = new XmlElementTreeNode(childElement); |
|
treeNode.AddTo(this); |
|
} else if (text != null) { |
|
XmlTextTreeNode treeNode = new XmlTextTreeNode(text); |
|
treeNode.AddTo(this); |
|
} |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Gets the tree node's text for the element. |
|
/// </summary> |
|
static string GetDisplayText(XmlElement element) |
|
{ |
|
if (element.Prefix.Length > 0) { |
|
return String.Concat(element.Prefix, ":", element.LocalName); |
|
} |
|
return element.LocalName; |
|
} |
|
} |
|
}
|
|
|