osb/source/frontend/StarScriptPane.hpp

34 lines
672 B
C++
Raw Normal View History

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