Add basic help page
lsafej
This commit is contained in:
6
src/main/resources/HelpView.fxml
Normal file
6
src/main/resources/HelpView.fxml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.web.WebView?>
|
||||
|
||||
|
||||
<WebView fx:id="webView" prefHeight="391.0" prefWidth="440.0" xmlns="http://javafx.com/javafx/23.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="name.nathanmcrae.numbersstation.HelpController" />
|
@ -66,7 +66,7 @@
|
||||
<Button layoutX="209.0" layoutY="1.0" mnemonicParsing="false" onAction="#handleSelectStationButtonPress" text="Select Station" />
|
||||
<Label layoutY="5.0" prefHeight="17.0" prefWidth="49.0" text="Station: " />
|
||||
<TextField fx:id="stationNameField" editable="false" layoutX="49.0" prefHeight="25.0" prefWidth="153.0" style="-fx-background-color: #EEEEEE; -fx-border-color: #AAAAAA;" text="My Station" />
|
||||
<Button layoutX="602.0" layoutY="1.0" mnemonicParsing="false" text="Help" AnchorPane.rightAnchor="0.0" />
|
||||
<Button layoutX="602.0" layoutY="1.0" mnemonicParsing="false" onAction="#handleHelpButtonPress" text="Help" AnchorPane.rightAnchor="0.0" />
|
||||
<Button layoutX="532.0" layoutY="1.0" mnemonicParsing="false" text="Settings" AnchorPane.rightAnchor="49.0" />
|
||||
</children>
|
||||
</AnchorPane>
|
||||
|
25
src/main/resources/help-index.html
Normal file
25
src/main/resources/help-index.html
Normal file
@ -0,0 +1,25 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Numbers Station Help</h1>
|
||||
|
||||
<p>
|
||||
The Numbers Station application is a tool to upload messages to a website/blog on a regular schedule. For why you would want this, see <a href="#motivation">Motivation</a>. To get started, see <a href="#quick-start">Quick Start</a>.
|
||||
</p>
|
||||
|
||||
<img src="overview.png"/>
|
||||
|
||||
<h2>Quick Start</h2>
|
||||
|
||||
<p>
|
||||
Do it!
|
||||
</p>
|
||||
|
||||
<h2>Motivation</h2>
|
||||
|
||||
<p>
|
||||
Because it's fun
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
BIN
src/main/resources/overview.png
Normal file
BIN
src/main/resources/overview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Reference in New Issue
Block a user