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

界面编程

开发平台:

DOS

  1. #ifndef __FILEDLG_H
  2. #define __FILEDLG_H
  3. #include "dialog.h"
  4. #include "checkbox.h"
  5. #include "radio.h"
  6. #include "scroll.h"
  7. #include "tedit.h"
  8. #include "listbox.h"
  9. typedef class filedlg_class Tfiledlg;
  10. class filedlg_class :public Tdialog {
  11. public:
  12. Tcheckbox * acheckbox;
  13. Tradio *aradio;
  14. Tscroll *hscroll;
  15. Tscroll *vscroll;
  16. Ttedit  *tedit;
  17. Ttedit  *tedit2;
  18. Tlistbox *listbox;
  19. public:
  20. filedlg_class(int ID,char *title,int left,int top,int width,int height);
  21. ~filedlg_class ();
  22. };
  23. #endif