Skip to content
Snippets Groups Projects
Select Git revision
  • 0b542c64bf8adb696d318a76f64e79d7ac9fbf48
  • master default
  • reactoringPatternList
  • feature/update-queries
  • feature/new-query-structure
  • java7
  • working
  • daniels-working-branch
  • feature/T47-gui-wizard
  • resizable-window-via-listeners
  • feature/5-initialGui
  • feature/T47-gui-wizard-2
12 results

MainScreen.fxml

Blame
  • MainScreen.fxml 3.02 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import javafx.scene.text.*?>
    <?import javafx.scene.effect.*?>
    <?import javafx.scene.control.*?>
    <?import java.lang.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.layout.AnchorPane?>
    
    <AnchorPane prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ui.MainScreenController">
       <children>
          <SplitPane dividerPositions="0.2809364548494983" orientation="VERTICAL" prefHeight="683.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
            <items>
              <AnchorPane maxHeight="165.0" maxWidth="798.0" minHeight="0.0" minWidth="0.0" prefHeight="165.0" prefWidth="798.0" SplitPane.resizableWithParent="false">
                   <children>
                      <ProgressBar fx:id="progressBar" layoutX="133.0" layoutY="24.0" mouseTransparent="true" prefHeight="48.0" prefWidth="559.0" progress="0.0" />
                      <Button layoutX="25.0" layoutY="24.0" mnemonicParsing="false" onAction="#handleAbortAction" prefHeight="48.0" prefWidth="94.0" text="Abbrechen" />
                      <Button layoutX="702.0" layoutY="24.0" mnemonicParsing="false" onAction="#handleStartAction" prefHeight="48.0" prefWidth="76.0" text="Start" />
                      <TextField fx:id="loadJavaAppTextField" layoutX="250.0" layoutY="94.0" />
                      <Button layoutX="413.0" layoutY="94.0" mnemonicParsing="false" onAction="#handleLoadJavaAppButtonAction" text="Load Java App" />
                   </children>
                </AnchorPane>
              <AnchorPane minHeight="0.0" minWidth="0.0">
                   <children>
                      <SplitPane dividerPositions="0.5" layoutX="0.0" prefHeight="427.0" prefWidth="800.0">
                        <items>
                          <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0">
                               <children>
                                  <Button layoutX="125.0" layoutY="20.0" mnemonicParsing="false" onAction="#handleUseCurrentCodeAction" text="Use current code" />
                                  <TextArea fx:id="currentCodeField" editable="false" layoutX="25.0" layoutY="65.0" prefHeight="320.0" prefWidth="340.0" />
                               </children>
                            </AnchorPane>
                          <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0">
                               <children>
                                  <Button layoutX="125.0" layoutY="20.0" mnemonicParsing="false" onAction="#handleUseParallelCodeAction" prefWidth="150.0" text="Use optimized code" />
                                  <TextArea fx:id="parallelCodeField" editable="false" layoutX="25.0" layoutY="65.0" prefHeight="320.0" prefWidth="340.0" />
                               </children>
                            </AnchorPane>
                        </items>
                      </SplitPane>
                   </children></AnchorPane>
            </items>
          </SplitPane>
       </children>
    </AnchorPane>