summaryrefslogtreecommitdiffstats
path: root/ingen/client
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/client')
-rw-r--r--ingen/client/PluginUI.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/ingen/client/PluginUI.hpp b/ingen/client/PluginUI.hpp
index 48c80ca2..a4804b4c 100644
--- a/ingen/client/PluginUI.hpp
+++ b/ingen/client/PluginUI.hpp
@@ -54,16 +54,20 @@ public:
uint32_t format,
const void* buffer);
+ bool is_resizable() const;
+
Ingen::Shared::World* world() const { return _world; }
SharedPtr<const NodeModel> node() const { return _node; }
private:
- PluginUI(Ingen::Shared::World* world,
- SharedPtr<const NodeModel> node);
+ PluginUI(Ingen::Shared::World* world,
+ SharedPtr<const NodeModel> node,
+ const LilvNode* ui_node);
Ingen::Shared::World* _world;
SharedPtr<const NodeModel> _node;
SuilInstance* _instance;
+ LilvNode* _ui_node;
static SuilHost* ui_host;