/* * ScreenFX - A plugin library for JavaFX 8 adding features for resizing * and arranging stage windows on a multiple screen hardware configuration * * Copyright (C) 21014 Mario Voigt * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/gpl-3.0.html */ package examples; import java.net.URL; import java.util.ResourceBundle; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.control.ToggleButton; import javafx.scene.layout.AnchorPane; /** * @author vmario * */ public class ScreenFXDemo { @FXML private ResourceBundle resources; @FXML private URL location; @FXML private AnchorPane anchorPaneRoot; @FXML private Button buttonShowScreenFX; @FXML private ToggleButton toggleButtonScreenFX; ToggleButton getToggleButtonScreenFX() { return toggleButtonScreenFX; } Button getButtonShowScreenFX() { return buttonShowScreenFX; } }