1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/*
vst~ - VST plugin object for PD
based on the work of Jarno Seppänen and Mark Williamson
Copyright (c)2003-2005 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "vsthost.h"
#include "editor.h"
void VSTPlugin::Edit(bool open)
{
if(Is()) {
if(open) {
if(HasEditor() && !IsEdited())
StartEditor(this);
}
else if(IsEdited())
StopEditor(this);
}
}
void VSTPlugin::StartEditing(WHandle h)
{
FLEXT_ASSERT(h != NULL);
Dispatch(effEditOpen,0,0,hwnd = h);
// Dispatch(effEditTop);
TitleEditor(this,title.c_str());
}
void VSTPlugin::StopEditing()
{
if(Is()) {
Dispatch(effEditClose);
hwnd = NULL;
}
}
void VSTPlugin::Visible(bool vis)
{
if(Is() && IsEdited()) ShowEditor(this,vis);
}
bool VSTPlugin::IsVisible() const
{
return Is() && IsEdited() && IsEditorShown(this);
}
void VSTPlugin::SetPos(int x,int y,bool upd)
{
if(Is()) {
posx = x; posy = y;
if(upd && IsEdited()) MoveEditor(this,posx,posy);
}
}
void VSTPlugin::SetCaption(bool c)
{
if(Is()) {
caption = c;
if(IsEdited()) CaptionEditor(this,c);
}
}
void VSTPlugin::SetTitle(const char *t)
{
if(Is()) {
title = t;
if(IsEdited()) TitleEditor(this,t);
}
}
|