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

界面编程

开发平台:

DOS

  1. #include "editdlg.h"
  2. //#include <string.h>
  3. editdlg_class::editdlg_class(int ID,char *title,int left,int top,int width,int height,
  4. char * old_content )
  5. :dialog_class(ID,title,left,top,width,height)
  6. {
  7. content =new Ttedit(3,"",20,20,width -40,25, old_content );
  8. buf =old_content;
  9. insert_control (content );
  10. canclose =FALSE;
  11. }
  12. BOOL editdlg_class::func_canclose()
  13. {
  14. if ( strlen (content->text) == 0 ) return FALSE;
  15. else {
  16. strcpy (buf ,content->text );
  17. return TRUE;
  18. }
  19. }