Browse Source

Minor changes

Removed unnecessary files
master
Sogomn 9 years ago
parent
commit
816f71a58a
  1. 8
      Ratty/res/language/language_de.properties
  2. 8
      Ratty/res/language/language_en.properties
  3. 35
      Ratty/res/main_gui.css
  4. 34
      Ratty/res/main_gui.fxml

8
Ratty/res/language/language_de.properties

@ -1,8 +0,0 @@
column.name=Name
column.address=Addresse
column.os=OS
column.version=Version
column.desktop=Desktopstream
column.voice=Mikrofonstream
button.build=Clientbuilder
table.empty=Keine Clients :(

8
Ratty/res/language/language_en.properties

@ -1,8 +0,0 @@
column.name=Name
column.address=Address
column.os=OS
column.version=Version
column.desktop=Streaming desktop
column.voice=Streaming voice
button.build=Client builder
table.empty=No clients :(

35
Ratty/res/main_gui.css

@ -1,35 +0,0 @@
* {
-fx-base: #aaaaaa;
-fx-background-insets: 0px;
-fx-font-family: "Calibri";
}
.table-view .column-header {
-fx-font-size: 10pt;
}
.table-view .column-header:hover {
-fx-effect: innershadow(gaussian, #ffffff, 5, 0, 0, 0);
}
.table-view .column-header:pressed {
-fx-effect: innershadow(gaussian, #000000, 5, 0, 0, 0);
}
.table-view .placeholder .label {
-fx-font-size: 15pt;
-fx-text-fill: #fcfcfc;
-fx-effect: dropshadow(gaussian, #000000, 3, 0.5, 0, 0);
}
.button {
-fx-background-radius: 0px;
}
.button:hover {
-fx-effect: innershadow(gaussian, #ffffff, 5, 0, 0, 0);
}
.button:pressed {
-fx-effect: innershadow(gaussian, #000000, 3, 0, 0, 0);
}

34
Ratty/res/main_gui.fxml

@ -1,34 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.effect.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<BorderPane fx:id="pane" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.sogomn.rat.server.gui.RattyGuiFx" prefWidth="950" prefHeight="500">
<bottom>
<HBox fx:id="bottom" BorderPane.alignment="CENTER">
<children>
<Button fx:id="builder" mnemonicParsing="false" text="%button.build" />
</children>
</HBox>
</bottom>
<center>
<TableView fx:id="table" editable="true" BorderPane.alignment="CENTER">
<columns>
<TableColumn fx:id="name" editable="false" prefWidth="75.0" text="%column.name" />
<TableColumn fx:id="address" editable="false" prefWidth="75.0" text="%column.address" />
<TableColumn fx:id="os" editable="false" prefWidth="75.0" text="%column.os" />
<TableColumn fx:id="version" editable="false" prefWidth="75.0" text="%column.version" />
<TableColumn fx:id="desktop" editable="false" prefWidth="75.0" text="%column.desktop" />
<TableColumn fx:id="voice" editable="false" prefWidth="75.0" text="%column.voice" />
</columns>
<placeholder>
<Label text="%table.empty" />
</placeholder>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
</columnResizePolicy>
</TableView>
</center>
</BorderPane>
Loading…
Cancel
Save