Ende.h 568 B

1234567891011121314151617181920212223242526272829303132
  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 doPublicMausEreignis( MausEreignis &me );
  23. void render( Bild &zRObj );
  24. // constant
  25. bool getWeiter() const;
  26. };
  27. #endif