-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ajdin Becirovic
committed
Apr 21, 2022
1 parent
03f30c5
commit 92cf8f5
Showing
18 changed files
with
263 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.*?> | ||
<?import javafx.scene.image.*?> | ||
<?import javafx.scene.layout.*?> | ||
<?import javafx.scene.text.*?> | ||
|
||
<AnchorPane stylesheets="@../css/styles.css" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1"> | ||
<AnchorPane stylesheets="@../css/styles.css" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.AboutController"> | ||
<children> | ||
<ImageView fx:id="imageView" fitHeight="500.0" fitWidth="500.0" pickOnBounds="true" preserveRatio="true"> | ||
<image> | ||
<Image url="@../img/aboutFront.png" /> | ||
</image> | ||
</ImageView> | ||
<AnchorPane fx:id="anchorPaneBack" opacity="0.0" prefHeight="500.0" prefWidth="500.0"> | ||
<children> | ||
<Label fx:id="creditsLabel" opacity="0.89" text="%credits" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="20.0"> | ||
<font> | ||
<Font size="48.0" /> | ||
</font> | ||
</Label> | ||
<HBox AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="100.0"> | ||
<children> | ||
<Label text="%icons-download" textFill="#ffbd59"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=": https://www.flaticon.com/" textFill="#ffbd59"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
</children> | ||
</HBox> | ||
<Label text="%icon-authors" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="130.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text="%run-button" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="160.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=" https://www.flaticon.com/authors/pixel-perfect" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="180.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text="%load-file-button" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="210.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=" https://www.flaticon.com/authors/iconixar" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="230.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text="%new-file-button" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="260.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=" https://www.flaticon.com/authors/smashicons" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="280.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text="%save-button" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="310.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=" https://www.freepik.com" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="330.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text="%language-circles" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="360.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Label text=" https://www.flaticon.com/packs/countrys-flags" textFill="#ffbd59" AnchorPane.leftAnchor="20.0" AnchorPane.topAnchor="380.0"> | ||
<font> | ||
<Font size="14.0" /> | ||
</font> | ||
</Label> | ||
<Hyperlink fx:id="backLink" alignment="CENTER" disable="true" onAction="#backAction" prefWidth="100.0" text="%back" textAlignment="CENTER" textFill="#ffbd59" AnchorPane.leftAnchor="300.0" AnchorPane.topAnchor="430.0"> | ||
<font> | ||
<Font size="16.0" /> | ||
</font> | ||
</Hyperlink> | ||
</children> | ||
</AnchorPane> | ||
<Hyperlink fx:id="creditsLink" alignment="CENTER" layoutX="217.0" layoutY="443.0" onAction="#showCreditsAction" prefWidth="100.0" text="%credits" textFill="WHITE" AnchorPane.leftAnchor="200.0" AnchorPane.topAnchor="430.0"> | ||
<font> | ||
<Font size="16.0" /> | ||
</font> | ||
</Hyperlink> | ||
</children> | ||
</AnchorPane> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.geometry.*?> | ||
<?import javafx.scene.control.*?> | ||
<?import javafx.scene.layout.*?> | ||
<?import javafx.scene.text.*?> | ||
|
||
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" spacing="5.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.HelpController"> | ||
<children> | ||
<Label text="MIC-1 Simulator"> | ||
<font> | ||
<Font size="18.0" /> | ||
</font> | ||
</Label> | ||
<Label prefWidth="590.0" text="%app-description" textAlignment="JUSTIFY" wrapText="true" /> | ||
<Separator layoutX="15.0" layoutY="209.0" prefWidth="200.0" /> | ||
<Label text="%how-to"> | ||
<font> | ||
<Font size="18.0" /> | ||
</font> | ||
</Label> | ||
<HBox spacing="5.0"> | ||
<children> | ||
<Hyperlink fx:id="appUseLink" onAction="#setTextAreaAction" text="%app-use" /> | ||
</children> | ||
</HBox> | ||
<Separator prefWidth="200.0" /> | ||
<Label layoutX="15.0" layoutY="15.0" text="%useful-tips"> | ||
<font> | ||
<Font size="18.0" /> | ||
</font> | ||
</Label> | ||
<HBox layoutX="15.0" layoutY="41.0" spacing="5.0"> | ||
<children> | ||
<Hyperlink fx:id="shortcutsLink" onAction="#setTextAreaAction" text="%key-shortcuts" /> | ||
</children> | ||
</HBox> | ||
<Separator layoutX="15.0" layoutY="41.0" prefWidth="200.0" /> | ||
<Label layoutX="15.0" layoutY="231.0" text="%credits"> | ||
<font> | ||
<Font size="18.0" /> | ||
</font> | ||
</Label> | ||
<HBox layoutX="15.0" layoutY="196.0" spacing="5.0"> | ||
<children> | ||
<Hyperlink fx:id="iconsLink" onAction="#setTextAreaAction" text="%icons" /> | ||
</children> | ||
</HBox> | ||
<Separator prefWidth="200.0" /> | ||
<Label layoutX="15.0" layoutY="86.0" text="%get-involved"> | ||
<font> | ||
<Font size="18.0" /> | ||
</font> | ||
</Label> | ||
<HBox layoutX="15.0" layoutY="104.0" spacing="5.0"> | ||
<children> | ||
<Hyperlink fx:id="reportBugsLink" onAction="#setTextAreaAction" text="%report-bugs" /> | ||
<Hyperlink fx:id="helpDevelopLink" layoutX="10.0" layoutY="10.0" onAction="#setTextAreaAction" text="%help-development" /> | ||
</children> | ||
</HBox> | ||
<Separator layoutX="15.0" layoutY="133.0" prefWidth="200.0" /> | ||
<TextArea fx:id="textArea" editable="false" prefHeight="233.0" prefWidth="590.0" wrapText="true"> | ||
<font> | ||
<Font size="15.0" /> | ||
</font></TextArea> | ||
<ButtonBar prefHeight="40.0" prefWidth="200.0"> | ||
<buttons> | ||
<Button mnemonicParsing="false" onAction="#closeAction" text="Close" /> | ||
</buttons> | ||
</ButtonBar> | ||
</children> | ||
<padding> | ||
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> | ||
</padding> | ||
</VBox> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.