mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-22 18:07:09 +00:00
187 lines
4.6 KiB
C#
187 lines
4.6 KiB
C#
/*
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
Copyright (C) 2009-2020 Michael Möller <mmoeller@openhardwaremonitor.org>
|
|
|
|
*/
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Drawing;
|
|
using Aga.Controls.Tree;
|
|
|
|
namespace OpenHardwareMonitor.GUI {
|
|
public class Node {
|
|
|
|
private TreeModel treeModel;
|
|
private Node parent;
|
|
private NodeCollection nodes;
|
|
|
|
private string text;
|
|
private Image image;
|
|
private bool visible;
|
|
private bool expanded;
|
|
|
|
private TreeModel RootTreeModel() {
|
|
Node node = this;
|
|
while (node != null) {
|
|
if (node.Model != null)
|
|
return node.Model;
|
|
node = node.parent;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public Node() : this(string.Empty) { }
|
|
|
|
public Node(string text) {
|
|
this.text = text;
|
|
this.nodes = new NodeCollection(this);
|
|
this.visible = true;
|
|
this.expanded = true;
|
|
}
|
|
|
|
public TreeModel Model {
|
|
get { return treeModel; }
|
|
set { treeModel = value; }
|
|
}
|
|
|
|
public Node Parent {
|
|
get { return parent; }
|
|
set {
|
|
if (value != parent) {
|
|
if (parent != null)
|
|
parent.nodes.Remove(this);
|
|
if (value != null)
|
|
value.nodes.Add(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
public Collection<Node> Nodes {
|
|
get { return nodes; }
|
|
}
|
|
|
|
public virtual string Text {
|
|
get { return text; }
|
|
set {
|
|
if (text != value) {
|
|
text = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public Image Image {
|
|
get { return image; }
|
|
set {
|
|
if (image != value) {
|
|
image = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool IsExpanded {
|
|
get {
|
|
return expanded;
|
|
}
|
|
set {
|
|
if (value != expanded) {
|
|
expanded = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual bool IsVisible {
|
|
get { return visible; }
|
|
set {
|
|
if (value != visible) {
|
|
visible = value;
|
|
TreeModel model = RootTreeModel();
|
|
if (model != null && parent != null) {
|
|
int index = 0;
|
|
for (int i = 0; i < parent.nodes.Count; i++) {
|
|
Node node = parent.nodes[i];
|
|
if (node == this)
|
|
break;
|
|
if (node.IsVisible || model.ForceVisible)
|
|
index++;
|
|
}
|
|
if (model.ForceVisible) {
|
|
model.OnNodeChanged(parent, index, this);
|
|
} else {
|
|
if (value)
|
|
model.OnNodeInserted(parent, index, this);
|
|
else
|
|
model.OnNodeRemoved(parent, index, this);
|
|
}
|
|
}
|
|
if (IsVisibleChanged != null)
|
|
IsVisibleChanged(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
public delegate void NodeEventHandler(Node node);
|
|
|
|
public event NodeEventHandler IsVisibleChanged;
|
|
public event NodeEventHandler NodeAdded;
|
|
public event NodeEventHandler NodeRemoved;
|
|
|
|
private class NodeCollection : Collection<Node> {
|
|
private Node owner;
|
|
|
|
public NodeCollection(Node owner) {
|
|
this.owner = owner;
|
|
}
|
|
|
|
protected override void ClearItems() {
|
|
while (this.Count != 0)
|
|
this.RemoveAt(this.Count - 1);
|
|
}
|
|
|
|
protected override void InsertItem(int index, Node item) {
|
|
if (item == null)
|
|
throw new ArgumentNullException("item");
|
|
|
|
if (item.parent != owner) {
|
|
if (item.parent != null)
|
|
item.parent.nodes.Remove(item);
|
|
item.parent = owner;
|
|
base.InsertItem(index, item);
|
|
|
|
TreeModel model = owner.RootTreeModel();
|
|
if (model != null)
|
|
model.OnStructureChanged(owner);
|
|
if (owner.NodeAdded != null)
|
|
owner.NodeAdded(item);
|
|
}
|
|
}
|
|
|
|
protected override void RemoveItem(int index) {
|
|
Node item = this[index];
|
|
item.parent = null;
|
|
base.RemoveItem(index);
|
|
|
|
TreeModel model = owner.RootTreeModel();
|
|
if (model != null)
|
|
model.OnStructureChanged(owner);
|
|
if (owner.NodeRemoved != null)
|
|
owner.NodeRemoved(item);
|
|
}
|
|
|
|
protected override void SetItem(int index, Node item) {
|
|
if (item == null)
|
|
throw new ArgumentNullException("item");
|
|
|
|
RemoveAt(index);
|
|
InsertItem(index, item);
|
|
}
|
|
}
|
|
}
|
|
}
|