1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #pragma once
- #include <Fenster.h>
- #include <Knopf.h>
- #include "RightTools\RightTools.h"
- #include "../Karte/EditorKarte.h"
- using namespace Framework;
- namespace Editor
- {
- class Interface : public ZeichnungHintergrund
- {
- private:
- Knopf * beenden;
- RightTools *right;
- KarteDaten *daten;
- Schrift *schrift;
- bool verlassen;
- int ref;
- public:
-
-
- Interface( Schrift *zS, Punkt maxSize );
-
- ~Interface();
- void setDaten( KarteDaten *daten );
-
-
- void doMausEreignis( MausEreignis &me ) override;
-
-
- void doTastaturEreignis( TastaturEreignis &te ) override;
- bool tick( double time ) override;
-
-
- void render( Bild &zRObj ) override;
-
- void reset();
-
- bool hatVerlassen() const;
-
-
- Interface *getThis();
-
-
- Interface *release();
- };
- }
|