using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Xml.Linq; namespace Remontor.Words { [Serializable] internal class WordsComp : IWordsItem { private IComp Comp; public WordsComp(IComp comp) { Comp = comp; } public WordsComp(String name, String ip, String description) { IPAddress iPAddress; try { iPAddress = IPAddress.Parse(ip); } catch { iPAddress = null; } Comp = new CompId(name,description, iPAddress); } public void Set(String name, String ip, String description, int imgIndex, string netname) { IPAddress iPAddress; try { iPAddress = IPAddress.Parse(ip); } catch { iPAddress = null; } Comp.SetIP(iPAddress); Comp.SetName(name); Comp.SetDescription(description); Comp.SetImage(imgIndex); Comp.SetNetName(netname); } public string GetName() { return Comp.GetName(); } public string GetNetName() { return Comp.GetNetName(); } public override bool ChekMove(IWordsItem wordsItem) { return true ; } public string GetDescription() { return Comp.GetDescription(); } public string GetIP() { if(Comp.GetIP() != null) { return Comp.GetIP().ToString(); } return null; } public IComp GetComp() { return Comp; } public override void Delete() { Comp = null; } public override List CategoryList() { return new List(); } public string NameNode() { string buf; if (Comp.GetName() == null) { buf = Comp.GetNetNameStr(); } else { buf = Comp.GetName(); if (Comp.GetNetNameStr() != null) buf += "(" + Comp.GetNetNameStr() + ")"; } return buf; } public override TreeNode NodeList() { TreeNode treeNode = new TreeNode(); treeNode.Text = NameNode(); treeNode.Name = NameNode(); treeNode.Tag = this; treeNode.ImageIndex = Comp.GetImage(); treeNode.SelectedImageIndex = Comp.GetImage(); treeNode.StateImageIndex = 0; return treeNode; } } }