2019-04-18 20:04:58 +00:00
|
|
|
|
using bzit.bomg;
|
2019-04-20 16:05:55 +00:00
|
|
|
|
using bzit.bomg.Data;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
using bzit.bomg.Models;
|
|
|
|
|
using System;
|
2019-04-20 16:05:55 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
using System.IO;
|
2019-04-20 16:05:55 +00:00
|
|
|
|
using System.Text;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
using System.Windows.Forms;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
using Resources = bzit.bomg.Properties.Resources;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
|
|
|
|
namespace RyzStudio.Windows.Forms
|
|
|
|
|
{
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public class BookmarkTreeView : System.Windows.Forms.TreeView
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-16 20:57:31 +00:00
|
|
|
|
public enum IconSet
|
|
|
|
|
{
|
|
|
|
|
Root = 0,
|
|
|
|
|
Folder1,
|
|
|
|
|
Folder2,
|
|
|
|
|
Default
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public enum NodeType
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
Root,
|
|
|
|
|
Folder,
|
|
|
|
|
Page
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BookmarkTreeViewSNode SNode { get; set; }
|
|
|
|
|
|
|
|
|
|
protected IconDatabase iconDatabase = null;
|
|
|
|
|
|
2019-04-16 20:57:31 +00:00
|
|
|
|
protected TreeNode draggingNode = null;
|
2019-04-19 02:51:55 +00:00
|
|
|
|
protected bool allowBeginEdit = false;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
protected bool hasChanged = false;
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public BookmarkTreeView() : base()
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-18 20:04:58 +00:00
|
|
|
|
this.SNode = new BookmarkTreeViewSNode(this);
|
|
|
|
|
|
|
|
|
|
if (this.ImageList == null)
|
|
|
|
|
{
|
|
|
|
|
this.ImageList = new ImageList();
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
this.ImageList.ColorDepth = ColorDepth.Depth16Bit;
|
|
|
|
|
this.ImageList.ImageSize = new Size(16, 16);
|
|
|
|
|
this.ImageList.TransparentColor = Color.Transparent;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
this.ImageList.Images.Clear();
|
2019-04-22 12:30:42 +00:00
|
|
|
|
this.ImageList.Images.Add(Resources.hexagon);
|
2019-04-18 20:04:58 +00:00
|
|
|
|
this.ImageList.Images.Add(Resources.folder);
|
|
|
|
|
this.ImageList.Images.Add(Resources.folder_explore);
|
2019-04-22 12:30:42 +00:00
|
|
|
|
this.ImageList.Images.Add(Resources.file_text);
|
2019-04-20 16:05:55 +00:00
|
|
|
|
|
|
|
|
|
this.PathSeparator = "\n";
|
2019-04-18 20:04:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
|
|
|
public new ImageList ImageList { get => base.ImageList; set => base.ImageList = value; }
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public bool HasChanged
|
|
|
|
|
{
|
|
|
|
|
get { return hasChanged; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
hasChanged = value;
|
|
|
|
|
|
2019-04-19 02:51:55 +00:00
|
|
|
|
//OnChanged?.Invoke(null, null);
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
#region public methods
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public bool InitialiseIconDatabase(out string message, string filename)
|
|
|
|
|
{
|
|
|
|
|
message = string.Empty;
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
if (iconDatabase == null)
|
|
|
|
|
{
|
|
|
|
|
iconDatabase = new IconDatabase();
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
bool rv = false;
|
|
|
|
|
if (File.Exists(filename))
|
|
|
|
|
{
|
|
|
|
|
rv = iconDatabase.LoadFile(filename);
|
|
|
|
|
if (!rv)
|
|
|
|
|
{
|
|
|
|
|
rv = iconDatabase.Create(filename, true, null, true);
|
|
|
|
|
if (!rv)
|
|
|
|
|
{
|
|
|
|
|
message = iconDatabase.LastError;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
rv = iconDatabase.Create(filename, true, null, true);
|
|
|
|
|
if (!rv)
|
|
|
|
|
{
|
|
|
|
|
message = iconDatabase.LastError;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
public TreeNode AddFolder(TreeNode node)
|
|
|
|
|
{
|
|
|
|
|
//return this.AddFolder("New Folder " + (new Random()).Next(10001, 99999).ToString());
|
|
|
|
|
return this.AddFolder(node, "New Folder (" + DateTime.Now.ToString("yyyy-MM-dd-HHmmss") + ")");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TreeNode AddFolder(TreeNode node, string name)
|
|
|
|
|
{
|
|
|
|
|
if (node == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (node.Tag != null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return node.Nodes.Add(encodePath(name), name, (int)IconSet.Folder1, (int)IconSet.Folder2);
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-21 17:53:56 +00:00
|
|
|
|
public void AddItem(List<BookmarkItemViewModel> viewModelList)
|
|
|
|
|
{
|
|
|
|
|
this.Clear();
|
|
|
|
|
|
|
|
|
|
if (viewModelList == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (BookmarkItemViewModel item in viewModelList)
|
|
|
|
|
{
|
|
|
|
|
AddItem(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public void AddItem(BookmarkItemViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
int iconIndex = addIcon(viewModel);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
TreeNode tn = new TreeNode(viewModel.SiteName, iconIndex, iconIndex);
|
|
|
|
|
tn.Tag = viewModel;
|
|
|
|
|
tn.ToolTipText = viewModel.ToString();
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
TreeNode tn2 = addFolderPath(viewModel.TreeviewPath);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
tn2.Nodes.Add(tn);
|
2019-04-19 02:51:55 +00:00
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public void AddOrUpdateItem_OnSelectedNode(BookmarkItemViewModel viewModel)
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-18 20:04:58 +00:00
|
|
|
|
switch (this.SNode.GetNodeType())
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-18 20:04:58 +00:00
|
|
|
|
case NodeType.Root:
|
|
|
|
|
case NodeType.Folder:
|
|
|
|
|
addItem_OnSelectedNode(viewModel);
|
2019-04-19 02:51:55 +00:00
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case NodeType.Page:
|
|
|
|
|
updateItem_OnSelectedNode(viewModel);
|
2019-04-19 02:51:55 +00:00
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
2019-04-18 20:04:58 +00:00
|
|
|
|
}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-22 11:40:29 +00:00
|
|
|
|
public void Clear()
|
|
|
|
|
{
|
|
|
|
|
this.Nodes.Clear();
|
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Clear(string name)
|
|
|
|
|
{
|
|
|
|
|
this.Nodes.Clear();
|
|
|
|
|
this.Nodes.Add("", name?.Trim(), (int)IconSet.Root, (int)IconSet.Root);
|
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CloseIconDatabase()
|
|
|
|
|
{
|
|
|
|
|
iconDatabase.Close();
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
public NodeType GetNodeType(TreeNode node)
|
|
|
|
|
{
|
|
|
|
|
if (node.Tag == null)
|
|
|
|
|
{
|
|
|
|
|
if (node.Equals(this.Nodes[0]))
|
|
|
|
|
{
|
|
|
|
|
return NodeType.Root;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return NodeType.Folder;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-18 20:04:58 +00:00
|
|
|
|
if (node.Tag is BookmarkItemViewModel)
|
|
|
|
|
{
|
|
|
|
|
return NodeType.Page;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return NodeType.None;
|
|
|
|
|
}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
public string GetNodePath(TreeNode node)
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
2019-04-20 16:05:55 +00:00
|
|
|
|
string[] folderList = node.FullPath.Split('\n');
|
|
|
|
|
if (folderList.Length < 2)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-20 17:25:14 +00:00
|
|
|
|
//if (folderList.Length < 2)
|
|
|
|
|
//{
|
|
|
|
|
// return "/";
|
|
|
|
|
//}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
StringBuilder sb = new StringBuilder();
|
2017-07-30 11:59:34 +00:00
|
|
|
|
|
2019-04-20 17:25:14 +00:00
|
|
|
|
for (int i=0; i<(folderList.Length - 1); i++)
|
2019-04-20 16:05:55 +00:00
|
|
|
|
{
|
|
|
|
|
sb.Append("\\");
|
|
|
|
|
sb.Append(encodePath(folderList[i] ?? string.Empty));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sb.Append("\\");
|
|
|
|
|
|
|
|
|
|
return sb.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BookmarkItemViewModel GetViewModel(TreeNode node) => (BookmarkItemViewModel)node.Tag;
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
public List<BookmarkItemViewModel> GetBookmarkList()
|
|
|
|
|
{
|
|
|
|
|
List<BookmarkItemViewModel> rs = new List<BookmarkItemViewModel>();
|
|
|
|
|
|
|
|
|
|
if (this.Nodes.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return rs;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-21 17:53:56 +00:00
|
|
|
|
foreach (TreeNode item in this.Nodes)
|
|
|
|
|
{
|
|
|
|
|
traverseBookmarkList(rs, item);
|
|
|
|
|
}
|
2019-04-20 16:05:55 +00:00
|
|
|
|
|
|
|
|
|
return rs;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool FindTextNode(TreeNode node, string term)
|
|
|
|
|
{
|
|
|
|
|
if (node == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.Nodes.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
bool rt = false;
|
|
|
|
|
bool inclusive = false;
|
|
|
|
|
TreeNode tn = node;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
if (tn == null)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
if (inclusive)
|
|
|
|
|
{
|
|
|
|
|
if (tn.Text.ToLower().Contains(term.ToLower()))
|
|
|
|
|
{
|
|
|
|
|
this.SelectedNode = tn;
|
|
|
|
|
this.SelectedNode.EnsureVisible();
|
|
|
|
|
rt = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
if (tn.Nodes.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
tn = tn.Nodes[0];
|
|
|
|
|
inclusive = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (tn.NextNode != null)
|
|
|
|
|
{
|
|
|
|
|
tn = tn.NextNode;
|
|
|
|
|
inclusive = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
tn = tn.Parent;
|
|
|
|
|
if (tn == null)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tn.NextNode != null)
|
|
|
|
|
{
|
|
|
|
|
tn = tn.NextNode;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inclusive = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
return rt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
#region integrated behaviour
|
|
|
|
|
|
|
|
|
|
protected override void OnItemDrag(ItemDragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnItemDrag(e);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
draggingNode = (TreeNode)e.Item;
|
|
|
|
|
DoDragDrop(e.Item, DragDropEffects.Move);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragDrop(DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnDragDrop(e);
|
|
|
|
|
|
|
|
|
|
if (draggingNode.Level <= 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TreeNode en = this.GetNodeAt(this.PointToClient(new Point(e.X, e.Y)));
|
|
|
|
|
if (en == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:57:31 +00:00
|
|
|
|
if (isNodeChild(draggingNode, en))
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TreeNode dn = draggingNode;
|
|
|
|
|
if (en.Tag == null)
|
|
|
|
|
{
|
|
|
|
|
dn.Parent.Nodes.Remove(dn);
|
|
|
|
|
en.Nodes.Insert(0, dn);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
en.Parent.Nodes.Remove(dn);
|
|
|
|
|
en.Parent.Nodes.Insert(en.Index + 1, dn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.HasChanged = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragEnter(DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnDragEnter(e);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
e.Effect = DragDropEffects.Move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnMouseDown(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseDown(e);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
this.SelectedNode = this.GetNodeAt(e.Location);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDragOver(DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnDragOver(e);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
this.SelectedNode = this.GetNodeAt(this.PointToClient(new Point(e.X, e.Y)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnBeforeLabelEdit(NodeLabelEditEventArgs e)
|
|
|
|
|
{
|
2019-04-19 02:51:55 +00:00
|
|
|
|
if (!allowBeginEdit)
|
|
|
|
|
{
|
|
|
|
|
allowBeginEdit = false;
|
|
|
|
|
|
|
|
|
|
e.CancelEdit = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-04-18 20:04:58 +00:00
|
|
|
|
|
2019-04-19 02:51:55 +00:00
|
|
|
|
this.HasChanged = true;
|
2019-04-18 20:04:58 +00:00
|
|
|
|
|
2019-04-19 02:51:55 +00:00
|
|
|
|
base.OnBeforeLabelEdit(e);
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnAfterLabelEdit(NodeLabelEditEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnAfterLabelEdit(e);
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
//if (e.Node.Tag == null)
|
|
|
|
|
//{
|
|
|
|
|
// if (e.Label == null)
|
|
|
|
|
// {
|
|
|
|
|
// e.CancelEdit = true;
|
|
|
|
|
// }
|
|
|
|
|
// else
|
|
|
|
|
// {
|
|
|
|
|
// if (e.Label.Trim().Length <= 0)
|
|
|
|
|
// {
|
|
|
|
|
// e.CancelEdit = true;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// e.CancelEdit = true;
|
|
|
|
|
//}
|
|
|
|
|
|
2019-04-19 02:51:55 +00:00
|
|
|
|
allowBeginEdit = false;
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnPreviewKeyDown(PreviewKeyDownEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
TreeNode tn = this.SelectedNode;
|
|
|
|
|
if (tn == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-04-16 20:57:31 +00:00
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
NodeType nodeType = this.SNode.GetNodeType();
|
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
switch (e.KeyCode)
|
|
|
|
|
{
|
|
|
|
|
case Keys.Insert:
|
|
|
|
|
if (e.Modifiers == Keys.Shift)
|
|
|
|
|
{
|
2019-04-20 16:05:55 +00:00
|
|
|
|
if ((nodeType == NodeType.Root) || (nodeType == NodeType.Folder))
|
|
|
|
|
{
|
|
|
|
|
this.SelectedNode = this.SNode.AddFolder();
|
|
|
|
|
}
|
|
|
|
|
else if (nodeType == NodeType.Page)
|
|
|
|
|
{
|
|
|
|
|
this.SelectedNode = tn.Parent;
|
|
|
|
|
this.SelectedNode = this.SNode.AddFolder();
|
|
|
|
|
}
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case Keys.Delete:
|
|
|
|
|
if (!tn.IsEditing)
|
|
|
|
|
{
|
2019-04-16 20:57:31 +00:00
|
|
|
|
this.SNode.Delete();
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case Keys.F2:
|
2019-04-19 02:51:55 +00:00
|
|
|
|
allowBeginEdit = true;
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
this.SNode.Edit();
|
2019-04-20 16:05:55 +00:00
|
|
|
|
break;
|
|
|
|
|
case Keys.F3:
|
|
|
|
|
switch (nodeType)
|
|
|
|
|
{
|
|
|
|
|
case NodeType.Root:
|
|
|
|
|
case NodeType.Folder:
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Clipboard.SetText(tn.Text ?? string.Empty);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case NodeType.Page:
|
|
|
|
|
BookmarkItemViewModel viewModel = this.SNode.GetViewModel();
|
|
|
|
|
if (viewModel != null)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Clipboard.SetText(viewModel.SiteAddress ?? string.Empty);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-30 11:59:34 +00:00
|
|
|
|
break;
|
|
|
|
|
case Keys.Up:
|
|
|
|
|
if (e.Modifiers == Keys.Control)
|
|
|
|
|
{
|
2019-04-16 20:57:31 +00:00
|
|
|
|
this.SNode.MoveUp();
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case Keys.Down:
|
|
|
|
|
if (e.Modifiers == Keys.Control)
|
|
|
|
|
{
|
2019-04-16 20:57:31 +00:00
|
|
|
|
this.SNode.MoveDown();
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-19 02:51:55 +00:00
|
|
|
|
base.OnPreviewKeyDown(e);
|
2017-07-30 11:59:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
protected int addIcon(BookmarkItemViewModel viewModel) => addIcon(viewModel.ToModel());
|
|
|
|
|
|
|
|
|
|
protected int addIcon(BookmarkItemModel model)
|
|
|
|
|
{
|
|
|
|
|
if (this.ImageList.Images.ContainsKey(model.SiteAddress))
|
|
|
|
|
{
|
|
|
|
|
return this.ImageList.Images.IndexOfKey(model.SiteAddress);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (iconDatabase.HasIcon(model.SiteAddress))
|
|
|
|
|
{
|
|
|
|
|
Image rs = iconDatabase.GetIcon(model.SiteAddress);
|
|
|
|
|
if (rs == null)
|
|
|
|
|
{
|
|
|
|
|
return (int)IconSet.Default;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.ImageList.Images.Add(model.SiteAddress, rs);
|
|
|
|
|
|
|
|
|
|
return this.ImageList.Images.IndexOfKey(model.SiteAddress);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Bitmap bmp = model.RetrieveFavicon();
|
|
|
|
|
if (bmp == null)
|
|
|
|
|
{
|
|
|
|
|
return (int)IconSet.Default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ImageList.Images.Add(model.SiteAddress, bmp);
|
|
|
|
|
|
|
|
|
|
return this.ImageList.Images.IndexOfKey(model.SiteAddress);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected TreeNode addFolderPath(string path)
|
|
|
|
|
{
|
2019-04-21 17:53:56 +00:00
|
|
|
|
TreeNode tn = null;
|
|
|
|
|
//TreeNode tn = this.Nodes[0];
|
|
|
|
|
//if (tn == null)
|
|
|
|
|
//{
|
|
|
|
|
// return tn;
|
|
|
|
|
//}
|
2019-04-18 20:04:58 +00:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(path))
|
|
|
|
|
{
|
|
|
|
|
return tn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(path.Trim('\\')))
|
|
|
|
|
{
|
|
|
|
|
return tn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string[] folderList = path.Trim('\\').Split('\\');
|
|
|
|
|
if (folderList.Length <= 0)
|
|
|
|
|
{
|
|
|
|
|
return tn;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-21 17:53:56 +00:00
|
|
|
|
for (int i=0; i<folderList.Length; i++)
|
2019-04-18 20:04:58 +00:00
|
|
|
|
{
|
2019-04-21 17:53:56 +00:00
|
|
|
|
string item = folderList[i];
|
|
|
|
|
|
|
|
|
|
if (i <= 0)
|
2019-04-18 20:04:58 +00:00
|
|
|
|
{
|
2019-04-21 17:53:56 +00:00
|
|
|
|
if (!this.Nodes.ContainsKey(item))
|
|
|
|
|
{
|
|
|
|
|
this.Nodes.Add(item, decodePath(item), (int)IconSet.Root, (int)IconSet.Root);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tn = this.Nodes[item];
|
2019-04-18 20:04:58 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-04-21 17:53:56 +00:00
|
|
|
|
if (!tn.Nodes.ContainsKey(item))
|
|
|
|
|
{
|
|
|
|
|
tn.Nodes.Add(item, decodePath(item), (int)IconSet.Folder1, (int)IconSet.Folder2);
|
|
|
|
|
}
|
2019-04-18 20:04:58 +00:00
|
|
|
|
|
2019-04-21 17:53:56 +00:00
|
|
|
|
tn = tn.Nodes[item];
|
|
|
|
|
}
|
2019-04-18 20:04:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void addItem_OnSelectedNode(BookmarkItemViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
if (this.SelectedNode == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int iconIndex = addIcon(viewModel);
|
|
|
|
|
|
|
|
|
|
TreeNode tn = new TreeNode(viewModel.SiteName, iconIndex, iconIndex);
|
|
|
|
|
tn.Tag = viewModel;
|
|
|
|
|
tn.ToolTipText = viewModel.ToString();
|
|
|
|
|
|
|
|
|
|
int n = this.SelectedNode.Nodes.Add(tn);
|
|
|
|
|
|
|
|
|
|
this.SelectedNode = this.SelectedNode.Nodes[n];
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-20 16:05:55 +00:00
|
|
|
|
protected string decodePath(string value) => System.Web.HttpUtility.UrlDecode(value);
|
|
|
|
|
|
|
|
|
|
protected string encodePath(string value) => System.Web.HttpUtility.UrlEncode(value);
|
|
|
|
|
|
|
|
|
|
protected void traverseBookmarkList(List<BookmarkItemViewModel> rs, TreeNode node)
|
|
|
|
|
{
|
|
|
|
|
foreach (TreeNode tn in node.Nodes)
|
|
|
|
|
{
|
|
|
|
|
NodeType nodeType = this.GetNodeType(tn);
|
|
|
|
|
if (nodeType == NodeType.Folder)
|
|
|
|
|
{
|
|
|
|
|
traverseBookmarkList(rs, tn);
|
|
|
|
|
}
|
|
|
|
|
else if (nodeType == NodeType.Page)
|
|
|
|
|
{
|
|
|
|
|
BookmarkItemViewModel nodeTag = this.GetViewModel(tn);
|
|
|
|
|
nodeTag.TreeviewPath = this.GetNodePath(tn);
|
|
|
|
|
|
|
|
|
|
if (nodeTag != null)
|
|
|
|
|
{
|
|
|
|
|
rs.Add(nodeTag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-18 20:04:58 +00:00
|
|
|
|
protected void updateItem_OnSelectedNode(BookmarkItemViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
if (this.SelectedNode == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int iconIndex = addIcon(viewModel);
|
|
|
|
|
|
|
|
|
|
this.SelectedNode.Text = viewModel.SiteName;
|
|
|
|
|
this.SelectedNode.ImageIndex = iconIndex;
|
|
|
|
|
this.SelectedNode.SelectedImageIndex = iconIndex;
|
|
|
|
|
this.SelectedNode.Tag = viewModel;
|
|
|
|
|
this.SelectedNode.ToolTipText = viewModel.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 20:57:31 +00:00
|
|
|
|
protected bool isNodeChild(TreeNode drag_node, TreeNode drop_node)
|
2017-07-30 11:59:34 +00:00
|
|
|
|
{
|
|
|
|
|
TreeNode tn = drop_node;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
if (tn.Parent == null)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tn.Equals(drag_node))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tn = tn.Parent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|