VideoEnde.h 482 B

123456789101112131415161718192021222324252627
  1. #ifndef VideoEnde_H
  2. #define VideoEnde_H
  3. #include <TextFeld.h>
  4. #include <UIInitialization.h>
  5. using namespace Framework;
  6. class VideoEnde : public virtual ReferenceCounter
  7. {
  8. private:
  9. TextFeld *text;
  10. public:
  11. // Konstruktor
  12. VideoEnde( UIInit &uiFactory );
  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. };
  22. #endif