-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheditormac.hpp
88 lines (70 loc) · 1.73 KB
/
editormac.hpp
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
77
78
79
80
81
82
83
84
85
86
87
88
/*
vst~ - VST plugin object for PD
based on the work of Jarno Seppänen and Mark Williamson
Copyright (c)2003-2006 Thomas Grill ([email protected])
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "Editor.h"
#include "VstHost.h"
#include <flext.h>
#if FLEXT_OS == FLEXT_OS_MAC
// only Mac OSX code is situated in this file
void SetupEditor()
{
}
void StartEditor(VSTPlugin *p)
{
ERect r;
p->GetEditorRect(r);
WindowRef hwnd;
Rect rect;
rect.top = r.top;
rect.left = r.left;
rect.bottom = r.bottom;
rect.right = r.right;
OSStatus err = CreateNewWindow(kFloatingWindowClass,kWindowNoAttributes,&rect,&hwnd);
p->StartEditing(hwnd);
}
void StopEditor(VSTPlugin *p)
{
ReleaseWindow(p->EditorHandle());
p->StopEditing();
}
void ShowEditor(VSTPlugin *p,bool show)
{
if(show)
ShowWindow(p->EditorHandle());
else
HideWindow(p->EditorHandle());
}
void MoveEditor(VSTPlugin *p,int x,int y)
{
MoveWindow(p->EditorHandle(),x,y,false);
}
void SizeEditor(VSTPlugin *p,int x,int y)
{
SizeWindow(p->EditorHandle(),x,y,true);
}
void CaptionEditor(VSTPlugin *plug,bool c)
{
OSStatus ret = ChangeWindowAttributes(plug->EditorHandle(),kWindowNoTitleBarAttribute|kWindowNoShadowAttribute,kWindowNoAttributes);
}
void TitleEditor(VSTPlugin *p,const char *t)
{
CFStringRef str = CFStringCreateWithCString(NULL,t,kCFStringEncodingMacRoman); // or kCFStringEncodingASCII ?
SetWindowTitleWithCFString(p->EditorHandle(),str);
CFRelease(str);
}
void HandleEditor(VSTPlugin *p,bool h)
{
}
void FrontEditor(VSTPlugin *p)
{
BringToFront(p->EditorHandle());
}
void BelowEditor(VSTPlugin *p)
{
SendBehind(p->EditorHandle(),NULL);
}
#endif // FLEXT_OS_MAC