1 /*
   2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation. Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package javafx.scene.control.test.choicebox;
  26 
  27 import javafx.event.ActionEvent;
  28 import javafx.event.EventHandler;
  29 import javafx.scene.Scene;
  30 import javafx.scene.control.*;
  31 import javafx.scene.control.test.utils.CommonPropertiesScene;
  32 import javafx.scene.control.test.utils.ptables.PropertiesTable;
  33 import javafx.scene.control.test.utils.ptables.PropertyTablesFactory;
  34 import javafx.scene.control.test.utils.ptables.SpecialTablePropertiesProvider;
  35 import javafx.scene.layout.HBox;
  36 import javafx.scene.layout.Pane;
  37 import javafx.scene.layout.VBox;
  38 import test.javaclient.shared.InteroperabilityApp;
  39 import test.javaclient.shared.Utils;
  40 
  41 /**
  42  * @author Alexander Kirov
  43  */
  44 public class NewChoiceBoxApp extends InteroperabilityApp {
  45 
  46     public final static String TESTED_CHOICEBOX_ID = "TESTED_CHOICEBOX_ID";
  47     public final static String RESET_BUTTON_ID = "RESET_CHOICEBOX_BUTTON_ID";
  48 
  49     public static void main(String[] args) {
  50         Utils.launch(NewChoiceBoxApp.class, args);
  51     }
  52 
  53     @Override
  54     protected Scene getScene() {
  55         Utils.setTitleToStage(stage, "ChoiceBoxTestApp");
  56         return new NewChoiceBoxApp.ChoiceBoxScene();
  57     }
  58 
  59     class ChoiceBoxScene extends CommonPropertiesScene {
  60 
  61         //VBox which contains tested ChoiceBox.
  62         Pane pane;
  63         PropertiesTable tb;
  64         //ChoiceBox to be tested.
  65         ChoiceBox testedChoiceBox;
  66 
  67         public ChoiceBoxScene() {
  68             super("ChoiceBox", 800, 600);
  69 
  70             prepareScene();
  71         }
  72 
  73         @Override
  74         final protected void prepareScene() {
  75             pane = new Pane();
  76             testedChoiceBox = new ChoiceBox();
  77             testedChoiceBox.setId(TESTED_CHOICEBOX_ID);
  78 
  79             tb = new PropertiesTable(testedChoiceBox);
  80             PropertyTablesFactory.explorePropertiesList(testedChoiceBox, tb);
  81             SpecialTablePropertiesProvider.provideForControl(testedChoiceBox, tb);
  82 
  83             pane.setMinSize(220, 220);
  84             pane.setPrefSize(220, 220);
  85             pane.setStyle("-fx-border-color : red;");
  86             pane.getChildren().add(testedChoiceBox);
  87 
  88             Button resetButton = ButtonBuilder.create().id(RESET_BUTTON_ID).text("Reset").build();
  89             resetButton.setOnAction(new EventHandler<ActionEvent>() {
  90                 public void handle(ActionEvent t) {
  91                     HBox hb = (HBox) getRoot();
  92                     hb.getChildren().clear();
  93                     prepareScene();
  94                 }
  95             });
  96 
  97             setTestedControl(testedChoiceBox);
  98             setPropertiesContent(tb);
  99 
 100             VBox vb = new VBox();
 101             vb.setSpacing(5);
 102             vb.getChildren().addAll(resetButton);
 103             setControllersContent(vb);
 104         }
 105     }
 106 }