All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dpfmanager.shell.interfaces.gui.component.config.ConfigView Maven / Gradle / Ivy

/**
 * 

ConfigView.java

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; or, * at your choice, under the terms of the Mozilla Public License, v. 2.0. SPDX GPL-3.0+ or MPL-2.0+. *

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 and the Mozilla Public License for more details.

*

You should have received a copy of the GNU General Public License and the Mozilla Public * License along with this program. If not, see http://www.gnu.org/licenses/ * and at http://mozilla.org/MPL/2.0 .

NB: for the * © statement, include Easy Innova SL or other company/Person contributing the code.

© * 2015 Easy Innova, SL

* * @author Adria Llorens * @version 1.0 * @since 23/7/2015 */ package dpfmanager.shell.interfaces.gui.component.config; import dpfmanager.shell.core.DPFManagerProperties; import dpfmanager.shell.core.config.BasicConfig; import dpfmanager.shell.core.messages.ConfigMessage; import dpfmanager.shell.core.messages.DpfMessage; import dpfmanager.shell.core.messages.UiMessage; import dpfmanager.shell.core.util.NodeUtil; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard1Fragment; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard2Fragment; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard4Fragment; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard5Fragment; import dpfmanager.shell.core.config.GuiConfig; import dpfmanager.shell.core.mvc.DpfView; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard3Fragment; import dpfmanager.shell.interfaces.gui.fragment.wizard.Wizard6Fragment; import dpfmanager.shell.modules.messages.messages.LogMessage; import javafx.fxml.FXML; import javafx.scene.Node; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextField; import javafx.scene.image.Image; import javafx.scene.image.ImageView; import javafx.scene.layout.GridPane; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import org.apache.logging.log4j.Level; import org.jacpfx.api.annotations.Resource; import org.jacpfx.api.annotations.component.DeclarativeView; import org.jacpfx.api.annotations.lifecycle.PostConstruct; import org.jacpfx.rcp.componentLayout.FXComponentLayout; import org.jacpfx.rcp.context.Context; import java.io.File; import java.util.Arrays; import java.util.List; import java.util.ResourceBundle; /** * Created by Adria Llorens on 07/03/2016. */ @DeclarativeView(id = GuiConfig.COMPONENT_CONFIG, name = GuiConfig.COMPONENT_CONFIG, viewLocation = "/fxml/config.fxml", active = true, resourceBundleLocation = "bundles.language", initialTargetLayoutId = GuiConfig.TARGET_CONTAINER_CONFIG) public class ConfigView extends DpfView { @Resource private Context context; @Resource private ResourceBundle bundle; @FXML private GridPane gridSave; @FXML private HBox hboxName; @FXML private HBox hboxDescription; @FXML private Button continueButton; @FXML private Button backButton; @FXML private TextField saveNameInput; @FXML private TextField saveDescInput; @FXML private ImageView configArrow; @FXML private ImageView stepImage; @FXML private Label stepTitle; @FXML private VBox wizard; @FXML private Label labelW1; @FXML private Button step1, step2, step3, step4, step5; private List includedNodes; private List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy