Browse Source

Adds Settings ToolTips & ShowTerminatedConnections=false as default

Andreas T. Meyer-Berg 6 năm trước cách đây
mục cha
commit
a04ccb659b

+ 1 - 1
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/VisualizationConfiguration.java

@@ -54,7 +54,7 @@ public class VisualizationConfiguration {
 		setShowLinks(true);
 		setShowSmartDevices(true);
 		setShowSmartDeviceNames(true);
-		setShowTerminatedConnections(true);
+		setShowTerminatedConnections(false);
 		setDeviceVisualizationRadius(17);
 		setShowLinkToolTips(true);
 		setLinkRadius(6);

+ 7 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/popups/SettingsPopUp.java

@@ -44,6 +44,7 @@ public class SettingsPopUp extends JFrame {
 		
 		JLabel lblVisualisationSize = new JLabel("Visualization Radius:");
 		lblVisualisationSize.setBounds(12, 13, 125, 16);
+		lblVisualisationSize.setToolTipText("<html>Radius of the SmartDevice Visualization, which is half of the Device width.</html>");
 		pVisualisation.add(lblVisualisationSize);
 		
 		JLabel lblradiusInPixels = new JLabel("(Radius in pixels:)");
@@ -69,36 +70,42 @@ public class SettingsPopUp extends JFrame {
 		chckbxTerminatedConnections.setBounds(8, 67, 197, 25);
 		chckbxTerminatedConnections.setSelected(config.isShowTerminatedConnections());
 		chckbxTerminatedConnections.addActionListener(a->config.setShowTerminatedConnections(chckbxTerminatedConnections.isSelected()));
+		chckbxTerminatedConnections.setToolTipText("<html>True if connections to devices, which were removed from the connection,<br> should be shown until the terminating packages of this device were sent.</html>");
 		pVisualisation.add(chckbxTerminatedConnections);
 		
 		JCheckBox chckbxConnections = new JCheckBox("Show connections");
 		chckbxConnections.setBounds(237, 67, 182, 25);
 		chckbxConnections.setSelected(config.isShowConnections());
 		chckbxConnections.addActionListener(a->config.setShowConnections(chckbxConnections.isSelected()));
+		chckbxConnections.setToolTipText("True if connections (Services/Connections) should be shown on the Visualization Panel.");
 		pVisualisation.add(chckbxConnections);
 		
 		JCheckBox chckbxLinks = new JCheckBox("Show links");
 		chckbxLinks.setBounds(237, 97, 178, 25);
 		chckbxLinks.setSelected(config.isShowLinks());
 		chckbxLinks.addActionListener(a->config.setShowLinks(chckbxLinks.isSelected()));
+		chckbxLinks.setToolTipText("<html>True if Links (Mediums of physical connection for devices like Wifi, Ethernet, Zigbee),<br> should be visualized (As part of the Circle around the Devices)</html>");
 		pVisualisation.add(chckbxLinks);
 		
 		JCheckBox chckbxLinkToolTips = new JCheckBox("Show link ToolTips");
 		chckbxLinkToolTips.setBounds(237, 127, 178, 25);
 		chckbxLinkToolTips.setSelected(config.isShowLinkToolTips());
 		chckbxLinkToolTips.addActionListener(a->config.setShowLinkToolTips(chckbxLinkToolTips.isSelected()));
+		chckbxLinkToolTips.setToolTipText("True if the link name should be shown on, when the mouse hovers over the link");
 		pVisualisation.add(chckbxLinkToolTips);
 		
 		JCheckBox chckbxSmartdevices = new JCheckBox("Show SmartDevices");
 		chckbxSmartdevices.setBounds(8, 97, 197, 25);
 		chckbxSmartdevices.setSelected(config.isShowSmartDevices());
 		chckbxSmartdevices.addActionListener(a->config.setShowSmartDevices(chckbxSmartdevices.isSelected()));
+		chckbxSmartdevices.setToolTipText("True if SmartDevices should be shown (Circles on the VisualizationPanel)");
 		pVisualisation.add(chckbxSmartdevices);
 		
 		JCheckBox chckbxDeviceNames = new JCheckBox("Show SmartDevice names");
 		chckbxDeviceNames.setBounds(8, 127, 197, 25);
 		chckbxDeviceNames.setSelected(config.isShowSmartDeviceNames());
 		chckbxDeviceNames.addActionListener(a->config.setShowSmartDeviceNames(chckbxDeviceNames.isSelected()));
+		chckbxDeviceNames.setToolTipText("True if SmartDevice names should be shown");
 		pVisualisation.add(chckbxDeviceNames);
 
 		JPanel pImports = new JPanel();