xwt/Xwt.WPF/Xwt.WPFBackend/TreeStoreBackend.cs

240 строки
6.0 KiB
C#
Исходник Обычный вид История

2012-01-24 03:01:53 +04:00
//
// TreeStoreBackend.cs
//
// Author:
// Eric Maupin <ermau@xamarin.com>
2012-01-24 03:01:53 +04:00
//
// Copyright (c) 2012 Xamarin, Inc.
2012-01-24 03:01:53 +04:00
//
// 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:
//
2012-01-24 03:01:53 +04:00
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
2012-01-24 03:01:53 +04:00
// 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.
using System;
using System.Collections;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
2012-01-24 03:01:53 +04:00
using Xwt.Backends;
namespace Xwt.WPFBackend
{
public class TreeStoreBackend
: Backend, ITreeStoreBackend, INotifyPropertyChanged, INotifyCollectionChanged, IEnumerable
{
public event PropertyChangedEventHandler PropertyChanged;
public event NotifyCollectionChangedEventHandler CollectionChanged
{
add { this.topNodes.CollectionChanged += value; }
remove { this.topNodes.CollectionChanged -= value; }
}
2012-01-24 03:01:53 +04:00
public event EventHandler<TreeNodeEventArgs> NodeInserted;
public event EventHandler<TreeNodeChildEventArgs> NodeDeleted;
public event EventHandler<TreeNodeEventArgs> NodeChanged;
public event EventHandler<TreeNodeOrderEventArgs> NodesReordered;
public Type[] ColumnTypes
{
get { return this.columnTypes; }
}
2012-01-24 03:01:53 +04:00
public void Initialize (Type[] columnTypes)
{
this.columnTypes = columnTypes.ToArray ();
OnPropertyChanged ("ColumnTypes");
2012-01-24 03:01:53 +04:00
}
public TreePosition GetParent (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
if (node.Parent == null)
return null;
return node.Parent;
2012-01-24 03:01:53 +04:00
}
public TreePosition GetChild (TreePosition pos, int index)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var list = GetListForNode (node);
if (list.Count == 0 || index >= list.Count)
return null;
return list [index];
}
public int GetChildrenCount (TreePosition pos)
{
return GetListForNode ((TreeStoreNode) pos).Count;
2012-01-24 03:01:53 +04:00
}
public object GetValue (TreePosition pos, int column)
2012-01-24 03:01:53 +04:00
{
return ((TreeStoreNode) pos)[column];
}
public void SetValue (TreePosition pos, int column, object value)
{
var node = (TreeStoreNode) pos;
node[column] = value;
OnNodeChanged (new TreeNodeEventArgs (pos));
2012-01-24 03:01:53 +04:00
}
public TreePosition InsertBefore (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var newNode = new TreeStoreNode (
new object[this.columnTypes.Length],
node);
var list = GetContainingList (node);
int index = list.IndexOf (node);
list.Insert (index, newNode);
OnNodeInserted (new TreeNodeEventArgs (newNode));
return newNode;
2012-01-24 03:01:53 +04:00
}
public TreePosition InsertAfter (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var newNode = new TreeStoreNode (
new object[this.columnTypes.Length],
node);
var list = GetContainingList (node);
int index = list.IndexOf (node);
list.Insert (index + 1, newNode);
OnNodeInserted (new TreeNodeEventArgs (newNode));
return newNode;
2012-01-24 03:01:53 +04:00
}
public TreePosition AddChild (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var parent = (TreeStoreNode) pos;
var childNode = new TreeStoreNode (
new object[this.columnTypes.Length],
parent);
GetListForNode (parent).Add (childNode);
OnNodeInserted (new TreeNodeEventArgs (childNode));
return childNode;
2012-01-24 03:01:53 +04:00
}
public void Remove (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var list = GetContainingList (node);
int index = list.IndexOf (node);
list.RemoveAt (index);
OnNodeDeleted (new TreeNodeChildEventArgs (node.Parent, index));
2012-01-24 03:01:53 +04:00
}
public TreePosition GetNext (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var list = GetContainingList (node);
int index = list.IndexOf (node) + 1;
return (index < list.Count) ? list [index] : null;
2012-01-24 03:01:53 +04:00
}
public TreePosition GetPrevious (TreePosition pos)
2012-01-24 03:01:53 +04:00
{
var node = (TreeStoreNode) pos;
var list = GetContainingList (node);
int index = list.IndexOf (node) - 1;
return (index > 0) ? list [index] : null;
2012-01-24 03:01:53 +04:00
}
public void Clear ()
2012-01-24 03:01:53 +04:00
{
this.topNodes.Clear();
2012-01-24 03:01:53 +04:00
}
public IEnumerator GetEnumerator ()
2012-01-24 03:01:53 +04:00
{
return this.topNodes.GetEnumerator ();
}
private Type[] columnTypes;
private readonly ObservableCollection<TreeStoreNode> topNodes = new ObservableCollection<TreeStoreNode> ();
private ObservableCollection<TreeStoreNode> GetContainingList (TreeStoreNode node)
{
return (node.Parent == null) ? this.topNodes : node.Parent.Children;
}
private ObservableCollection<TreeStoreNode> GetListForNode (TreeStoreNode node)
{
return (node == null) ? this.topNodes : node.Children;
2012-01-24 03:01:53 +04:00
}
private void OnPropertyChanged (string name)
2012-01-24 03:01:53 +04:00
{
var changed = PropertyChanged;
if (changed != null)
changed (this, new PropertyChangedEventArgs (name));
2012-01-24 03:01:53 +04:00
}
private void OnNodeInserted (TreeNodeEventArgs e)
2012-01-24 03:01:53 +04:00
{
var handler = NodeInserted;
if (handler != null)
handler (this, e);
2012-01-24 03:01:53 +04:00
}
private void OnNodeDeleted (TreeNodeChildEventArgs e)
2012-01-24 03:01:53 +04:00
{
var handler = NodeDeleted;
if (handler != null)
handler (this, e);
2012-01-24 03:01:53 +04:00
}
private void OnNodeChanged (TreeNodeEventArgs e)
2012-01-24 03:01:53 +04:00
{
var handler = NodeChanged;
if (handler != null)
handler (this, e);
2012-01-24 03:01:53 +04:00
}
private void OnNodesReordered (TreeNodeOrderEventArgs e)
2012-01-24 03:01:53 +04:00
{
var handler = NodesReordered;
if (handler != null)
handler (this, e);
2012-01-24 03:01:53 +04:00
}
}
}