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

界面编程

开发平台:

DOS

  1. #ifndef __EDITDLG_H
  2. #define __EDITDLG_H
  3. #include "dialog.h"
  4. #include "tedit.h"
  5. typedef class editdlg_class Teditdlg;
  6. class editdlg_class :public Tdialog {
  7. public:
  8. Ttedit *  content;
  9. char * buf;
  10. public:
  11. editdlg_class(int ID,char *title,int left,int top,int width,int height,
  12. char * old_content );
  13. virtual BOOL func_canclose();
  14. };
  15. #endif