skinsb.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /////////////////////////////////////////////////////////////////
  2. //
  3. // Header file : skinsb.h
  4. //
  5. // Descrption : Skin scrollbar library Version 1.0
  6. //
  7. // Auhor : LiJun
  8. //
  9. // E-Mail : notoldtree@126.com
  10. //
  11. /////////////////////////////////////////////////////////////////
  12. #pragma once
  13. #include <windows.h>
  14. #ifdef __cplusplus
  15. extern "C"{
  16. #endif
  17. //----------------------------------------------------------------
  18. // Name : SkinSB_Init()
  19. // Desc : Initialize and load the scrollbar skin
  20. //----------------------------------------------------------------
  21. BOOL WINAPI SkinSB_Init(HWND hwnd, HBITMAP hBmp);
  22. //----------------------------------------------------------------
  23. // Name : SkinSB_Uninit()
  24. // Desc : Remove the scrollbar skin
  25. //----------------------------------------------------------------
  26. BOOL WINAPI SkinSB_Uninit(HWND hwnd);
  27. //----------------------------------------------------------------
  28. // Name : SkinSB_IsValid()
  29. // Desc : Whether initialied ?
  30. //----------------------------------------------------------------
  31. BOOL WINAPI SkinSB_IsValid(HWND hwnd);
  32. //----------------------------------------------------------------
  33. // Name : SkinSB_GetScrollInfo()
  34. // Desc : Gets the information for a skin scroll bar
  35. //----------------------------------------------------------------
  36. BOOL WINAPI SkinSB_GetScrollInfo(HWND hwnd, int fnBar, LPSCROLLINFO lpsi);
  37. //----------------------------------------------------------------
  38. // Name : SkinSB_SetScrollInfo()
  39. // Desc : Sets the information for a skin scroll bar
  40. //----------------------------------------------------------------
  41. int WINAPI SkinSB_SetScrollInfo(HWND hwnd, int fnBar, LPCSCROLLINFO psi, BOOL fRedraw);
  42. //----------------------------------------------------------------
  43. // Name : SkinSB_GetScrollPos()
  44. // Desc : Gets the thumb position in a skin scroll bar
  45. //----------------------------------------------------------------
  46. int WINAPI SkinSB_GetScrollPos(HWND hwnd, int fnBar);
  47. //----------------------------------------------------------------
  48. // Name : SkinSB_SetScrollPos()
  49. // Desc : Sets the current position of the thumb in a skin scroll bar
  50. //----------------------------------------------------------------
  51. int WINAPI SkinSB_SetScrollPos(HWND hwnd, int nBar, int nPos, BOOL fRedraw);
  52. //----------------------------------------------------------------
  53. // Name : SkinSB_GetScrollRange()
  54. // Desc : Gets the scroll range for a skin scroll bar
  55. //----------------------------------------------------------------
  56. BOOL WINAPI SkinSB_GetScrollRange(HWND hwnd, int nBar, LPINT lpMinPos, LPINT lpMaxPos);
  57. //----------------------------------------------------------------
  58. // Name : SkinSB_SetScrollRange()
  59. // Desc : Sets the scroll range of a skin scroll bar
  60. //----------------------------------------------------------------
  61. BOOL WINAPI SkinSB_SetScrollRange(HWND hwnd, int nBar, int nMinPos, int nMaxPos, BOOL fRedraw);
  62. //----------------------------------------------------------------
  63. // Name : SkinSB_ShowScrollBar()
  64. // Desc : Shows or hides a skin scroll bar
  65. //----------------------------------------------------------------
  66. BOOL WINAPI SkinSB_ShowScrollBar(HWND hwnd, int wBar, BOOL fShow);
  67. //----------------------------------------------------------------
  68. // Name : SkinSB_EnableScrollBar()
  69. // Desc : Enables or disables one or both skin scroll bar direction buttons
  70. //----------------------------------------------------------------
  71. BOOL WINAPI SkinSB_EnableScrollBar(HWND hwnd, UINT wSBflags, UINT wArrows);
  72. #ifdef __cplusplus
  73. }
  74. #endif