123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef KERelease_H
- #define KERelease_H
- #include <Fenster.h>
- #include <Tabelle.h>
- #include <Thread.h>
- #include <Knopf.h>
- #include <Animation.h>
- #include <AuswahlBox.h>
- using namespace Framework;
- class KERelease : public Thread
- {
- private:
- Fenster *fenster;
- ObjTabelle *abbilder;
- Knopf *veröff;
- Knopf *abbildErstellen;
- TextFeld *abbildName;
- Animation2D *laden;
- TextFeld *shopT;
- AuswahlBox *testVersionErwerbbar;
- AuswahlBox *vollVersionErwerbbar;
- TextFeld *preisT;
- TextFeld *testVersionPreisT;
- TextFeld *vollVersionPreisT;
- TextFeld *testVersionPreis;
- TextFeld *vollVersionPreis;
- Knopf *shopÜbernehmen;
- int aktion;
- int zeile;
- bool animation;
- double tickVal;
- bool sichtbar;
- bool rechts;
- int xStart;
- int breite;
- int karte;
- unsigned char alpha;
- public:
-
- KERelease( int karte );
-
- ~KERelease();
-
- bool herstellenME( Knopf *obj, MausEreignis &me );
- bool removeME( Knopf *obj, MausEreignis &me );
- bool veröffentlichenME( MausEreignis &me );
- bool abbildErstellenME( MausEreignis &me );
- bool shopÜbernehmenME( MausEreignis &me );
- 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 );
-
- bool istSichtbar() const;
- };
- #endif
|