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.separator;
  26 
  27 import javafx.event.ActionEvent;
  28 import javafx.event.EventHandler;
  29 import javafx.geometry.Insets;
  30 import javafx.scene.Scene;
  31 import javafx.scene.control.*;
  32 import javafx.scene.control.test.utils.CommonPropertiesScene;
  33 import javafx.scene.control.test.utils.ptables.PropertiesTable;
  34 import javafx.scene.control.test.utils.ptables.PropertyTablesFactory;
  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 SeparatorApp extends InteroperabilityApp {
  45 
  46     public final static String TESTED_SEPARATOR_ID = "TESTED_SEPARATOR_ID";
  47     public final static String RESET_BUTTON_ID = "RESET_SEPARATOR_BUTTON_ID";
  48 
  49     public static void main(String[] args) {
  50         Utils.launch(SeparatorApp.class, args);
  51     }
  52 
  53     @Override
  54     protected Scene getScene() {
  55         Utils.setTitleToStage(stage, "SeparatorTestApp");
  56         return new SeparatorApp.SeparatorScene();
  57     }
  58 
  59     class SeparatorScene extends CommonPropertiesScene {
  60 
  61         //VBox which contains tested separator.
  62         Pane pane;
  63         PropertiesTable tb;
  64         //Separator to be tested.
  65         Separator testedSeparator;
  66 
  67         public SeparatorScene() {
  68             super("Separator", 800, 600);
  69 
  70             prepareScene();
  71         }
  72 
  73         @Override
  74         final protected void prepareScene() {
  75             pane = new Pane();
  76             testedSeparator = new Separator();
  77             testedSeparator.setId(TESTED_SEPARATOR_ID);
  78 
  79             tb = new PropertiesTable(testedSeparator);
  80             PropertyTablesFactory.explorePropertiesList(testedSeparator, tb);
  81 
  82             pane.setMinSize(220, 220);
  83             pane.setPrefSize(220, 220);
  84             pane.setStyle("-fx-border-color : red;");
  85             pane.getChildren().add(testedSeparator);
  86 
  87             VBox vb = new VBox();
  88             vb.setSpacing(5);
  89 
  90             HBox hb = (HBox) getRoot();
  91             hb.setPadding(new Insets(5, 5, 5, 5));
  92             hb.setStyle("-fx-border-color : green;");
  93 
  94             Button resetButton = new Button("Reset");
  95             resetButton.setId(RESET_BUTTON_ID);
  96             resetButton.setOnAction(new EventHandler<ActionEvent>() {
  97                 public void handle(ActionEvent t) {
  98                     HBox hb = (HBox) getRoot();
  99                     hb.getChildren().clear();
 100                     prepareScene();
 101                 }
 102             });
 103             setTestedControl(testedSeparator);
 104             setControllersContent(resetButton);
 105             setPropertiesContent(tb);
 106         }
 107     }
 108 }