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

界面编程

开发平台:

DOS

  1. #ifndef __BUTTON_H
  2. #define __BUTTON_H
  3. #include "yyxsys.h"
  4. #include "yyxctrl.h"
  5. #define PUSHED 1
  6. #define UNPUSHED 0
  7. typedef class button_class Tbutton;
  8. class button_class: public Tcontrol {
  9. public:
  10. button_class(int ID,char *title_hotkey,
  11. int left,int top,int width,int height);
  12. virtual void  setup_control( );
  13. virtual void  draw ( );
  14. virtual void  select ( );
  15. virtual void  unselect ( );
  16. virtual int  key_pressed_handler  (int key_scan_num );
  17. virtual int  msg_handler(MSG& message);
  18. virtual int  control_change_value ( int new_value);
  19. };
  20. #ifdef __YYXMAIN
  21.  int  BUTTON_PUSHED_COLOR    =LIGHTGRAY;
  22.  int  BUTTON_UNPUSHED_COLOR  =DARKGRAY;
  23. #else
  24. extern int  BUTTON_PUSHED_COLOR    ;
  25. extern int  BUTTON_UNPUSHED_COLOR  ;
  26. #endif
  27. #endif