ChatListVScroll.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. public class ChatListVScroll
  7. {
  8. private Rectangle bounds;
  9. private Rectangle upBounds;
  10. private Rectangle downBounds;
  11. private Rectangle sliderBounds;
  12. private Color backColor;
  13. private Color sliderDefaultColor;
  14. private Color sliderDownColor;
  15. private Color arrowBackColor;
  16. private Color arrowColor;
  17. private Control ctrl;
  18. private int virtualHeight;
  19. private int value;
  20. private bool shouldBeDraw;
  21. private bool isMouseDown;
  22. private bool isMouseOnSlider;
  23. private bool isMouseOnUp;
  24. private bool isMouseOnDown;
  25. private int mouseDownY;
  26. private int m_nLastSliderY;
  27. public Rectangle Bounds
  28. {
  29. get
  30. {
  31. return this.bounds;
  32. }
  33. }
  34. public Rectangle UpBounds
  35. {
  36. get
  37. {
  38. return this.upBounds;
  39. }
  40. }
  41. public Rectangle DownBounds
  42. {
  43. get
  44. {
  45. return this.downBounds;
  46. }
  47. }
  48. public Rectangle SliderBounds
  49. {
  50. get
  51. {
  52. return this.sliderBounds;
  53. }
  54. }
  55. public Color BackColor
  56. {
  57. get
  58. {
  59. return this.backColor;
  60. }
  61. set
  62. {
  63. this.backColor = value;
  64. }
  65. }
  66. public Color SliderDefaultColor
  67. {
  68. get
  69. {
  70. return this.sliderDefaultColor;
  71. }
  72. set
  73. {
  74. if (this.sliderDefaultColor == value)
  75. {
  76. return;
  77. }
  78. this.sliderDefaultColor = value;
  79. this.ctrl.Invalidate(this.sliderBounds);
  80. }
  81. }
  82. public Color SliderDownColor
  83. {
  84. get
  85. {
  86. return this.sliderDownColor;
  87. }
  88. set
  89. {
  90. if (this.sliderDownColor == value)
  91. {
  92. return;
  93. }
  94. this.sliderDownColor = value;
  95. this.ctrl.Invalidate(this.sliderBounds);
  96. }
  97. }
  98. public Color ArrowBackColor
  99. {
  100. get
  101. {
  102. return this.arrowBackColor;
  103. }
  104. set
  105. {
  106. if (this.arrowBackColor == value)
  107. {
  108. return;
  109. }
  110. this.arrowBackColor = value;
  111. this.ctrl.Invalidate(this.bounds);
  112. }
  113. }
  114. public Color ArrowColor
  115. {
  116. get
  117. {
  118. return this.arrowColor;
  119. }
  120. set
  121. {
  122. if (this.arrowColor == value)
  123. {
  124. return;
  125. }
  126. this.arrowColor = value;
  127. this.ctrl.Invalidate(this.bounds);
  128. }
  129. }
  130. public Control Ctrl
  131. {
  132. get
  133. {
  134. return this.ctrl;
  135. }
  136. set
  137. {
  138. this.ctrl = value;
  139. }
  140. }
  141. public int VirtualHeight
  142. {
  143. get
  144. {
  145. return this.virtualHeight;
  146. }
  147. set
  148. {
  149. if (value <= this.ctrl.Height)
  150. {
  151. if (!this.shouldBeDraw)
  152. {
  153. return;
  154. }
  155. this.shouldBeDraw = false;
  156. if (this.value != 0)
  157. {
  158. this.value = 0;
  159. this.ctrl.Invalidate();
  160. }
  161. }
  162. else
  163. {
  164. this.shouldBeDraw = true;
  165. if (value - this.value < this.ctrl.Height)
  166. {
  167. this.value -= this.ctrl.Height - value + this.value;
  168. this.ctrl.Invalidate();
  169. }
  170. }
  171. this.virtualHeight = value;
  172. }
  173. }
  174. public int Value
  175. {
  176. get
  177. {
  178. return this.value;
  179. }
  180. set
  181. {
  182. if (!this.shouldBeDraw)
  183. {
  184. return;
  185. }
  186. if (value < 0)
  187. {
  188. if (this.value == 0)
  189. {
  190. return;
  191. }
  192. this.value = 0;
  193. this.ctrl.Invalidate();
  194. return;
  195. }
  196. else
  197. {
  198. if (value <= this.virtualHeight - this.ctrl.Height)
  199. {
  200. this.value = value;
  201. this.ctrl.Invalidate();
  202. return;
  203. }
  204. if (this.value == this.virtualHeight - this.ctrl.Height)
  205. {
  206. return;
  207. }
  208. this.value = this.virtualHeight - this.ctrl.Height;
  209. this.ctrl.Invalidate();
  210. return;
  211. }
  212. }
  213. }
  214. public bool ShouldBeDraw
  215. {
  216. get
  217. {
  218. return this.shouldBeDraw;
  219. }
  220. }
  221. public bool IsMouseDown
  222. {
  223. get
  224. {
  225. return this.isMouseDown;
  226. }
  227. set
  228. {
  229. if (value)
  230. {
  231. this.m_nLastSliderY = this.sliderBounds.Y;
  232. }
  233. this.isMouseDown = value;
  234. }
  235. }
  236. public bool IsMouseOnSlider
  237. {
  238. get
  239. {
  240. return this.isMouseOnSlider;
  241. }
  242. set
  243. {
  244. if (this.isMouseOnSlider == value)
  245. {
  246. return;
  247. }
  248. this.isMouseOnSlider = value;
  249. this.ctrl.Invalidate(this.SliderBounds);
  250. }
  251. }
  252. public bool IsMouseOnUp
  253. {
  254. get
  255. {
  256. return this.isMouseOnUp;
  257. }
  258. set
  259. {
  260. if (this.isMouseOnUp == value)
  261. {
  262. return;
  263. }
  264. this.isMouseOnUp = value;
  265. this.ctrl.Invalidate(this.UpBounds);
  266. }
  267. }
  268. public bool IsMouseOnDown
  269. {
  270. get
  271. {
  272. return this.isMouseOnDown;
  273. }
  274. set
  275. {
  276. if (this.isMouseOnDown == value)
  277. {
  278. return;
  279. }
  280. this.isMouseOnDown = value;
  281. this.ctrl.Invalidate(this.DownBounds);
  282. }
  283. }
  284. public int MouseDownY
  285. {
  286. get
  287. {
  288. return this.mouseDownY;
  289. }
  290. set
  291. {
  292. this.mouseDownY = value;
  293. }
  294. }
  295. public ChatListVScroll(Control c)
  296. {
  297. this.ctrl = c;
  298. this.virtualHeight = 400;
  299. this.bounds = new Rectangle(0, 0, 5, 5);
  300. this.upBounds = new Rectangle(0, 0, 5, 5);
  301. this.downBounds = new Rectangle(0, 0, 5, 5);
  302. this.sliderBounds = new Rectangle(0, 0, 5, 5);
  303. this.backColor = Color.FromArgb(50, 224, 239, 235);
  304. this.sliderDefaultColor = Color.FromArgb(100, 110, 111, 112);
  305. this.sliderDownColor = Color.FromArgb(200, 110, 111, 112);
  306. this.arrowBackColor = Color.Transparent;
  307. this.arrowColor = Color.FromArgb(200, 148, 150, 151);
  308. }
  309. public void ClearAllMouseOn()
  310. {
  311. if (!this.isMouseOnDown && !this.isMouseOnSlider && !this.isMouseOnUp)
  312. {
  313. return;
  314. }
  315. this.isMouseOnSlider = (this.isMouseOnDown = (this.isMouseOnUp = false));
  316. this.ctrl.Invalidate(this.bounds);
  317. }
  318. public void MoveSliderToLocation(int nCurrentMouseY)
  319. {
  320. if (nCurrentMouseY - this.sliderBounds.Height / 2 < 11)
  321. {
  322. this.sliderBounds.Y = 11;
  323. }
  324. else
  325. {
  326. if (nCurrentMouseY + this.sliderBounds.Height / 2 > this.ctrl.Height - 11)
  327. {
  328. this.sliderBounds.Y = this.ctrl.Height - this.sliderBounds.Height - 11;
  329. }
  330. else
  331. {
  332. this.sliderBounds.Y = nCurrentMouseY - this.sliderBounds.Height / 2;
  333. }
  334. }
  335. this.value = (int)((double)(this.sliderBounds.Y - 11) / (double)(this.ctrl.Height - 22 - this.SliderBounds.Height) * (double)(this.virtualHeight - this.ctrl.Height));
  336. this.ctrl.Invalidate();
  337. }
  338. public void MoveSliderFromLocation(int nCurrentMouseY)
  339. {
  340. if (this.m_nLastSliderY + nCurrentMouseY - this.mouseDownY < 11)
  341. {
  342. if (this.sliderBounds.Y == 11)
  343. {
  344. return;
  345. }
  346. this.sliderBounds.Y = 11;
  347. }
  348. else
  349. {
  350. if (this.m_nLastSliderY + nCurrentMouseY - this.mouseDownY > this.ctrl.Height - 11 - this.SliderBounds.Height)
  351. {
  352. if (this.sliderBounds.Y == this.ctrl.Height - 11 - this.sliderBounds.Height)
  353. {
  354. return;
  355. }
  356. this.sliderBounds.Y = this.ctrl.Height - 11 - this.sliderBounds.Height;
  357. }
  358. else
  359. {
  360. this.sliderBounds.Y = this.m_nLastSliderY + nCurrentMouseY - this.mouseDownY;
  361. }
  362. }
  363. this.value = (int)((double)(this.sliderBounds.Y - 11) / (double)(this.ctrl.Height - 22 - this.SliderBounds.Height) * (double)(this.virtualHeight - this.ctrl.Height));
  364. this.ctrl.Invalidate();
  365. }
  366. public void ReDrawScroll(Graphics g)
  367. {
  368. if (!this.shouldBeDraw)
  369. {
  370. return;
  371. }
  372. this.bounds.X = this.ctrl.Width - 7;
  373. this.bounds.Height = this.ctrl.Height;
  374. this.upBounds.X = (this.downBounds.X = this.bounds.X);
  375. this.downBounds.Y = this.ctrl.Height - 5;
  376. this.sliderBounds.X = this.bounds.X;
  377. this.sliderBounds.Height = (int)((double)this.ctrl.Height / (double)this.virtualHeight * (double)(this.ctrl.Height - 22));
  378. if (this.sliderBounds.Height < 3)
  379. {
  380. this.sliderBounds.Height = 3;
  381. }
  382. this.sliderBounds.Y = 11 + (int)((double)this.value / (double)(this.virtualHeight - this.ctrl.Height) * (double)(this.ctrl.Height - 22 - this.sliderBounds.Height));
  383. SolidBrush sb = new SolidBrush(this.backColor);
  384. try
  385. {
  386. g.FillRectangle(sb, this.bounds);
  387. sb.Color = this.arrowBackColor;
  388. g.FillRectangle(sb, this.upBounds);
  389. g.FillRectangle(sb, this.downBounds);
  390. if (this.isMouseDown || this.isMouseOnSlider)
  391. {
  392. sb.Color = this.sliderDownColor;
  393. }
  394. else
  395. {
  396. sb.Color = this.sliderDefaultColor;
  397. }
  398. g.FillRectangle(sb, this.sliderBounds);
  399. sb.Color = this.arrowColor;
  400. bool arg_1A1_0 = this.isMouseOnUp;
  401. bool arg_1A8_0 = this.isMouseOnDown;
  402. }
  403. finally
  404. {
  405. sb.Dispose();
  406. }
  407. }
  408. }
  409. }