123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Drawing;
- namespace LYFZ.ComponentLibrary.ChatListControl
- {
- public class ChatListItem
- {
- public class ChatListSubItemCollection : IList, ICollection, IEnumerable
- {
- private int count;
- private ChatListSubItem[] m_arrSubItems;
- private ChatListItem owner;
- public int Count
- {
- get
- {
- return this.count;
- }
- }
- public ChatListSubItem this[int index]
- {
- get
- {
- if (index < 0 || index > this.count)
- {
- throw new IndexOutOfRangeException("索引在阵列的界限之外");
- }
- return this.m_arrSubItems[index];
- }
- set
- {
- if (index < 0 || index > this.count)
- {
- throw new IndexOutOfRangeException("索引在阵列的界限之外");
- }
- this.m_arrSubItems[index] = value;
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate(this.m_arrSubItems[index].Bounds);
- }
- }
- }
- bool IList.IsFixedSize
- {
- get
- {
- return false;
- }
- }
- bool IList.IsReadOnly
- {
- get
- {
- return false;
- }
- }
- object IList.this[int index]
- {
- get
- {
- return this[index];
- }
- set
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- this[index] = (ChatListSubItem)value;
- }
- }
- int ICollection.Count
- {
- get
- {
- return this.count;
- }
- }
- bool ICollection.IsSynchronized
- {
- get
- {
- return true;
- }
- }
- object ICollection.SyncRoot
- {
- get
- {
- return this;
- }
- }
- public ChatListSubItemCollection(ChatListItem owner)
- {
- this.owner = owner;
- }
- public void Sort()
- {
- Array.Sort<ChatListSubItem>(this.m_arrSubItems, 0, this.count, null);
- if (this.owner.ownerChatListBox != null)
- {
- this.owner.ownerChatListBox.Invalidate(this.owner.bounds);
- }
- }
- public int GetOnLineNumber()
- {
- int num = 0;
- int i = 0;
- int len = this.count;
- while (i < len)
- {
- if (this.m_arrSubItems[i].Status != ChatListSubItem.UserStatus.OffLine)
- {
- num++;
- }
- i++;
- }
- return num;
- }
- private void EnsureSpace(int elements)
- {
- if (this.m_arrSubItems == null)
- {
- this.m_arrSubItems = new ChatListSubItem[Math.Max(elements, 4)];
- return;
- }
- if (elements + this.count > this.m_arrSubItems.Length)
- {
- ChatListSubItem[] arrTemp = new ChatListSubItem[Math.Max(this.m_arrSubItems.Length * 2, elements + this.count)];
- this.m_arrSubItems.CopyTo(arrTemp, 0);
- this.m_arrSubItems = arrTemp;
- }
- }
- public int IndexOf(ChatListSubItem subItem)
- {
- return Array.IndexOf<ChatListSubItem>(this.m_arrSubItems, subItem);
- }
- public void Add(ChatListSubItem subItem)
- {
- if (subItem == null)
- {
- throw new ArgumentNullException("子项目不能为空");
- }
- this.EnsureSpace(1);
- if (-1 == this.IndexOf(subItem))
- {
- subItem.OwnerListItem = this.owner;
- this.m_arrSubItems[this.count++] = subItem;
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate();
- }
- }
- }
- public void AddRange(ChatListSubItem[] subItems)
- {
- if (subItems == null)
- {
- throw new ArgumentNullException("子项不能为空");
- }
- this.EnsureSpace(subItems.Length);
- try
- {
- for (int i = 0; i < subItems.Length; i++)
- {
- ChatListSubItem subItem = subItems[i];
- if (subItem == null)
- {
- throw new ArgumentNullException("子项不能为空");
- }
- if (-1 == this.IndexOf(subItem))
- {
- subItem.OwnerListItem = this.owner;
- this.m_arrSubItems[this.count++] = subItem;
- }
- }
- }
- finally
- {
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate();
- }
- }
- }
- public void AddAccordingToStatus(ChatListSubItem subItem)
- {
- if (subItem.Status == ChatListSubItem.UserStatus.OffLine)
- {
- this.Add(subItem);
- return;
- }
- int i = 0;
- int len = this.count;
- while (i < len)
- {
- if (subItem.Status <= this.m_arrSubItems[i].Status)
- {
- this.Insert(i, subItem);
- return;
- }
- i++;
- }
- this.Add(subItem);
- }
- public void Remove(ChatListSubItem subItem)
- {
- int index = this.IndexOf(subItem);
- if (-1 != index)
- {
- this.RemoveAt(index);
- }
- }
- public void RemoveAt(int index)
- {
- if (index < 0 || index > this.count)
- {
- throw new IndexOutOfRangeException("索引在阵列的界限之外");
- }
- this.count--;
- int i = index;
- int Len = this.count;
- while (i < Len)
- {
- this.m_arrSubItems[i] = this.m_arrSubItems[i + 1];
- i++;
- }
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate();
- }
- }
- public void Clear()
- {
- this.count = 0;
- this.m_arrSubItems = null;
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate();
- }
- }
- public void Insert(int index, ChatListSubItem subItem)
- {
- if (index < 0 || index > this.count)
- {
- throw new IndexOutOfRangeException("索引在阵列的界限之外");
- }
- if (subItem == null)
- {
- throw new ArgumentNullException("子项不能为空");
- }
- this.EnsureSpace(1);
- for (int i = this.count; i > index; i--)
- {
- this.m_arrSubItems[i] = this.m_arrSubItems[i - 1];
- }
- subItem.OwnerListItem = this.owner;
- this.m_arrSubItems[index] = subItem;
- this.count++;
- if (this.owner.OwnerChatListBox != null)
- {
- this.owner.OwnerChatListBox.Invalidate();
- }
- }
- public void CopyTo(Array array, int index)
- {
- if (array == null)
- {
- throw new ArgumentNullException("数组不能为空");
- }
- this.m_arrSubItems.CopyTo(array, index);
- }
- public bool Contains(ChatListSubItem subItem)
- {
- return this.IndexOf(subItem) != -1;
- }
- int IList.Add(object value)
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- this.Add((ChatListSubItem)value);
- return this.IndexOf((ChatListSubItem)value);
- }
- void IList.Clear()
- {
- this.Clear();
- }
- bool IList.Contains(object value)
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- return this.Contains((ChatListSubItem)value);
- }
- int IList.IndexOf(object value)
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- return this.IndexOf((ChatListSubItem)value);
- }
- void IList.Insert(int index, object value)
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- this.Insert(index, (ChatListSubItem)value);
- }
- void IList.Remove(object value)
- {
- if (!(value is ChatListSubItem))
- {
- throw new ArgumentException("值不能转换为ListSubItem");
- }
- this.Remove((ChatListSubItem)value);
- }
- void IList.RemoveAt(int index)
- {
- this.RemoveAt(index);
- }
- void ICollection.CopyTo(Array array, int index)
- {
- this.CopyTo(array, index);
- }
- IEnumerator IEnumerable.GetEnumerator()
- {
- int i = 0;
- int num = this.count;
- while (i < num)
- {
- yield return this.m_arrSubItems[i];
- i++;
- }
- yield break;
- }
- }
- private string text = "项目";
- private bool isOpen;
- private int twinkleSubItemNumber;
- private bool isTwinkleHide;
- private Rectangle bounds;
- private ChatListBox ownerChatListBox;
- private ChatListItem.ChatListSubItemCollection subItems;
- public string Text
- {
- get
- {
- return this.text;
- }
- set
- {
- this.text = value;
- if (this.ownerChatListBox != null)
- {
- this.ownerChatListBox.Invalidate(this.bounds);
- }
- }
- }
- [DefaultValue(false)]
- public bool IsOpen
- {
- get
- {
- return this.isOpen;
- }
- set
- {
- this.isOpen = value;
- if (this.ownerChatListBox != null)
- {
- this.ownerChatListBox.Invalidate();
- }
- }
- }
- [Browsable(false)]
- public int TwinkleSubItemNumber
- {
- get
- {
- return this.twinkleSubItemNumber;
- }
- set
- {
- this.twinkleSubItemNumber = value;
- }
- }
- public bool IsTwinkleHide
- {
- get
- {
- return this.isTwinkleHide;
- }
- set
- {
- this.isTwinkleHide = value;
- }
- }
- [Browsable(false)]
- public Rectangle Bounds
- {
- get
- {
- return this.bounds;
- }
- set
- {
- this.bounds = value;
- }
- }
- [Browsable(false)]
- public ChatListBox OwnerChatListBox
- {
- get
- {
- return this.ownerChatListBox;
- }
- set
- {
- this.ownerChatListBox = value;
- }
- }
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
- public ChatListItem.ChatListSubItemCollection SubItems
- {
- get
- {
- if (this.subItems == null)
- {
- this.subItems = new ChatListItem.ChatListSubItemCollection(this);
- }
- return this.subItems;
- }
- set
- {
- if (this.subItems != value)
- {
- this.subItems = value;
- }
- }
- }
- public ChatListItem Clone()
- {
- return new ChatListItem
- {
- Bounds = this.Bounds,
- IsOpen = this.IsOpen,
- IsTwinkleHide = this.IsTwinkleHide,
- OwnerChatListBox = this.OwnerChatListBox,
- SubItems = this.SubItems,
- Text = this.text,
- TwinkleSubItemNumber = this.TwinkleSubItemNumber
- };
- }
- public ChatListItem()
- {
- if (this.text == null)
- {
- this.text = string.Empty;
- }
- }
- public ChatListItem(string text)
- {
- this.text = text;
- }
- public ChatListItem(string text, bool bOpen)
- {
- this.text = text;
- this.isOpen = bOpen;
- }
- public ChatListItem(ChatListSubItem[] subItems)
- {
- this.subItems.AddRange(subItems);
- }
- public ChatListItem(string text, ChatListSubItem[] subItems)
- {
- this.text = text;
- this.subItems.AddRange(subItems);
- }
- public ChatListItem(string text, bool bOpen, ChatListSubItem[] subItems)
- {
- this.text = text;
- this.isOpen = bOpen;
- this.subItems.AddRange(subItems);
- }
- }
- }
|