VideoEnde.h 464 B

123456789101112131415161718192021222324252627282930
  1. #ifndef VideoEnde_H
  2. #define VideoEnde_H
  3. #include <TextFeld.h>
  4. using namespace Framework;
  5. class VideoEnde
  6. {
  7. private:
  8. TextFeld *text;
  9. int ref;
  10. public:
  11. // Konstruktor
  12. VideoEnde( Schrift *zSchrift );
  13. // Destruktor
  14. ~VideoEnde();
  15. // nicht constant
  16. void setSichtbar( bool b );
  17. void setText( const char *txt );
  18. void render( Bild &zRObj );
  19. // constant
  20. bool istSichtbar() const;
  21. // Reference Counting
  22. VideoEnde *getThis();
  23. VideoEnde *release();
  24. };
  25. #endif