21 lines
814 B
HTML
21 lines
814 B
HTML
<!doctype html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VST GUI</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; background: #1a1d24; color: #c8ccd4;
|
|
display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
|
|
#msg { text-align: center; max-width: 520px; line-height: 1.6; }
|
|
code { background: #262b34; padding: 2px 6px; border-radius: 4px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="msg">Cửa sổ nổi VST GUI (T8).<br>Plugin editor sẽ được attach vào HWND cửa sổ này ở T9.</div>
|
|
<script>
|
|
// T8: placeholder — chưa có native editor. JS của DAW gọi invoke('open_vst_gui', ...)
|
|
// để mở/focus cửa sổ này. Thông tin (track, plugin) nằm ở title + label window.
|
|
</script>
|
|
</body>
|
|
</html>
|