在JavaFX中创建向导 [英] Create wizard in JavaFX

查看:172
本文介绍了在JavaFX中创建向导的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有任何示例如何在JavaFX中创建向导?



例如设置程序或进行配置。这可以用简单的代码完成,还是我需要创建自定义组件?

解决方案

这是和警报可以在上面的代码中使用,而不是当前代码使用的简单的内置对话框系统。

  • 当前代码使用内嵌样式用于控件而不是外部样式表 - 这使得代码可以作为单个文件执行,但对于生产代码,建议使用外部样式表。

  • ControlsFX向导



    第三方ControlsFX 库中的向导实现实现了上面详述的一些建议的增强功能,因此,对于许多人来说,生产质量应用程序的解决方案比本答案中概述的简单示例更好。


    Is there any example how to create wizard in JavaFX?

    For example to setup a program or for configuration. Can this be done with simple code or I need to create custom component?

    解决方案

    Here is code for a sample wizard in JavaFX.

    This code was a JavaFX 2.x conversion of a SWT based solution for java2s.

    You could modify this code to use ControlsFX dialogs to get a more professional look to the wizard.

    import javafx.application.Application;
    import javafx.beans.property.*;
    import javafx.beans.value.*;
    import javafx.collections.*;
    import javafx.scene.*;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    
    import java.util.Stack;
    
    /**
     * This class displays a survey using a wizard
     */
    public class Survey extends Application {
        public static void main(String[] args) throws Exception {
            launch(args);
        }
    
        @Override
        public void start(Stage stage) throws Exception {
            // configure and display the scene and stage.
            stage.setScene(new Scene(new SurveyWizard(stage), 400, 250));
            stage.show();
        }
    }
    
    /**
     * basic wizard infrastructure class
     */
    class Wizard extends StackPane {
        private static final int UNDEFINED = -1;
        private ObservableList<WizardPage> pages = FXCollections.observableArrayList();
        private Stack<Integer> history = new Stack<>();
        private int curPageIdx = UNDEFINED;
    
        Wizard(WizardPage... nodes) {
            pages.addAll(nodes);
            navTo(0);
            setStyle("-fx-padding: 10; -fx-background-color: cornsilk;");
        }
    
        void nextPage() {
            if (hasNextPage()) {
                navTo(curPageIdx + 1);
            }
        }
    
        void priorPage() {
            if (hasPriorPage()) {
                navTo(history.pop(), false);
            }
        }
    
        boolean hasNextPage() {
            return (curPageIdx < pages.size() - 1);
        }
    
        boolean hasPriorPage() {
            return !history.isEmpty();
        }
    
        void navTo(int nextPageIdx, boolean pushHistory) {
            if (nextPageIdx < 0 || nextPageIdx >= pages.size()) return;
            if (curPageIdx != UNDEFINED) {
                if (pushHistory) {
                    history.push(curPageIdx);
                }
            }
    
            WizardPage nextPage = pages.get(nextPageIdx);
            curPageIdx = nextPageIdx;
            getChildren().clear();
            getChildren().add(nextPage);
            nextPage.manageButtons();
        }
    
        void navTo(int nextPageIdx) {
            navTo(nextPageIdx, true);
        }
    
        void navTo(String id) {
            if (id == null) {
                return;
            }
    
            pages.stream()
                    .filter(page -> id.equals(page.getId()))
                    .findFirst()
                    .ifPresent(page ->
                                    navTo(pages.indexOf(page))
                    );
        }
    
        public void finish() {
        }
    
        public void cancel() {
        }
    }
    
    /**
     * basic wizard page class
     */
    abstract class WizardPage extends VBox {
        Button priorButton = new Button("_Previous");
        Button nextButton = new Button("N_ext");
        Button cancelButton = new Button("Cancel");
        Button finishButton = new Button("_Finish");
    
        WizardPage(String title) {
            Label label = new Label(title);
            label.setStyle("-fx-font-weight: bold; -fx-padding: 0 0 5 0;");
            setId(title);
            setSpacing(5);
            setStyle("-fx-padding:10; -fx-background-color: honeydew; -fx-border-color: derive(honeydew, -30%); -fx-border-width: 3;");
    
            Region spring = new Region();
            VBox.setVgrow(spring, Priority.ALWAYS);
            getChildren().addAll(getContent(), spring, getButtons());
    
            priorButton.setOnAction(event -> priorPage());
            nextButton.setOnAction(event -> nextPage());
            cancelButton.setOnAction(event -> getWizard().cancel());
            finishButton.setOnAction(event -> getWizard().finish());
        }
    
        HBox getButtons() {
            Region spring = new Region();
            HBox.setHgrow(spring, Priority.ALWAYS);
            HBox buttonBar = new HBox(5);
            cancelButton.setCancelButton(true);
            finishButton.setDefaultButton(true);
            buttonBar.getChildren().addAll(spring, priorButton, nextButton, cancelButton, finishButton);
            return buttonBar;
        }
    
        abstract Parent getContent();
    
        boolean hasNextPage() {
            return getWizard().hasNextPage();
        }
    
        boolean hasPriorPage() {
            return getWizard().hasPriorPage();
        }
    
        void nextPage() {
            getWizard().nextPage();
        }
    
        void priorPage() {
            getWizard().priorPage();
        }
    
        void navTo(String id) {
            getWizard().navTo(id);
        }
    
        Wizard getWizard() {
            return (Wizard) getParent();
        }
    
        public void manageButtons() {
            if (!hasPriorPage()) {
                priorButton.setDisable(true);
            }
    
            if (!hasNextPage()) {
                nextButton.setDisable(true);
            }
        }
    }
    
    /**
     * This class shows a satisfaction survey
     */
    class SurveyWizard extends Wizard {
        Stage owner;
    
        public SurveyWizard(Stage owner) {
            super(new ComplaintsPage(), new MoreInformationPage(), new ThanksPage());
            this.owner = owner;
        }
    
        public void finish() {
            System.out.println("Had complaint? " + SurveyData.instance.hasComplaints.get());
            if (SurveyData.instance.hasComplaints.get()) {
                System.out.println("Complaints: " + 
                        (SurveyData.instance.complaints.get().isEmpty() 
                                ? "No Details" 
                                : "\n" + SurveyData.instance.complaints.get())
                );
            }
            owner.close();
        }
    
        public void cancel() {
            System.out.println("Cancelled");
            owner.close();
        }
    }
    
    /**
     * Simple placeholder class for the customer entered survey response.
     */
    class SurveyData {
        BooleanProperty hasComplaints = new SimpleBooleanProperty();
        StringProperty complaints = new SimpleStringProperty();
        static SurveyData instance = new SurveyData();
    }
    
    /**
     * This class determines if the user has complaints.
     * If not, it jumps to the last page of the wizard.
     */
    class ComplaintsPage extends WizardPage {
        private RadioButton yes;
        private RadioButton no;
        private ToggleGroup options = new ToggleGroup();
    
        public ComplaintsPage() {
            super("Complaints");
    
            nextButton.setDisable(true);
            finishButton.setDisable(true);
            yes.setToggleGroup(options);
            no.setToggleGroup(options);
            options.selectedToggleProperty().addListener(new ChangeListener<Toggle>() {
                @Override
                public void changed(ObservableValue<? extends Toggle> observableValue, Toggle oldToggle, Toggle newToggle) {
                    nextButton.setDisable(false);
                    finishButton.setDisable(false);
                }
            });
        }
    
        Parent getContent() {
            yes = new RadioButton("Yes");
            no = new RadioButton("No");
            SurveyData.instance.hasComplaints.bind(yes.selectedProperty());
            return new VBox(
                    5,
                    new Label("Do you have complaints?"), yes, no
            );
        }
    
        void nextPage() {
            // If they have complaints, go to the normal next page
            if (options.getSelectedToggle().equals(yes)) {
                super.nextPage();
            } else {
                // No complaints? Short-circuit the rest of the pages
                navTo("Thanks");
            }
        }
    }
    
    /**
     * This page gathers more information about the complaint
     */
    class MoreInformationPage extends WizardPage {
        public MoreInformationPage() {
            super("More Info");
        }
    
        Parent getContent() {
            TextArea textArea = new TextArea();
            textArea.setWrapText(true);
            textArea.setPromptText("Tell me what's wrong Dave...");
            nextButton.setDisable(true);
            textArea.textProperty().addListener((observableValue, oldValue, newValue) -> {
                nextButton.setDisable(newValue.isEmpty());
            });
            SurveyData.instance.complaints.bind(textArea.textProperty());
            return new VBox(
                    5,
                    new Label("Please enter your complaints."),
                    textArea
            );
        }
    }
    
    /**
     * This page thanks the user for taking the survey
     */
    class ThanksPage extends WizardPage {
        public ThanksPage() {
            super("Thanks");
        }
    
        Parent getContent() {
            StackPane stack = new StackPane(
                    new Label("Thanks!")
            );
            VBox.setVgrow(stack, Priority.ALWAYS);
            return stack;
        }
    }
    

    Update

    This code was updated to use some JavaFX 8 features.

    Suggestions for further enhancements

    1. There are further facilities in JavaFX 8u40 around dialogs and alerts which could be used in the above code rather than the simple in-built dialog system the current code is using.
    2. The current code uses in-line styles for controls rather than external stylesheets - this makes the code executable as a single file, but for production code it is advisable to use external style sheets.

    ControlsFX Wizard

    The Wizard implementation in the 3rd party ControlsFX library implements some of the suggested enhancements detailed above, so, for many people will be a better solution for a production quality application than the simple example outlined in this answer.

    这篇关于在JavaFX中创建向导的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆