wdt_sta_api.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:2k
源码类别:

数据库系统

开发平台:

C/C++

  1. /*===============================================================================
  2.  File Name:wdt_sta_api.h
  3.  Author:szhy
  4.  Create Time:2007-8-22
  5.  
  6.  Description:static control
  7.  Class Name:"STA"
  8.  History:
  9. ===============================================================================*/
  10. #ifndef __WDT_STA_API_H_
  11. #define __WDT_STA_API_H_
  12. /*-------------------------------------------------------------------------------
  13. Macro Define
  14. -------------------------------------------------------------------------------*/
  15. #define DEF_STA(lpClassName,x,y,nWidth,nHeight,ID,parentID,style,dataID,bSaveBK) 
  16. lpClassName,x,y,nWidth,nHeight,ID,parentID,0,0,0,0,0,style,dataID,bSaveBK,0,
  17. /*-------------------------------------------------------------------------------
  18. Constant Define
  19. -------------------------------------------------------------------------------*/
  20. #define WDT_STA_ALIGN_LEFT 1 //左对齐
  21. #define WDT_STA_ALIGN_RIGHT 2 //右对齐
  22. #define WDT_STA_ALIGN_CENTER 3 //居中
  23. #define WDT_STA_SV_DATAID 1 //给静态控件设置字典中字的ID
  24. #define WDT_STA_SV_STYLE 2 //设置样式的ID
  25. #define WDT_STA_SV_STRING 3 //直接给静态控件设置字符串
  26. #define WDT_STA_SV_ALIGN 4 //设置文本对齐方式
  27. #define WDT_STA_SV_FGC 5 /* 设置静态控件文本的前景色 */
  28. #define WDT_STA_SV_BGC 6 /* 设置静态控件文本的背景色 */
  29. #define WDT_STA_SV_SAVESTRINGLENGTH 7 //字符串长度  
  30. #define WDT_STA_SV_BGS 8 /* 设置背景样式 */
  31.  
  32. /*-------------------------------------------------------------------------------
  33. Function Declare
  34. -------------------------------------------------------------------------------*/
  35. void WDT_STA_API_Register(void);
  36. PU08 WDT_STA_API_GetVersion(void);
  37. #endif