TSTATIC.H
上传用户:wtrl82617
上传日期:2007-01-07
资源大小:187k
文件大小:1k
源码类别:

界面编程

开发平台:

DOS

  1. #ifndef __TSTATIC_H
  2. #define __TSTATIC_H
  3. #include "yyxctrl.h"
  4. #define ALIGN_LEFT  0
  5. #define ALIGN_MIDDLE  1
  6. #define ALIGN_RIGHT 2
  7. typedef class tstatic_class Tstatic;
  8. class tstatic_class: public Tcontrol {
  9. public:
  10. ////////////////////////////////////////////////////////in pixels
  11. int text_pos_x;
  12. int text_pos_y;
  13. int static_type;
  14. ////////////////////////////////////////////////////////in chars
  15. // max_value represents is always 0
  16. //  min_value is always 0
  17. //  current_value  is always 0
  18. char text[255];
  19. public:
  20. tstatic_class(int ID,char *title_hotkey,
  21. int left,int top,int width,int height,char *default_text,
  22. int atype=ALIGN_LEFT);
  23. virtual void  draw ();
  24. };
  25. #endif