12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #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;
- UIInit uiFactory;
- bool verlassen;
- public:
-
-
- Interface( UIInit &uiFactory, Punkt maxSize );
-
- ~Interface();
- void setDaten( KarteDaten *daten );
-
-
- void doPublicMausEreignis( MausEreignis &me ) override;
-
-
- void doTastaturEreignis( TastaturEreignis &te ) override;
- bool tick( double time ) override;
-
-
- void render( Bild &zRObj ) override;
-
- void reset();
-
- bool hatVerlassen() const;
- };
- }
|