12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef KEShopSeite_H
- #define KEShopSeite_H
- #include <Fenster.h>
- #include <Thread.h>
- #include <Animation.h>
- #include "KESSEditor.h"
- #include "KESSVorschau.h"
- using namespace Framework;
- class KEShopSeite : public Thread
- {
- private:
- Fenster *fenster;
- Animation2D *laden;
- KESSEditor *editor;
- KESSVorschau *vorschau;
- int aktion;
- int zeile;
- bool animation;
- double tickVal;
- bool sichtbar;
- bool rechts;
- int xStart;
- int breite;
- int karte;
- unsigned char alpha;
- public:
- // Konstruktor
- KEShopSeite( int karte );
- // Destruktor
- ~KEShopSeite();
- // nicht constant
- void setSichtbar( bool s, bool vr );
- void thread() override;
- void doPublicMausEreignis( MausEreignis &me );
- void doTastaturEreignis( TastaturEreignis &te );
- bool tick( double z );
- void render( Bild &zRObj );
- // constant
- bool istSichtbar() const;
- };
- #endif
|