123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Imaging;
- using System.Runtime.InteropServices;
- namespace LYFZ.ComponentLibrary.ChatListControl
- {
- public class ChatListSubItem : IComparable
- {
- public enum UserStatus
- {
- QMe = 1,
- Online,
- Away,
- Busy,
- DontDisturb,
- OffLine
- }
- private int id;
- private object tag;
- private string nicName;
- private string displayName;
- private string personalMsg;
- private string ipAddress;
- private int updPort;
- private int tcpPort;
- private Image headImage;
- private ChatListSubItem.UserStatus status;
- private bool isTwinkle;
- private bool isTwinkleHide;
- private Rectangle bounds;
- private Rectangle headRect;
- private ChatListItem ownerListItem;
- public int ID
- {
- get
- {
- return this.id;
- }
- set
- {
- this.id = value;
- }
- }
- public object Tag
- {
- get
- {
- return this.tag;
- }
- set
- {
- this.tag = value;
- }
- }
- public string NicName
- {
- get
- {
- return this.nicName;
- }
- set
- {
- this.nicName = value;
- this.RedrawSubItem();
- }
- }
- public string DisplayName
- {
- get
- {
- return this.displayName;
- }
- set
- {
- this.displayName = value;
- this.RedrawSubItem();
- }
- }
- public string PersonalMsg
- {
- get
- {
- return this.personalMsg;
- }
- set
- {
- this.personalMsg = value;
- this.RedrawSubItem();
- }
- }
- public string IpAddress
- {
- get
- {
- return this.ipAddress;
- }
- set
- {
- if (this.CheckIpAddress(value))
- {
- this.ipAddress = value;
- }
- }
- }
- public int UpdPort
- {
- get
- {
- return this.updPort;
- }
- set
- {
- this.updPort = value;
- }
- }
- public int TcpPort
- {
- get
- {
- return this.tcpPort;
- }
- set
- {
- this.tcpPort = value;
- }
- }
- public Image HeadImage
- {
- get
- {
- return this.headImage;
- }
- set
- {
- this.headImage = value;
- this.RedrawSubItem();
- }
- }
- public ChatListSubItem.UserStatus Status
- {
- get
- {
- return this.status;
- }
- set
- {
- if (this.status == value)
- {
- return;
- }
- this.status = value;
- if (this.ownerListItem != null)
- {
- this.ownerListItem.SubItems.Sort();
- }
- }
- }
- public bool IsTwinkle
- {
- get
- {
- return this.isTwinkle;
- }
- set
- {
- if (this.isTwinkle == value)
- {
- return;
- }
- if (this.ownerListItem == null)
- {
- return;
- }
- this.isTwinkle = value;
- if (this.isTwinkle)
- {
- this.ownerListItem.TwinkleSubItemNumber++;
- return;
- }
- this.ownerListItem.TwinkleSubItemNumber--;
- }
- }
- 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 Rectangle HeadRect
- {
- get
- {
- return this.headRect;
- }
- set
- {
- this.headRect = value;
- }
- }
- [Browsable(false)]
- public ChatListItem OwnerListItem
- {
- get
- {
- return this.ownerListItem;
- }
- set
- {
- this.ownerListItem = value;
- }
- }
- public ChatListSubItem Clone()
- {
- return new ChatListSubItem
- {
- Bounds = this.Bounds,
- DisplayName = this.DisplayName,
- HeadImage = this.HeadImage,
- HeadRect = this.HeadRect,
- ID = this.ID,
- IpAddress = this.IpAddress,
- IsTwinkle = this.IsTwinkle,
- IsTwinkleHide = this.isTwinkleHide,
- NicName = this.NicName,
- OwnerListItem = this.OwnerListItem.Clone(),
- PersonalMsg = this.PersonalMsg,
- Status = this.Status,
- TcpPort = this.TcpPort,
- UpdPort = this.UpdPort,
- Tag = this.Tag
- };
- }
- private void RedrawSubItem()
- {
- if (this.ownerListItem != null && this.ownerListItem.OwnerChatListBox != null)
- {
- this.ownerListItem.OwnerChatListBox.Invalidate(this.bounds);
- }
- }
- public Bitmap GetDarkImage()
- {
- Bitmap b = new Bitmap(this.headImage);
- Bitmap bmp = b.Clone(new Rectangle(0, 0, this.headImage.Width, this.headImage.Height), PixelFormat.Format24bppRgb);
- b.Dispose();
- BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat);
- byte[] byColorInfo = new byte[bmp.Height * bmpData.Stride];
- Marshal.Copy(bmpData.Scan0, byColorInfo, 0, byColorInfo.Length);
- int x = 0;
- int xLen = bmp.Width;
- while (x < xLen)
- {
- int y = 0;
- int yLen = bmp.Height;
- while (y < yLen)
- {
- 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])));
- y++;
- }
- x++;
- }
- Marshal.Copy(byColorInfo, 0, bmpData.Scan0, byColorInfo.Length);
- bmp.UnlockBits(bmpData);
- return bmp;
- }
- private byte GetAvg(byte b, byte g, byte r)
- {
- return (byte)((r + g + b) / 3);
- }
- private bool CheckIpAddress(string str)
- {
- if (str == null)
- {
- return false;
- }
- string[] strIp = str.Split(new char[]
- {
- '.'
- });
- if (strIp.Length != 4)
- {
- return false;
- }
- for (int i = 0; i < 4; i++)
- {
- try
- {
- if (Convert.ToInt32(str[i]) > 255)
- {
- bool result = false;
- return result;
- }
- }
- catch (FormatException)
- {
- bool result = false;
- return result;
- }
- }
- return true;
- }
- int IComparable.CompareTo(object obj)
- {
- if (!(obj is ChatListSubItem))
- {
- throw new NotImplementedException("obj is not ChatListSubItem");
- }
- ChatListSubItem subItem = obj as ChatListSubItem;
- return this.status.CompareTo(subItem.status);
- }
- public ChatListSubItem()
- {
- this.status = ChatListSubItem.UserStatus.Online;
- this.displayName = "displayName";
- this.nicName = "nicName";
- this.personalMsg = "Personal Message ...";
- }
- public ChatListSubItem(string nicname)
- {
- this.nicName = nicname;
- }
- public ChatListSubItem(string nicname, ChatListSubItem.UserStatus status)
- {
- this.nicName = nicname;
- this.status = status;
- }
- public ChatListSubItem(string nicname, string displayname, string personalmsg)
- {
- this.nicName = nicname;
- this.displayName = displayname;
- this.personalMsg = personalmsg;
- }
- public ChatListSubItem(string nicname, string displayname, string personalmsg, ChatListSubItem.UserStatus status)
- {
- this.nicName = nicname;
- this.displayName = displayname;
- this.personalMsg = personalmsg;
- this.status = status;
- }
- public ChatListSubItem(int id, string nicname, string displayname, string personalmsg, ChatListSubItem.UserStatus status, Bitmap head)
- {
- this.id = id;
- this.nicName = nicname;
- this.displayName = displayname;
- this.personalMsg = personalmsg;
- this.status = status;
- this.headImage = head;
- }
- }
- }
|