summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/plugin.h
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-07-21 14:51:57 +0200
committerRobin Gareus <robin@gareus.org>2017-07-31 21:31:23 +0200
commit2716ce41e08c3e112c209b3840ff60d6e9bc2bb2 (patch)
treec18cec91f49e104ae4b7ecf8ccf6afebf3c1baf0 /libs/ardour/ardour/plugin.h
parent59775df9be375a249b3c4cbdc7e825eee27c393e (diff)
Indicate whether to show plugin's inline display in GUI
This is currently done by an extension data similarly to LV2_INLINEDISPLAY__interface.
Diffstat (limited to 'libs/ardour/ardour/plugin.h')
-rw-r--r--libs/ardour/ardour/plugin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/ardour/plugin.h b/libs/ardour/ardour/plugin.h
index c5eb7d31c9..4e7f45bc8a 100644
--- a/libs/ardour/ardour/plugin.h
+++ b/libs/ardour/ardour/plugin.h
@@ -171,6 +171,7 @@ class LIBARDOUR_API Plugin : public PBD::StatefulDestructible, public Latent
} Display_Image_Surface;
virtual bool has_inline_display () { return false; }
+ virtual bool inline_display_in_gui () { return false; }
virtual Display_Image_Surface* render_inline_display (uint32_t, uint32_t) { return NULL; }
PBD::Signal0<void> QueueDraw;