Initial commit

This commit is contained in:
2026-06-13 00:05:19 +08:00
commit 754cd7ccdb
402 changed files with 123771 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
//---------------------------------------------------------------------------
#ifndef VSTPluginFormUnitH
#define VSTPluginFormUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "GeneralDialogPanel.h"
#include "TextButton.h"
#include <Vcl.ExtCtrls.hpp>
#include "Instruments.h"
#include "ListPanel.h"
//---------------------------------------------------------------------------
class TVSTPluginForm : public TForm
{
__published: // IDE-managed Components
TGeneralDialogPanel *m_BKGPanel;
TTextButton *m_btnCancel;
TTextButton *m_btnOk;
TShape *m_ShapeList;
TLabel *m_lblPlugins;
TPanel *m_panFont;
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
TListPanel *m_lvPlugins;
VSTINFO* m_pVST;
void __fastcall OnItemClick(TListPanel *Sender, int Index);
public: // User declarations
int m_iSel;
__fastcall TVSTPluginForm(TComponent* Owner, VSTINFO* pVST);
};
//---------------------------------------------------------------------------
extern PACKAGE TVSTPluginForm *VSTPluginForm;
//---------------------------------------------------------------------------
#endif