ChatListItem.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. namespace LYFZ.ComponentLibrary.ChatListControl
  6. {
  7. public class ChatListItem
  8. {
  9. public class ChatListSubItemCollection : IList, ICollection, IEnumerable
  10. {
  11. private int count;
  12. private ChatListSubItem[] m_arrSubItems;
  13. private ChatListItem owner;
  14. public int Count
  15. {
  16. get
  17. {
  18. return this.count;
  19. }
  20. }
  21. public ChatListSubItem this[int index]
  22. {
  23. get
  24. {
  25. if (index < 0 || index > this.count)
  26. {
  27. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  28. }
  29. return this.m_arrSubItems[index];
  30. }
  31. set
  32. {
  33. if (index < 0 || index > this.count)
  34. {
  35. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  36. }
  37. this.m_arrSubItems[index] = value;
  38. if (this.owner.OwnerChatListBox != null)
  39. {
  40. this.owner.OwnerChatListBox.Invalidate(this.m_arrSubItems[index].Bounds);
  41. }
  42. }
  43. }
  44. bool IList.IsFixedSize
  45. {
  46. get
  47. {
  48. return false;
  49. }
  50. }
  51. bool IList.IsReadOnly
  52. {
  53. get
  54. {
  55. return false;
  56. }
  57. }
  58. object IList.this[int index]
  59. {
  60. get
  61. {
  62. return this[index];
  63. }
  64. set
  65. {
  66. if (!(value is ChatListSubItem))
  67. {
  68. throw new ArgumentException("值不能转换为ListSubItem");
  69. }
  70. this[index] = (ChatListSubItem)value;
  71. }
  72. }
  73. int ICollection.Count
  74. {
  75. get
  76. {
  77. return this.count;
  78. }
  79. }
  80. bool ICollection.IsSynchronized
  81. {
  82. get
  83. {
  84. return true;
  85. }
  86. }
  87. object ICollection.SyncRoot
  88. {
  89. get
  90. {
  91. return this;
  92. }
  93. }
  94. public ChatListSubItemCollection(ChatListItem owner)
  95. {
  96. this.owner = owner;
  97. }
  98. public void Sort()
  99. {
  100. Array.Sort<ChatListSubItem>(this.m_arrSubItems, 0, this.count, null);
  101. if (this.owner.ownerChatListBox != null)
  102. {
  103. this.owner.ownerChatListBox.Invalidate(this.owner.bounds);
  104. }
  105. }
  106. public int GetOnLineNumber()
  107. {
  108. int num = 0;
  109. int i = 0;
  110. int len = this.count;
  111. while (i < len)
  112. {
  113. if (this.m_arrSubItems[i].Status != ChatListSubItem.UserStatus.OffLine)
  114. {
  115. num++;
  116. }
  117. i++;
  118. }
  119. return num;
  120. }
  121. private void EnsureSpace(int elements)
  122. {
  123. if (this.m_arrSubItems == null)
  124. {
  125. this.m_arrSubItems = new ChatListSubItem[Math.Max(elements, 4)];
  126. return;
  127. }
  128. if (elements + this.count > this.m_arrSubItems.Length)
  129. {
  130. ChatListSubItem[] arrTemp = new ChatListSubItem[Math.Max(this.m_arrSubItems.Length * 2, elements + this.count)];
  131. this.m_arrSubItems.CopyTo(arrTemp, 0);
  132. this.m_arrSubItems = arrTemp;
  133. }
  134. }
  135. public int IndexOf(ChatListSubItem subItem)
  136. {
  137. return Array.IndexOf<ChatListSubItem>(this.m_arrSubItems, subItem);
  138. }
  139. public void Add(ChatListSubItem subItem)
  140. {
  141. if (subItem == null)
  142. {
  143. throw new ArgumentNullException("子项目不能为空");
  144. }
  145. this.EnsureSpace(1);
  146. if (-1 == this.IndexOf(subItem))
  147. {
  148. subItem.OwnerListItem = this.owner;
  149. this.m_arrSubItems[this.count++] = subItem;
  150. if (this.owner.OwnerChatListBox != null)
  151. {
  152. this.owner.OwnerChatListBox.Invalidate();
  153. }
  154. }
  155. }
  156. public void AddRange(ChatListSubItem[] subItems)
  157. {
  158. if (subItems == null)
  159. {
  160. throw new ArgumentNullException("子项不能为空");
  161. }
  162. this.EnsureSpace(subItems.Length);
  163. try
  164. {
  165. for (int i = 0; i < subItems.Length; i++)
  166. {
  167. ChatListSubItem subItem = subItems[i];
  168. if (subItem == null)
  169. {
  170. throw new ArgumentNullException("子项不能为空");
  171. }
  172. if (-1 == this.IndexOf(subItem))
  173. {
  174. subItem.OwnerListItem = this.owner;
  175. this.m_arrSubItems[this.count++] = subItem;
  176. }
  177. }
  178. }
  179. finally
  180. {
  181. if (this.owner.OwnerChatListBox != null)
  182. {
  183. this.owner.OwnerChatListBox.Invalidate();
  184. }
  185. }
  186. }
  187. public void AddAccordingToStatus(ChatListSubItem subItem)
  188. {
  189. if (subItem.Status == ChatListSubItem.UserStatus.OffLine)
  190. {
  191. this.Add(subItem);
  192. return;
  193. }
  194. int i = 0;
  195. int len = this.count;
  196. while (i < len)
  197. {
  198. if (subItem.Status <= this.m_arrSubItems[i].Status)
  199. {
  200. this.Insert(i, subItem);
  201. return;
  202. }
  203. i++;
  204. }
  205. this.Add(subItem);
  206. }
  207. public void Remove(ChatListSubItem subItem)
  208. {
  209. int index = this.IndexOf(subItem);
  210. if (-1 != index)
  211. {
  212. this.RemoveAt(index);
  213. }
  214. }
  215. public void RemoveAt(int index)
  216. {
  217. if (index < 0 || index > this.count)
  218. {
  219. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  220. }
  221. this.count--;
  222. int i = index;
  223. int Len = this.count;
  224. while (i < Len)
  225. {
  226. this.m_arrSubItems[i] = this.m_arrSubItems[i + 1];
  227. i++;
  228. }
  229. if (this.owner.OwnerChatListBox != null)
  230. {
  231. this.owner.OwnerChatListBox.Invalidate();
  232. }
  233. }
  234. public void Clear()
  235. {
  236. this.count = 0;
  237. this.m_arrSubItems = null;
  238. if (this.owner.OwnerChatListBox != null)
  239. {
  240. this.owner.OwnerChatListBox.Invalidate();
  241. }
  242. }
  243. public void Insert(int index, ChatListSubItem subItem)
  244. {
  245. if (index < 0 || index > this.count)
  246. {
  247. throw new IndexOutOfRangeException("索引在阵列的界限之外");
  248. }
  249. if (subItem == null)
  250. {
  251. throw new ArgumentNullException("子项不能为空");
  252. }
  253. this.EnsureSpace(1);
  254. for (int i = this.count; i > index; i--)
  255. {
  256. this.m_arrSubItems[i] = this.m_arrSubItems[i - 1];
  257. }
  258. subItem.OwnerListItem = this.owner;
  259. this.m_arrSubItems[index] = subItem;
  260. this.count++;
  261. if (this.owner.OwnerChatListBox != null)
  262. {
  263. this.owner.OwnerChatListBox.Invalidate();
  264. }
  265. }
  266. public void CopyTo(Array array, int index)
  267. {
  268. if (array == null)
  269. {
  270. throw new ArgumentNullException("数组不能为空");
  271. }
  272. this.m_arrSubItems.CopyTo(array, index);
  273. }
  274. public bool Contains(ChatListSubItem subItem)
  275. {
  276. return this.IndexOf(subItem) != -1;
  277. }
  278. int IList.Add(object value)
  279. {
  280. if (!(value is ChatListSubItem))
  281. {
  282. throw new ArgumentException("值不能转换为ListSubItem");
  283. }
  284. this.Add((ChatListSubItem)value);
  285. return this.IndexOf((ChatListSubItem)value);
  286. }
  287. void IList.Clear()
  288. {
  289. this.Clear();
  290. }
  291. bool IList.Contains(object value)
  292. {
  293. if (!(value is ChatListSubItem))
  294. {
  295. throw new ArgumentException("值不能转换为ListSubItem");
  296. }
  297. return this.Contains((ChatListSubItem)value);
  298. }
  299. int IList.IndexOf(object value)
  300. {
  301. if (!(value is ChatListSubItem))
  302. {
  303. throw new ArgumentException("值不能转换为ListSubItem");
  304. }
  305. return this.IndexOf((ChatListSubItem)value);
  306. }
  307. void IList.Insert(int index, object value)
  308. {
  309. if (!(value is ChatListSubItem))
  310. {
  311. throw new ArgumentException("值不能转换为ListSubItem");
  312. }
  313. this.Insert(index, (ChatListSubItem)value);
  314. }
  315. void IList.Remove(object value)
  316. {
  317. if (!(value is ChatListSubItem))
  318. {
  319. throw new ArgumentException("值不能转换为ListSubItem");
  320. }
  321. this.Remove((ChatListSubItem)value);
  322. }
  323. void IList.RemoveAt(int index)
  324. {
  325. this.RemoveAt(index);
  326. }
  327. void ICollection.CopyTo(Array array, int index)
  328. {
  329. this.CopyTo(array, index);
  330. }
  331. IEnumerator IEnumerable.GetEnumerator()
  332. {
  333. int i = 0;
  334. int num = this.count;
  335. while (i < num)
  336. {
  337. yield return this.m_arrSubItems[i];
  338. i++;
  339. }
  340. yield break;
  341. }
  342. }
  343. private string text = "项目";
  344. private bool isOpen;
  345. private int twinkleSubItemNumber;
  346. private bool isTwinkleHide;
  347. private Rectangle bounds;
  348. private ChatListBox ownerChatListBox;
  349. private ChatListItem.ChatListSubItemCollection subItems;
  350. public string Text
  351. {
  352. get
  353. {
  354. return this.text;
  355. }
  356. set
  357. {
  358. this.text = value;
  359. if (this.ownerChatListBox != null)
  360. {
  361. this.ownerChatListBox.Invalidate(this.bounds);
  362. }
  363. }
  364. }
  365. [DefaultValue(false)]
  366. public bool IsOpen
  367. {
  368. get
  369. {
  370. return this.isOpen;
  371. }
  372. set
  373. {
  374. this.isOpen = value;
  375. if (this.ownerChatListBox != null)
  376. {
  377. this.ownerChatListBox.Invalidate();
  378. }
  379. }
  380. }
  381. [Browsable(false)]
  382. public int TwinkleSubItemNumber
  383. {
  384. get
  385. {
  386. return this.twinkleSubItemNumber;
  387. }
  388. set
  389. {
  390. this.twinkleSubItemNumber = value;
  391. }
  392. }
  393. public bool IsTwinkleHide
  394. {
  395. get
  396. {
  397. return this.isTwinkleHide;
  398. }
  399. set
  400. {
  401. this.isTwinkleHide = value;
  402. }
  403. }
  404. [Browsable(false)]
  405. public Rectangle Bounds
  406. {
  407. get
  408. {
  409. return this.bounds;
  410. }
  411. set
  412. {
  413. this.bounds = value;
  414. }
  415. }
  416. [Browsable(false)]
  417. public ChatListBox OwnerChatListBox
  418. {
  419. get
  420. {
  421. return this.ownerChatListBox;
  422. }
  423. set
  424. {
  425. this.ownerChatListBox = value;
  426. }
  427. }
  428. [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
  429. public ChatListItem.ChatListSubItemCollection SubItems
  430. {
  431. get
  432. {
  433. if (this.subItems == null)
  434. {
  435. this.subItems = new ChatListItem.ChatListSubItemCollection(this);
  436. }
  437. return this.subItems;
  438. }
  439. set
  440. {
  441. if (this.subItems != value)
  442. {
  443. this.subItems = value;
  444. }
  445. }
  446. }
  447. public ChatListItem Clone()
  448. {
  449. return new ChatListItem
  450. {
  451. Bounds = this.Bounds,
  452. IsOpen = this.IsOpen,
  453. IsTwinkleHide = this.IsTwinkleHide,
  454. OwnerChatListBox = this.OwnerChatListBox,
  455. SubItems = this.SubItems,
  456. Text = this.text,
  457. TwinkleSubItemNumber = this.TwinkleSubItemNumber
  458. };
  459. }
  460. public ChatListItem()
  461. {
  462. if (this.text == null)
  463. {
  464. this.text = string.Empty;
  465. }
  466. }
  467. public ChatListItem(string text)
  468. {
  469. this.text = text;
  470. }
  471. public ChatListItem(string text, bool bOpen)
  472. {
  473. this.text = text;
  474. this.isOpen = bOpen;
  475. }
  476. public ChatListItem(ChatListSubItem[] subItems)
  477. {
  478. this.subItems.AddRange(subItems);
  479. }
  480. public ChatListItem(string text, ChatListSubItem[] subItems)
  481. {
  482. this.text = text;
  483. this.subItems.AddRange(subItems);
  484. }
  485. public ChatListItem(string text, bool bOpen, ChatListSubItem[] subItems)
  486. {
  487. this.text = text;
  488. this.isOpen = bOpen;
  489. this.subItems.AddRange(subItems);
  490. }
  491. }
  492. }