ChatListItemCollection.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. using System;
  2. using System.Collections;
  3. namespace LYFZ.ComponentLibrary.ChatListControl
  4. {
  5. public class ChatListItemCollection : IList, ICollection, IEnumerable
  6. {
  7. private int count;
  8. private ChatListItem[] m_arrItem;
  9. private ChatListBox owner;
  10. public int Count
  11. {
  12. get
  13. {
  14. return this.count;
  15. }
  16. }
  17. public ChatListItem this[int index]
  18. {
  19. get
  20. {
  21. if (index < 0 || index >= this.count)
  22. {
  23. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  24. }
  25. return this.m_arrItem[index];
  26. }
  27. set
  28. {
  29. if (index < 0 || index >= this.count)
  30. {
  31. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  32. }
  33. this.m_arrItem[index] = value;
  34. }
  35. }
  36. bool IList.IsFixedSize
  37. {
  38. get
  39. {
  40. return false;
  41. }
  42. }
  43. bool IList.IsReadOnly
  44. {
  45. get
  46. {
  47. return false;
  48. }
  49. }
  50. object IList.this[int index]
  51. {
  52. get
  53. {
  54. return this[index];
  55. }
  56. set
  57. {
  58. if (!(value is ChatListItem))
  59. {
  60. throw new ArgumentException("Value cannot convert to ListItem");
  61. }
  62. this[index] = (ChatListItem)value;
  63. }
  64. }
  65. int ICollection.Count
  66. {
  67. get
  68. {
  69. return this.count;
  70. }
  71. }
  72. bool ICollection.IsSynchronized
  73. {
  74. get
  75. {
  76. return true;
  77. }
  78. }
  79. object ICollection.SyncRoot
  80. {
  81. get
  82. {
  83. return this;
  84. }
  85. }
  86. public ChatListItemCollection(ChatListBox owner)
  87. {
  88. this.owner = owner;
  89. }
  90. private void EnsureSpace(int elements)
  91. {
  92. if (this.m_arrItem == null)
  93. {
  94. this.m_arrItem = new ChatListItem[Math.Max(elements, 4)];
  95. return;
  96. }
  97. if (this.count + elements > this.m_arrItem.Length)
  98. {
  99. ChatListItem[] arrTemp = new ChatListItem[Math.Max(this.count + elements, this.m_arrItem.Length * 2)];
  100. this.m_arrItem.CopyTo(arrTemp, 0);
  101. this.m_arrItem = arrTemp;
  102. }
  103. }
  104. public int IndexOf(ChatListItem item)
  105. {
  106. return Array.IndexOf<ChatListItem>(this.m_arrItem, item);
  107. }
  108. public void Add(ChatListItem item)
  109. {
  110. if (item == null)
  111. {
  112. throw new ArgumentNullException("Item cannot be null");
  113. }
  114. this.EnsureSpace(1);
  115. if (-1 == this.IndexOf(item))
  116. {
  117. item.OwnerChatListBox = this.owner;
  118. this.m_arrItem[this.count++] = item;
  119. this.owner.Invalidate();
  120. }
  121. }
  122. public void AddRange(ChatListItem[] items)
  123. {
  124. if (items == null)
  125. {
  126. throw new ArgumentNullException("Items cannot be null");
  127. }
  128. this.EnsureSpace(items.Length);
  129. try
  130. {
  131. for (int i = 0; i < items.Length; i++)
  132. {
  133. ChatListItem item = items[i];
  134. if (item == null)
  135. {
  136. throw new ArgumentNullException("Item cannot be null");
  137. }
  138. if (-1 == this.IndexOf(item))
  139. {
  140. item.OwnerChatListBox = this.owner;
  141. this.m_arrItem[this.count++] = item;
  142. }
  143. }
  144. }
  145. finally
  146. {
  147. this.owner.Invalidate();
  148. }
  149. }
  150. public void Remove(ChatListItem item)
  151. {
  152. int index = this.IndexOf(item);
  153. if (-1 != index)
  154. {
  155. this.RemoveAt(index);
  156. }
  157. }
  158. public void RemoveAt(int index)
  159. {
  160. if (index < 0 || index >= this.count)
  161. {
  162. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  163. }
  164. this.count--;
  165. int i = index;
  166. int Len = this.count;
  167. while (i < Len)
  168. {
  169. this.m_arrItem[i] = this.m_arrItem[i + 1];
  170. i++;
  171. }
  172. this.owner.Invalidate();
  173. }
  174. public void Clear()
  175. {
  176. this.count = 0;
  177. this.m_arrItem = null;
  178. this.owner.Invalidate();
  179. }
  180. public void Insert(int index, ChatListItem item)
  181. {
  182. if (index < 0 || index >= this.count)
  183. {
  184. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  185. }
  186. if (item == null)
  187. {
  188. throw new ArgumentNullException("Item cannot be null");
  189. }
  190. this.EnsureSpace(1);
  191. for (int i = this.count; i > index; i--)
  192. {
  193. this.m_arrItem[i] = this.m_arrItem[i - 1];
  194. }
  195. item.OwnerChatListBox = this.owner;
  196. this.m_arrItem[index] = item;
  197. this.count++;
  198. this.owner.Invalidate();
  199. }
  200. public bool Contains(ChatListItem item)
  201. {
  202. return this.IndexOf(item) != -1;
  203. }
  204. public void CopyTo(Array array, int index)
  205. {
  206. if (array == null)
  207. {
  208. throw new ArgumentNullException("array cannot be null");
  209. }
  210. this.m_arrItem.CopyTo(array, index);
  211. }
  212. int IList.Add(object value)
  213. {
  214. if (!(value is ChatListItem))
  215. {
  216. throw new ArgumentException("Value cannot convert to ListItem");
  217. }
  218. this.Add((ChatListItem)value);
  219. return this.IndexOf((ChatListItem)value);
  220. }
  221. void IList.Clear()
  222. {
  223. this.Clear();
  224. }
  225. bool IList.Contains(object value)
  226. {
  227. if (!(value is ChatListItem))
  228. {
  229. throw new ArgumentException("Value cannot convert to ListItem");
  230. }
  231. return this.Contains((ChatListItem)value);
  232. }
  233. int IList.IndexOf(object value)
  234. {
  235. if (!(value is ChatListItem))
  236. {
  237. throw new ArgumentException("Value cannot convert to ListItem");
  238. }
  239. return this.IndexOf((ChatListItem)value);
  240. }
  241. void IList.Insert(int index, object value)
  242. {
  243. if (!(value is ChatListItem))
  244. {
  245. throw new ArgumentException("Value cannot convert to ListItem");
  246. }
  247. this.Insert(index, (ChatListItem)value);
  248. }
  249. void IList.Remove(object value)
  250. {
  251. if (!(value is ChatListItem))
  252. {
  253. throw new ArgumentException("Value cannot convert to ListItem");
  254. }
  255. this.Remove((ChatListItem)value);
  256. }
  257. void IList.RemoveAt(int index)
  258. {
  259. this.RemoveAt(index);
  260. }
  261. void ICollection.CopyTo(Array array, int index)
  262. {
  263. this.CopyTo(array, index);
  264. }
  265. IEnumerator IEnumerable.GetEnumerator()
  266. {
  267. int i = 0;
  268. int num = this.count;
  269. while (i < num)
  270. {
  271. yield return this.m_arrItem[i];
  272. i++;
  273. }
  274. yield break;
  275. }
  276. }
  277. }