|
16 | 16 | You should have received a copy of the GNU General Public License |
17 | 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. --> |
18 | 18 |
|
| 19 | +<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView?> |
19 | 20 | <?import javafx.geometry.Insets?> |
20 | 21 | <?import javafx.scene.Group?> |
21 | 22 | <?import javafx.scene.canvas.Canvas?> |
|
24 | 25 | <?import javafx.scene.control.ListView?> |
25 | 26 | <?import javafx.scene.control.TextArea?> |
26 | 27 | <?import javafx.scene.control.TextField?> |
27 | | -<?import javafx.scene.image.Image?> |
28 | | -<?import javafx.scene.image.ImageView?> |
29 | 28 | <?import javafx.scene.layout.BorderPane?> |
30 | 29 | <?import javafx.scene.layout.HBox?> |
31 | 30 | <?import javafx.scene.layout.Pane?> |
32 | 31 | <?import javafx.scene.layout.VBox?> |
33 | 32 | <?import javafx.scene.text.Font?> |
34 | 33 |
|
35 | | -<Pane fx:id="pane" prefHeight="175.0" style="-fx-background-color: rgba(54,143,179,0.01); -fx-background-radius: 10 10 10 10; -fx-border-radius: 10 10 10 10; -fx-border-color: rgba(54,143,179,.0.01);" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.doubleslash.keeptime.view.ViewController"> |
| 34 | +<Pane fx:id="pane" prefHeight="175.0" style="-fx-background-color: rgba(54,143,179,0.01); -fx-background-radius: 10 10 10 10; -fx-border-radius: 10 10 10 10; -fx-border-color: rgba(54,143,179,.0.01);" xmlns="http://javafx.com/javafx/8.0.202-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.doubleslash.keeptime.view.ViewController"> |
36 | 35 | <children> |
37 | 36 | <BorderPane fx:id="borderPane" layoutX="5.0" layoutY="-15.0"> |
38 | 37 | <center> |
|
54 | 53 | <children> |
55 | 54 | <Button fx:id="calendarButton" mnemonicParsing="false" prefHeight="11.0" prefWidth="21.0" stylesheets="@../css/application.css"> |
56 | 55 | <graphic> |
57 | | - <ImageView fitHeight="20.0" fitWidth="20.0" pickOnBounds="true" preserveRatio="true"> |
58 | | - <image> |
59 | | - <Image url="@../icons/icon_calendar.png" /> |
60 | | - </image> |
61 | | - </ImageView> |
| 56 | + <FontAwesomeIconView glyphName="CALENDAR" glyphStyle="fas" size="20" /> |
62 | 57 | </graphic> |
63 | 58 | </Button> |
64 | 59 | <Button fx:id="settingsButton" mnemonicParsing="false" prefHeight="25.0" prefWidth="22.0" stylesheets="@../css/application.css"> |
65 | 60 | <graphic> |
66 | | - <ImageView fitHeight="24.0" fitWidth="22.0" pickOnBounds="true" preserveRatio="true"> |
67 | | - <image> |
68 | | - <Image url="@../icons/icon_gear.png" /> |
69 | | - </image> |
70 | | - </ImageView> |
| 61 | + <FontAwesomeIconView glyphName="COG" glyphStyle="fas" size="20" /> |
71 | 62 | </graphic> |
72 | 63 | </Button> |
73 | 64 | </children> |
|
0 commit comments