Ende.h 621 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef Ende_H
  2. #define Ende_H
  3. #include <Knopf.h>
  4. #include <Rahmen.h>
  5. #include <UIInitialization.h>
  6. using namespace Framework;
  7. class Ende : public virtual ReferenceCounter
  8. {
  9. private:
  10. LRahmen *rahmen;
  11. TextFeld *text;
  12. TextFeld *warten;
  13. Knopf *ok;
  14. bool weiter;
  15. public:
  16. // Konstruktor
  17. Ende( UIInit &uiFactory );
  18. // Destruktor
  19. ~Ende();
  20. // nicht constant
  21. void setGewonnen( char gewonnen );
  22. void doTastaturEreignis( TastaturEreignis &te );
  23. void doPublicMausEreignis( MausEreignis &me );
  24. void render( Bild &zRObj );
  25. // constant
  26. bool getWeiter() const;
  27. };
  28. #endif