ChatListSubItem.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. using System;
  2. using System.ComponentModel;
  3. using System.Drawing;
  4. using System.Drawing.Imaging;
  5. using System.Runtime.InteropServices;
  6. namespace LYFZ.ComponentLibrary.ChatListControl
  7. {
  8. public class ChatListSubItem : IComparable
  9. {
  10. public enum UserStatus
  11. {
  12. QMe = 1,
  13. Online,
  14. Away,
  15. Busy,
  16. DontDisturb,
  17. OffLine
  18. }
  19. private int id;
  20. private object tag;
  21. private string nicName;
  22. private string displayName;
  23. private string personalMsg;
  24. private string ipAddress;
  25. private int updPort;
  26. private int tcpPort;
  27. private Image headImage;
  28. private ChatListSubItem.UserStatus status;
  29. private bool isTwinkle;
  30. private bool isTwinkleHide;
  31. private Rectangle bounds;
  32. private Rectangle headRect;
  33. private ChatListItem ownerListItem;
  34. public int ID
  35. {
  36. get
  37. {
  38. return this.id;
  39. }
  40. set
  41. {
  42. this.id = value;
  43. }
  44. }
  45. public object Tag
  46. {
  47. get
  48. {
  49. return this.tag;
  50. }
  51. set
  52. {
  53. this.tag = value;
  54. }
  55. }
  56. public string NicName
  57. {
  58. get
  59. {
  60. return this.nicName;
  61. }
  62. set
  63. {
  64. this.nicName = value;
  65. this.RedrawSubItem();
  66. }
  67. }
  68. public string DisplayName
  69. {
  70. get
  71. {
  72. return this.displayName;
  73. }
  74. set
  75. {
  76. this.displayName = value;
  77. this.RedrawSubItem();
  78. }
  79. }
  80. public string PersonalMsg
  81. {
  82. get
  83. {
  84. return this.personalMsg;
  85. }
  86. set
  87. {
  88. this.personalMsg = value;
  89. this.RedrawSubItem();
  90. }
  91. }
  92. public string IpAddress
  93. {
  94. get
  95. {
  96. return this.ipAddress;
  97. }
  98. set
  99. {
  100. if (this.CheckIpAddress(value))
  101. {
  102. this.ipAddress = value;
  103. }
  104. }
  105. }
  106. public int UpdPort
  107. {
  108. get
  109. {
  110. return this.updPort;
  111. }
  112. set
  113. {
  114. this.updPort = value;
  115. }
  116. }
  117. public int TcpPort
  118. {
  119. get
  120. {
  121. return this.tcpPort;
  122. }
  123. set
  124. {
  125. this.tcpPort = value;
  126. }
  127. }
  128. public Image HeadImage
  129. {
  130. get
  131. {
  132. return this.headImage;
  133. }
  134. set
  135. {
  136. this.headImage = value;
  137. this.RedrawSubItem();
  138. }
  139. }
  140. public ChatListSubItem.UserStatus Status
  141. {
  142. get
  143. {
  144. return this.status;
  145. }
  146. set
  147. {
  148. if (this.status == value)
  149. {
  150. return;
  151. }
  152. this.status = value;
  153. if (this.ownerListItem != null)
  154. {
  155. this.ownerListItem.SubItems.Sort();
  156. }
  157. }
  158. }
  159. public bool IsTwinkle
  160. {
  161. get
  162. {
  163. return this.isTwinkle;
  164. }
  165. set
  166. {
  167. if (this.isTwinkle == value)
  168. {
  169. return;
  170. }
  171. if (this.ownerListItem == null)
  172. {
  173. return;
  174. }
  175. this.isTwinkle = value;
  176. if (this.isTwinkle)
  177. {
  178. this.ownerListItem.TwinkleSubItemNumber++;
  179. return;
  180. }
  181. this.ownerListItem.TwinkleSubItemNumber--;
  182. }
  183. }
  184. public bool IsTwinkleHide
  185. {
  186. get
  187. {
  188. return this.isTwinkleHide;
  189. }
  190. set
  191. {
  192. this.isTwinkleHide = value;
  193. }
  194. }
  195. [Browsable(false)]
  196. public Rectangle Bounds
  197. {
  198. get
  199. {
  200. return this.bounds;
  201. }
  202. set
  203. {
  204. this.bounds = value;
  205. }
  206. }
  207. [Browsable(false)]
  208. public Rectangle HeadRect
  209. {
  210. get
  211. {
  212. return this.headRect;
  213. }
  214. set
  215. {
  216. this.headRect = value;
  217. }
  218. }
  219. [Browsable(false)]
  220. public ChatListItem OwnerListItem
  221. {
  222. get
  223. {
  224. return this.ownerListItem;
  225. }
  226. set
  227. {
  228. this.ownerListItem = value;
  229. }
  230. }
  231. public ChatListSubItem Clone()
  232. {
  233. return new ChatListSubItem
  234. {
  235. Bounds = this.Bounds,
  236. DisplayName = this.DisplayName,
  237. HeadImage = this.HeadImage,
  238. HeadRect = this.HeadRect,
  239. ID = this.ID,
  240. IpAddress = this.IpAddress,
  241. IsTwinkle = this.IsTwinkle,
  242. IsTwinkleHide = this.isTwinkleHide,
  243. NicName = this.NicName,
  244. OwnerListItem = this.OwnerListItem.Clone(),
  245. PersonalMsg = this.PersonalMsg,
  246. Status = this.Status,
  247. TcpPort = this.TcpPort,
  248. UpdPort = this.UpdPort,
  249. Tag = this.Tag
  250. };
  251. }
  252. private void RedrawSubItem()
  253. {
  254. if (this.ownerListItem != null && this.ownerListItem.OwnerChatListBox != null)
  255. {
  256. this.ownerListItem.OwnerChatListBox.Invalidate(this.bounds);
  257. }
  258. }
  259. public Bitmap GetDarkImage()
  260. {
  261. Bitmap b = new Bitmap(this.headImage);
  262. Bitmap bmp = b.Clone(new Rectangle(0, 0, this.headImage.Width, this.headImage.Height), PixelFormat.Format24bppRgb);
  263. b.Dispose();
  264. BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat);
  265. byte[] byColorInfo = new byte[bmp.Height * bmpData.Stride];
  266. Marshal.Copy(bmpData.Scan0, byColorInfo, 0, byColorInfo.Length);
  267. int x = 0;
  268. int xLen = bmp.Width;
  269. while (x < xLen)
  270. {
  271. int y = 0;
  272. int yLen = bmp.Height;
  273. while (y < yLen)
  274. {
  275. byColorInfo[y * bmpData.Stride + x * 3] = (byColorInfo[y * bmpData.Stride + x * 3 + 1] = (byColorInfo[y * bmpData.Stride + x * 3 + 2] = this.GetAvg(byColorInfo[y * bmpData.Stride + x * 3], byColorInfo[y * bmpData.Stride + x * 3 + 1], byColorInfo[y * bmpData.Stride + x * 3 + 2])));
  276. y++;
  277. }
  278. x++;
  279. }
  280. Marshal.Copy(byColorInfo, 0, bmpData.Scan0, byColorInfo.Length);
  281. bmp.UnlockBits(bmpData);
  282. return bmp;
  283. }
  284. private byte GetAvg(byte b, byte g, byte r)
  285. {
  286. return (byte)((r + g + b) / 3);
  287. }
  288. private bool CheckIpAddress(string str)
  289. {
  290. if (str == null)
  291. {
  292. return false;
  293. }
  294. string[] strIp = str.Split(new char[]
  295. {
  296. '.'
  297. });
  298. if (strIp.Length != 4)
  299. {
  300. return false;
  301. }
  302. for (int i = 0; i < 4; i++)
  303. {
  304. try
  305. {
  306. if (Convert.ToInt32(str[i]) > 255)
  307. {
  308. bool result = false;
  309. return result;
  310. }
  311. }
  312. catch (FormatException)
  313. {
  314. bool result = false;
  315. return result;
  316. }
  317. }
  318. return true;
  319. }
  320. int IComparable.CompareTo(object obj)
  321. {
  322. if (!(obj is ChatListSubItem))
  323. {
  324. throw new NotImplementedException("obj is not ChatListSubItem");
  325. }
  326. ChatListSubItem subItem = obj as ChatListSubItem;
  327. return this.status.CompareTo(subItem.status);
  328. }
  329. public ChatListSubItem()
  330. {
  331. this.status = ChatListSubItem.UserStatus.Online;
  332. this.displayName = "displayName";
  333. this.nicName = "nicName";
  334. this.personalMsg = "Personal Message ...";
  335. }
  336. public ChatListSubItem(string nicname)
  337. {
  338. this.nicName = nicname;
  339. }
  340. public ChatListSubItem(string nicname, ChatListSubItem.UserStatus status)
  341. {
  342. this.nicName = nicname;
  343. this.status = status;
  344. }
  345. public ChatListSubItem(string nicname, string displayname, string personalmsg)
  346. {
  347. this.nicName = nicname;
  348. this.displayName = displayname;
  349. this.personalMsg = personalmsg;
  350. }
  351. public ChatListSubItem(string nicname, string displayname, string personalmsg, ChatListSubItem.UserStatus status)
  352. {
  353. this.nicName = nicname;
  354. this.displayName = displayname;
  355. this.personalMsg = personalmsg;
  356. this.status = status;
  357. }
  358. public ChatListSubItem(int id, string nicname, string displayname, string personalmsg, ChatListSubItem.UserStatus status, Bitmap head)
  359. {
  360. this.id = id;
  361. this.nicName = nicname;
  362. this.displayName = displayname;
  363. this.personalMsg = personalmsg;
  364. this.status = status;
  365. this.headImage = head;
  366. }
  367. }
  368. }