tscroll.h
上传用户:tigerk9
上传日期:2020-03-10
资源大小:237k
文件大小:0k
源码类别:

Telnet客户端

开发平台:

Visual C++

  1. #ifndef __TSCROLL_H
  2. #define __TSCROLL_H
  3. #include "tconsole.h"
  4. #include "tmouse.h"
  5. typedef int(stripfunc)(char *, char *, int);
  6. class TScroller {
  7. private:
  8. char *pcScrollData;
  9. long iScrollSize;
  10. long iScrollEnd;
  11. int iPastEnd;
  12. int iDisplay;
  13. stripfunc *strip;
  14. TMouse &Mouse;
  15. public:
  16. void init(stripfunc *s);
  17. void update(const char *pszBegin, const char *pszEnd);
  18. void ScrollBack();
  19. TScroller(TMouse &M, int size=20000);
  20. ~TScroller();
  21. };
  22. #endif