Control Surface API  3.0.3
InsertionPoint.java
1 package com.bitwig.extension.controller.api;
2 
10 public interface InsertionPoint
11 {
16  void copyTracks(Track... tracks);
17 
21  void moveTracks(Track... tracks);
22 
27  void copyDevices(Device... devices);
28 
33  void moveDevices(Device... devices);
34 
39  void copySlotsOrScenes(ClipLauncherSlotOrScene... clipLauncherSlotOrScenes);
40 
45  void moveSlotsOrScenes(ClipLauncherSlotOrScene... clipLauncherSlotOrScenes);
46 
50  void insertFile(String path);
51 
59  void insertVST2Device(int id);
60 
68  void insertVST3Device(String id);
69 
71  void paste();
72 
74  void browse();
75 }
void copySlotsOrScenes(ClipLauncherSlotOrScene...clipLauncherSlotOrScenes)
void moveSlotsOrScenes(ClipLauncherSlotOrScene...clipLauncherSlotOrScenes)