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

界面编程

开发平台:

DOS

  1. #ifndef __RADIOS_H
  2. #define __RADIOS_H
  3. #include "group.h"
  4. /////////////////////////////////////3/////////////////////////////////////
  5. typedef class radios_group_class Tradios_group;
  6. class radios_group_class:public Tgroup {
  7. public:
  8. public:
  9. radios_group_class (int ID,char *title_hotkey,int left,int top,int width,int height );
  10. virtual int control_change_value (int new_value );
  11. virtual int key_pressed_handler  (int key_scan_num);
  12. virtual int msg_handler  (MSG& message);
  13. protected:
  14. BOOL flag;
  15. };
  16. #endif