Audacity 3.2.0
|
#include <lv2_external_ui.h>
Public Attributes | |
void(* | run )(struct _LV2_External_UI_Widget *_this_) |
void(* | show )(struct _LV2_External_UI_Widget *_this_) |
void(* | hide )(struct _LV2_External_UI_Widget *_this_) |
When LV2_EXTERNAL_UI__Widget UI is instantiated, the returned LV2UI_Widget handle must be cast to pointer to LV2_External_UI_Widget. UI is created in invisible state.
Definition at line 41 of file lv2_external_ui.h.
void(* _LV2_External_UI_Widget::hide) (struct _LV2_External_UI_Widget *_this_) |
Host calls this function to make the plugin UI invisible again.
_this_ | the UI context |
Definition at line 62 of file lv2_external_ui.h.
void(* _LV2_External_UI_Widget::run) (struct _LV2_External_UI_Widget *_this_) |
Host calls this function regularly. UI library implementing the callback may do IPC or redraw the UI.
_this_ | the UI context |
Definition at line 48 of file lv2_external_ui.h.
void(* _LV2_External_UI_Widget::show) (struct _LV2_External_UI_Widget *_this_) |
Host calls this function to make the plugin UI visible.
_this_ | the UI context |
Definition at line 55 of file lv2_external_ui.h.