Skip to content

Commit 3e1f14a

Browse files
author
mplieske
committed
add about.fxml and model for licence table view
1 parent cdbfeac commit 3e1f14a

File tree

2 files changed

+86
-0
lines changed

2 files changed

+86
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package de.doubleslash.keeptime.model;
2+
3+
public class LicenceTableColumn {
4+
private String licenceName;
5+
private String softwareName;
6+
7+
public LicenceTableColumn(String licenceName, String softwareName) {
8+
this.licenceName = licenceName;
9+
this.softwareName = softwareName;
10+
}
11+
12+
public String getLicenceName() {
13+
return licenceName;
14+
}
15+
16+
public void setLicenceName(String licenceName) {
17+
this.licenceName = licenceName;
18+
}
19+
20+
public String getSoftwareName() {
21+
return softwareName;
22+
}
23+
24+
public void setSoftwareName(String softwareName) {
25+
this.softwareName = softwareName;
26+
}
27+
}
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?import javafx.scene.control.Button?>
4+
<?import javafx.scene.control.Hyperlink?>
5+
<?import javafx.scene.control.Label?>
6+
<?import javafx.scene.control.TableColumn?>
7+
<?import javafx.scene.control.TableView?>
8+
<?import javafx.scene.layout.Pane?>
9+
<?import javafx.scene.shape.Line?>
10+
<?import javafx.scene.text.Font?>
11+
12+
13+
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="430.0" prefWidth="559.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1">
14+
<children>
15+
<Label layoutX="220.0" layoutY="50.0" text="KeepTime">
16+
<font>
17+
<Font name="Open Sans Regular" size="26.0" />
18+
</font>
19+
</Label>
20+
<Line endX="497.0" endY="111.0" fill="BLACK" smooth="false" startX="62.0" startY="111.0" strokeWidth="2.0" />
21+
<Label layoutX="62.0" layoutY="131.0" text="Version 1.0.0">
22+
<font>
23+
<Font name="Open Sans Regular" size="14.0" />
24+
</font>
25+
</Label>
26+
<Label layoutX="62.0" layoutY="169.0" text="Copyright (c) doubleSlash Net-Business GmbH">
27+
<font>
28+
<Font name="Open Sans Regular" size="14.0" />
29+
</font>
30+
</Label>
31+
<Label layoutX="62.0" layoutY="207.0" text="KeepTime is open source software, check out our github page">
32+
<font>
33+
<Font name="Open Sans Regular" size="14.0" />
34+
</font>
35+
</Label>
36+
<Hyperlink layoutX="57.0" layoutY="226.0" text="https://www.github.com/doubleSlashde/KeepTime">
37+
<font>
38+
<Font name="Open Sans Regular" size="14.0" />
39+
</font>
40+
</Hyperlink>
41+
<Line endX="221.0" endY="273.0" startX="62.0" startY="273.0" strokeWidth="2.0" />
42+
<Label layoutX="62.0" layoutY="293.0" text="third party software">
43+
<font>
44+
<Font name="Open Sans Regular" size="14.0" />
45+
</font>
46+
</Label>
47+
<Button layoutX="315.0" layoutY="337.0" mnemonicParsing="false" text="report a bug">
48+
<font>
49+
<Font name="Open Sans Regular" size="14.0" />
50+
</font>
51+
</Button>
52+
<TableView layoutX="62.0" layoutY="331.0" prefHeight="55.0" prefWidth="200.0">
53+
<columns>
54+
<TableColumn prefWidth="-1.0" text="name" />
55+
<TableColumn prefWidth="-1.0" text="licence" />
56+
</columns>
57+
</TableView>
58+
</children>
59+
</Pane>

0 commit comments

Comments
 (0)