Added a wiki button

This commit is contained in:
Pherring04 2024-08-05 14:32:53 -05:00
parent 92b0168b7b
commit 661837fd4b
4 changed files with 26 additions and 3 deletions

View File

@ -17,6 +17,7 @@ import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.Desktop;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.BufferedReader;
@ -30,6 +31,7 @@ import java.net.InetSocketAddress;
import java.net.MulticastSocket;
import java.net.UnknownHostException;
import java.net.SocketTimeoutException;
import java.net.URI;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.channels.NotYetConnectedException;
@ -240,6 +242,18 @@ public class SimControlApplication extends TrickApplication implements PropertyC
launchTrickApplication("mtv", host + " " + port);
}
@Action
public void openWiki() {
if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) {
try {
Desktop.getDesktop().browse(new URI("https://nasa.github.io/trick/index"));
}
catch(Exception e) {
System.out.println("Exception occurred while opening wiki: " + e.getMessage());
}
}
}
@Action
public void freezeAt() {
actionController.handleFreezeAt(simState.getExecOutTime(), getMainFrame());
@ -970,9 +984,14 @@ public class SimControlApplication extends TrickApplication implements PropertyC
"---",
"startMTV",
"---",
"throttle"
"throttle",
"---",
"openWiki"
};
JToolBar toolBar = new JToolBar();
JToolBar toolBar = new JToolBar();
//JButton button = new JButton("openWiki");
//button.setPreferredSize(new Dimension(22, 220)); // Set preferred size
//toolBar.add(button);
for (String actionName : toolbarActionNames) {
if (actionName.equals("---")) {
toolBar.addSeparator();

View File

@ -237,7 +237,7 @@ public class SimControlActionController {
}
}
}
/**
* Invoked when the users presses the Step button.
* @param debug_flag single step the sim

View File

@ -24,6 +24,10 @@ startMTV.Action.text = Start &Event/Malfunction Trick View
startMTV.Action.shortDescription = Start Event/Malfunction Trick View (MTV)
startMTV.Action.icon = mtv_22x22.png
openWiki.Action.text = Open Trick Wiki
openWiki.Action.shortDescription = Open Trick Wiki in default browser
openWiki.Action.icon = question_22x22.png
freezeAt.Action.text = Freeze &At...
freezeAt.Action.shortDescription = Freeze At

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B