numericcontrol.h
上传用户:chn_coc
上传日期:2007-12-20
资源大小:563k
文件大小:1k
源码类别:

P2P编程

开发平台:

Windows_Unix

  1. /*
  2.  *  numericcontrol.h
  3.  *  PeerCast
  4.  *
  5.  *  Created by mode7 on Mon Apr 05 2004.
  6.  *  Copyright (c) 2002-2004 peercast.org. All rights reserved.
  7.  *
  8.  */
  9. #ifndef _NUMERICCONTROL_H
  10. #define _NUMERICCONTROL_H
  11. #include "textcontrol.h"
  12. class NumericControl: public TextControl
  13. {
  14. public:
  15. explicit NumericControl( const int a, const int id )
  16. :TextControl( a, id )
  17. {
  18. }
  19. void setIntValue  ( WindowRef window, const int   value );
  20. void setFloatValue( WindowRef window, const float value );
  21. int   getIntValue  ( WindowRef window );
  22. float getFloatValue( WindowRef window );
  23. private:
  24. float mValue;
  25. };
  26. #endif // _NUMERICCONTROL_H