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

界面编程

开发平台:

DOS

  1. #ifndef __DIALOG_H
  2. #define __DIALOG_H
  3. #include "yyxwin.h"
  4. #include "button.h"
  5. typedef class dialog_class Tdialog;
  6. #define OK_ID  1
  7. #define CANCEL_ID 2
  8. #define Dlg_OK 2
  9. #define Dlg_CANCEL  3
  10. #define Sys_QUIT  0xff
  11. class dialog_class :public Twin {
  12. public:
  13. Tbutton * ok_button;
  14. Tbutton * cancel_button;
  15. protected:
  16. char ok_string[25];
  17. char cancel_string[25];
  18. public:
  19. dialog_class(int ID,char *title,int left,int top,int width,int height);
  20. virtual int  msg_handler (MSG& message);
  21. //virtual ~dialog_class ();
  22. };
  23. #endif