osb/source/frontend/StarScriptPane.hpp

34 lines
672 B
C++
Raw Normal View History

#pragma once
2023-06-20 14:33:09 +10:00
2023-07-02 17:19:54 +10:00
#include "StarBaseScriptPane.hpp"
2023-06-20 14:33:09 +10:00
namespace Star {
STAR_CLASS(CanvasWidget);
STAR_CLASS(ScriptPane);
STAR_CLASS(UniverseClient);
2023-07-02 17:19:54 +10:00
class ScriptPane : public BaseScriptPane {
2023-06-20 14:33:09 +10:00
public:
ScriptPane(UniverseClientPtr client, Json config, EntityId sourceEntityId = NullEntityId);
void displayed() override;
void dismissed() override;
void tick(float dt) override;
2023-06-20 14:33:09 +10:00
PanePtr createTooltip(Vec2I const& screenPosition) override;
bool openWithInventory() const;
bool closeWithInventory() const;
2023-06-20 14:33:09 +10:00
2023-07-29 02:12:03 +10:00
EntityId sourceEntityId() const;
2023-07-02 17:19:54 +10:00
LuaCallbacks makePaneCallbacks() override;
2023-07-04 22:36:27 +10:00
private:
2023-06-20 14:33:09 +10:00
UniverseClientPtr m_client;
EntityId m_sourceEntityId;
};
}