📄 treeitem.cs
字号:
// Copyright (C) 2005 Riccardo Marzi <riccardo@dotnetfireball.net>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
using System;
using System.Collections.Generic;
using System.Text;
namespace Fireball.Collections.Generic
{
public class TreeItem<T>
{
private string _id;
private string _parent;
private string _next;
private string _previus;
//private string _fullPath;
private TreeCollection<T> _ownerCollection;
private LightCollection<string> _subitems;
internal TreeItem(string id, string parent, ref TreeCollection<T> ownerCollection)
{
_id = id;
_parent = parent;
_ownerCollection = ownerCollection;
_subitems = new LightCollection<string>();
}
internal void SetId(string id)
{
_id=id;
}
internal void SetParent(string parent)
{
_parent = parent;
}
/*internal void SetGlobalCollectionRef(ref KeyedCollection<TreeItemInternal<T>> globalCollection)
{
_globalCollection = globalCollection;
}*/
internal void SetNext(string next)
{
_next = next;
}
internal void SetPrevius(string previus)
{
_previus = previus;
}
public string Id
{
get
{
return _id;
}
}
public T Value
{
get
{
return _ownerCollection.GlobalValues[_id];
}
set
{
_ownerCollection.GlobalValues[_id] = value;
}
}
public int Level
{
get
{
string[] strs = GetFullPath().Split('/');
return strs.Length-1;
}
}
public TreeItem<T> Parent
{
get
{
return _ownerCollection.GlobalCollection[_parent];
}
}
public TreeItem<T> Next
{
get
{
return _ownerCollection.GlobalCollection[_next];
}
}
public TreeItem<T> Previus
{
get
{
return _ownerCollection.GlobalCollection[_previus];
}
}
public TreeItemCollection<T> Subitems
{
get
{
return new TreeItemCollection<T>(ref _ownerCollection,_id,_subitems);
}
}
public string GetFullPath()
{
LightCollection<string> paths=new LightCollection<string>();
paths.Add(_id);
TreeItem<T> parent = this.Parent;
while (parent != null)
{
paths.Add(parent.Id);
parent = parent.Parent;
}
paths.Reverse();
string fullPath = string.Join("/", paths.GetItems());
return fullPath;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -