|
@@ -1,18 +1,13 @@
|
|
|
-package uraxis.toolbar;
|
|
|
+package urgrip.toolbar;
|
|
|
|
|
|
import com.ur.urcap.api.contribution.toolbar.ToolbarAPIProvider;
|
|
|
import com.ur.urcap.api.contribution.toolbar.ToolbarContext;
|
|
|
import com.ur.urcap.api.contribution.toolbar.swing.SwingToolbarContribution;
|
|
|
import com.ur.urcap.api.domain.io.DigitalIO;
|
|
|
-import com.ur.urcap.api.domain.io.IO;
|
|
|
-import com.ur.urcap.api.domain.io.IOModel;
|
|
|
-import uraxis.Activator;
|
|
|
|
|
|
import javax.swing.*;
|
|
|
import java.awt.*;
|
|
|
-import java.awt.event.ActionEvent;
|
|
|
import java.util.*;
|
|
|
-import java.util.Timer;
|
|
|
|
|
|
class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
private static final int VERTICAL_SPACE = 10;
|
|
@@ -24,6 +19,13 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
private JLabel demoToolStatus;
|
|
|
private HashMap<String, JCheckBox> boxes=new HashMap<>();
|
|
|
private DigitalIO out0,out1, in0, in1;
|
|
|
+ private JButton bGrip;
|
|
|
+ private JButton bRelease;
|
|
|
+ private JButton bBlow;
|
|
|
+ private JButton couple;
|
|
|
+ private JButton decouple;
|
|
|
+ private JButton bCouple;
|
|
|
+ private JButton bDecouple;
|
|
|
|
|
|
|
|
|
MyToolbarContribution(ToolbarContext context) {
|
|
@@ -34,8 +36,12 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
|
|
|
@Override
|
|
|
public void openView() {
|
|
|
- IOModel ioModel = apiProvider.getApplicationAPI().getIOModel();
|
|
|
- Collection<IO> ios = ioModel.getIOs();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void closeView() {
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private void InitializeIO() {
|
|
@@ -45,10 +51,6 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
in1 = ioHandler.getDigitalIO("tool_in[1]");
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public void closeView() {
|
|
|
- }
|
|
|
-
|
|
|
public void buildUI(JPanel jPanel) {
|
|
|
jPanel.setLayout(new BoxLayout(jPanel, BoxLayout.Y_AXIS));
|
|
|
jPanel.add(createHeader());
|
|
@@ -61,7 +63,7 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
Box headerBox = Box.createHorizontalBox();
|
|
|
headerBox.setAlignmentX(Component.CENTER_ALIGNMENT);
|
|
|
|
|
|
- JLabel header = new JLabel("Festo Axis Control");
|
|
|
+ JLabel header = new JLabel("Gripper");
|
|
|
header.setFont(header.getFont().deriveFont(Font.BOLD, HEADER_FONT_SIZE));
|
|
|
headerBox.add(header);
|
|
|
return headerBox;
|
|
@@ -69,6 +71,46 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
|
|
|
private Box createButtons() {
|
|
|
Box box = Box.createHorizontalBox();
|
|
|
+
|
|
|
+ bGrip = new JButton("grip");
|
|
|
+ box.add(bGrip);
|
|
|
+ new MyButton(bGrip, new HandleButton() {
|
|
|
+ @Override public void action() {
|
|
|
+ out0.setValue(true);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ bRelease = new JButton("release");
|
|
|
+ box.add(bRelease);
|
|
|
+ new MyButton(bRelease, new HandleButton() {
|
|
|
+ @Override public void action() {
|
|
|
+ out0.setValue(false);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ bBlow = new JButton("blow out");
|
|
|
+ box.add(bBlow);
|
|
|
+ new MyButton(bBlow, new HandleButton() {
|
|
|
+ @Override public void action() {
|
|
|
+ out0.setValue(false);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ bCouple = new JButton("couple");
|
|
|
+ box.add(bCouple);
|
|
|
+ new MyButton(bCouple, new HandleButton() {
|
|
|
+ @Override public void action() {
|
|
|
+ out0.setValue(false);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ bDecouple = new JButton("decouple");
|
|
|
+ box.add(bDecouple);
|
|
|
+ new MyButton(bDecouple, new HandleButton() {
|
|
|
+ @Override public void action() {
|
|
|
+ out0.setValue(false);
|
|
|
+ }
|
|
|
+ });
|
|
|
return box;
|
|
|
}
|
|
|
|
|
@@ -91,4 +133,5 @@ class MyToolbarContribution implements SwingToolbarContribution {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
}
|