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

界面编程

开发平台:

DOS

  1. #ifndef __RADIO_H
  2. #define __RADIO_H
  3. #include "checkbox.h"
  4. typedef class radio_class Tradio;
  5. class radio_class: public Tcheckbox{
  6. public:
  7. radio_class(int ID,char *title_hotkey,
  8. int left,int top,int width,int height);
  9. virtual void  draw ( );
  10. virtual int control_change_value (int new_value  );
  11. };
  12. #endif