Bitwig Studio Control Surface API  4.0.1
HardwareElement.java
1 package com.bitwig.extension.controller.api;
2 
4 
11 public interface HardwareElement
12 {
14  String getId();
15 
17  String getLabel();
18 
20  void setLabel(String label);
21 
24 
26  void setLabelColor(Color color);
27 
30 
31  void setLabelPosition(RelativePosition position);
32 
34  void setBounds(double xInMM, double yInMM, double widthInMM, double heightInMM);
35 
36  double getX();
37 
38  double getY();
39 
40  double getWidth();
41 
42  double getHeight();
43 }
void setBounds(double xInMM, double yInMM, double widthInMM, double heightInMM)