Skip to content
Snippets Groups Projects
Commit 070d8670 authored by Hugo Debuyser's avatar Hugo Debuyser Committed by Matias Mennecart
Browse files

Ajout du view-stage et logo des réglages

parent b798085a
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.*?>
<?import javafx.scene.chart.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.stage.*?>
<Stage fx:id="stage" xmlns="http://javafx.com/javafx/17.0.12" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.univlille.sae.classification.controller.MainStageController">
<scene>
<Scene>
<AnchorPane prefHeight="363.0" prefWidth="692.0">
<children>
<VBox prefHeight="363.0" prefWidth="691.0">
<children>
<HBox prefHeight="356.0" prefWidth="691.0">
<children>
<Region prefHeight="338.0" prefWidth="65.0" />
<ScatterChart prefHeight="342.0" prefWidth="609.0">
<xAxis>
<CategoryAxis fx:id="absAxeView" prefHeight="21.0" prefWidth="498.0" side="BOTTOM" />
</xAxis>
<yAxis>
<NumberAxis fx:id="ordAxeView" side="LEFT" />
</yAxis>
</ScatterChart>
<Button fx:id="settingsView" mnemonicParsing="false">
<graphic>
<ImageView fitHeight="100.0" fitWidth="30.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@gear.png" />
</image></ImageView>
</graphic>
<HBox.margin>
<Insets right="10.0" top="30.0" />
</HBox.margin></Button>
</children>
</HBox>
</children>
</VBox>
</children></AnchorPane>
</Scene>
</scene>
</Stage>
res/stages/gear.png

49.7 KiB

package fr.univlille.sae.classification.controller;
import javafx.fxml.FXML;
import javafx.scene.chart.CategoryAxis;
import javafx.scene.chart.NumberAxis;
import javafx.scene.control.Button;
import javafx.stage.Stage;
public class DataViewStage {
@FXML
Stage stage;
@FXML
CategoryAxis absAxe;
@FXML
NumberAxis ordAxe;
@FXML
Button settings;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment