nongnu.org/gsequencer


gsequencer 7.0.5
Advanced Gtk+ Sequencer
ags_vst_iinter_app_audio.h
Go to the documentation of this file.
1/* GSequencer - Advanced GTK Sequencer
2 * Copyright (C) 2005-2021 Joël Krähemann
3 *
4 * This file is part of GSequencer.
5 *
6 * GSequencer is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * GSequencer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GSequencer. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef __AGS_VST_IINTER_APP_AUDIO_H__
21#define __AGS_VST_IINTER_APP_AUDIO_H__
22
23#include <glib.h>
24
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31 //FIXME:JK: add missing include
32 typedef struct ViewRect AgsVstViewRect;
33 typedef struct Event AgsVstEvent;
34
35 typedef struct IInterAppAudioHost AgsVstIInterAppAudioHost;
36 typedef struct IInterAppAudioConnectionNotification AgsVstIInterAppAudioConnectionNotification;
37 typedef struct IInterAppAudioPresetManager AgsVstIInterAppAudioPresetManager;
38
40
42 AgsVstViewRect *view_rect, gfloat *scale);
43
45
47
49 guint32 event);
50
52 void **icon);
53
55 AgsVstEvent *event);
56
58 AgsVstTUID *cid);
59
61
63
65 gboolean new_state);
66
68
70
72
74
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif /*__AGS_VST_IINTER_APP_AUDIO_H__*/
gint32 AgsVstTResult
Definition ags_vst_ftypes.h:58
gint8 AgsVstTUID[16]
Definition ags_vst_funknown.h:79
struct Event AgsVstEvent
Definition ags_vst_ievents.h:40
const AgsVstTUID * ags_vst_iinter_app_audio_host_get_iid()
Definition ags_vst_iinter_app_audio.cpp:34
AgsVstTResult ags_vst_iinter_app_audio_host_get_screen_size(AgsVstIInterAppAudioHost *iinter_app_audio_host, AgsVstViewRect *view_rect, gfloat *scale)
Definition ags_vst_iinter_app_audio.cpp:49
AgsVstTResult ags_vst_iinter_app_audio_preset_manager_run_load_preset_browser(AgsVstIInterAppAudioPresetManager *iinter_app_audio_manager)
Definition ags_vst_iinter_app_audio.cpp:205
const AgsVstTUID * ags_vst_iinter_app_audio_preset_manager_get_iid()
Definition ags_vst_iinter_app_audio.cpp:192
AgsVstTResult ags_vst_iinter_app_audio_host_send_remote_control_event(AgsVstIInterAppAudioHost *iinter_app_audio_host, guint32 event)
Definition ags_vst_iinter_app_audio.cpp:90
AgsVstTResult ags_vst_iinter_app_audio_preset_manager_run_save_preset_browser(AgsVstIInterAppAudioPresetManager *iinter_app_audio_manager)
Definition ags_vst_iinter_app_audio.cpp:218
const AgsVstTUID * ags_vst_iinter_app_audio_connection_notification_get_iid()
Definition ags_vst_iinter_app_audio.cpp:166
AgsVstTResult ags_vst_iinter_app_audio_host_switch_to_host(AgsVstIInterAppAudioHost *iinter_app_audio_host)
Definition ags_vst_iinter_app_audio.cpp:76
AgsVstTResult ags_vst_iinter_app_audio_host_show_settings_view(AgsVstIInterAppAudioHost *iinter_app_audio_host)
Definition ags_vst_iinter_app_audio.cpp:154
struct IInterAppAudioHost AgsVstIInterAppAudioHost
Definition ags_vst_iinter_app_audio.h:35
struct IInterAppAudioPresetManager AgsVstIInterAppAudioPresetManager
Definition ags_vst_iinter_app_audio.h:37
AgsVstIInterAppAudioPresetManager * ags_vst_iinter_app_audio_host_create_preset_manager(AgsVstIInterAppAudioHost *iinter_app_audio_host, AgsVstTUID *cid)
Definition ags_vst_iinter_app_audio.cpp:138
void ags_vst_iinter_app_audio_connection_notification_on_inter_app_audio_connection_notification_state_change(AgsVstIInterAppAudioConnectionNotification *iinter_app_audio_connection_notification, gboolean new_state)
Definition ags_vst_iinter_app_audio.cpp:179
AgsVstTResult ags_vst_iinter_app_audio_preset_manager_load_next_preset(AgsVstIInterAppAudioPresetManager *iinter_app_audio_manager)
Definition ags_vst_iinter_app_audio.cpp:231
AgsVstTResult ags_vst_iinter_app_audio_host_connected_to_host(AgsVstIInterAppAudioHost *iinter_app_audio_host)
Definition ags_vst_iinter_app_audio.cpp:63
AgsVstTResult ags_vst_iinter_app_audio_host_schedule_event_from_ui(AgsVstIInterAppAudioHost *iinter_app_audio_host, AgsVstEvent *event)
Definition ags_vst_iinter_app_audio.cpp:120
AgsVstTResult ags_vst_iinter_app_audio_preset_manager_load_previous_preset(AgsVstIInterAppAudioPresetManager *iinter_app_audio_manager)
Definition ags_vst_iinter_app_audio.cpp:244
struct IInterAppAudioConnectionNotification AgsVstIInterAppAudioConnectionNotification
Definition ags_vst_iinter_app_audio.h:36
AgsVstTResult ags_vst_iinter_app_audio_host_get_host_icon(AgsVstIInterAppAudioHost *iinter_app_audio_host, void **icon)
Definition ags_vst_iinter_app_audio.cpp:105
struct ViewRect AgsVstViewRect
Definition ags_vst_iplug_view.h:33