Skip to content

Commit

Permalink
Removed all warning messages printed to console
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus-raitava committed Aug 19, 2018
1 parent 7f178a8 commit 8221606
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 11 deletions.
5 changes: 1 addition & 4 deletions res/main/Visualisation.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@
}



/* SIDEBAR STYLING */

.sidebar {
-fx-background-color: -sidebar-color;
}



/* CHART STYLING */

.chart-legend {
Expand Down Expand Up @@ -91,8 +89,6 @@
-fx-text-fill: white;
}



/* SPLIT PANE STYLING */

.split-pane:vertical > .split-pane-divider {
Expand Down Expand Up @@ -150,6 +146,7 @@
.text-area {
-fx-background-radius: 0, 0, 0, 0;
-fx-text-box-border: 0;
-fx-background-color: -sidebar-color;
}

.text-area .content{
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/DashboardPage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>

<AnchorPane maxWidth="300.0" minWidth="300.0" styleClass="sidebar" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.DashboardPageController">
<AnchorPane maxWidth="300.0" minWidth="300.0" styleClass="sidebar" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.DashboardPageController">
<children>
<VBox spacing="10.0" AnchorPane.bottomAnchor="25.0" AnchorPane.leftAnchor="25.0" AnchorPane.rightAnchor="25.0" AnchorPane.topAnchor="20.0">
<children>
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/DialogBox.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>

<VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="150.0" prefWidth="300.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
<VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="150.0" prefWidth="300.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml">
<children>
<Region VBox.vgrow="ALWAYS" />
<Label fx:id="introText" alignment="CENTER" maxWidth="1.7976931348623157E308" minHeight="-Infinity" text="'2p_InTree_B complete!'" textAlignment="CENTER" wrapText="true" />
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/HistogramPage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane maxHeight="490.0" maxWidth="700.0" minHeight="400.0" minWidth="600.0" prefHeight="500.0" prefWidth="650.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.HistogramPageController">
<AnchorPane maxHeight="490.0" maxWidth="700.0" minHeight="400.0" minWidth="600.0" prefHeight="500.0" prefWidth="650.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.HistogramPageController">
<children>
<Label fx:id="scheduleTitle" styleClass="page-title" text="Schedule Distribution" AnchorPane.leftAnchor="40.0" AnchorPane.topAnchor="30.0" />
<BarChart fx:id="chart" alternativeColumnFillVisible="true" alternativeRowFillVisible="false" animated="false" barGap="0.0" categoryGap="0.0" horizontalZeroLineVisible="false" layoutX="19.0" layoutY="73.0" legendVisible="false" maxHeight="380.0" maxWidth="610.0" minHeight="320.0" minWidth="610.0" prefHeight="380.0" prefWidth="610.0" style="-fx-background-color: white;" verticalGridLinesVisible="false" verticalZeroLineVisible="false" AnchorPane.leftAnchor="19.0" AnchorPane.topAnchor="75.0">
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>

<VBox maxHeight="600.0" maxWidth="960.0" minHeight="600.0" minWidth="960.0" prefHeight="600.0" prefWidth="960.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.MainController">
<VBox maxHeight="600.0" maxWidth="960.0" minHeight="600.0" minWidth="960.0" prefHeight="600.0" prefWidth="960.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.MainController">
<children>
<SplitPane dividerPositions="0.9" orientation="VERTICAL" VBox.vgrow="ALWAYS">
<items>
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/SearchSpacePage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.text.Font?>

<AnchorPane stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.SearchSpacePageController">
<AnchorPane stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.SearchSpacePageController">
<children>
<BorderPane prefHeight="500.0" prefWidth="660.0">
<top>
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/StatusTitlePage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>

<AnchorPane stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.StatusTitleController">
<AnchorPane stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.StatusTitleController">
<children>
<HBox alignment="CENTER_RIGHT" AnchorPane.rightAnchor="10.0">
<children>
Expand Down
2 changes: 1 addition & 1 deletion res/main/fxml/TaskSchedulePage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.shape.Rectangle?>

<AnchorPane maxHeight="400.0" maxWidth="660.0" minHeight="400.0" minWidth="660.0" prefHeight="400.0" prefWidth="660.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.TaskSchedulePageController">
<AnchorPane maxHeight="400.0" maxWidth="660.0" minHeight="400.0" minWidth="660.0" prefHeight="400.0" prefWidth="660.0" stylesheets="@../Visualisation.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml" fx:controller="se306group8.scheduleoptimizer.visualisation.controller.TaskSchedulePageController">
<children>
<BorderPane AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<left>
Expand Down

0 comments on commit 8221606

Please sign in to comment.