msgBox.h
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. #ifndef MSGBOX_H
  2. #define MSGBOX_H
  3. #include "entity2D.h"
  4. #include "court.h"
  5. #include <stdio.h>
  6. #include <string>
  7. class msgBox : public entity2D
  8. {
  9. public:
  10. msgBox( court* cancha, std::string text, std::string prompt );
  11. msgBox( const msgBox& rhs );
  12. msgBox();
  13. ~msgBox();
  14. void draw(HDC hDC);
  15. void setCancha(court* cancha);
  16. msgBox& operator=(const msgBox& rhs);
  17. private:
  18. court* m_Cancha;
  19. std::string m_sText;
  20. std::string m_sPrompt;
  21. HFONT m_fontText;
  22. HFONT m_fontPrompt;
  23. HBRUSH m_brushFondoMsg;
  24. };
  25.  
  26. #endif