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.slider;
  26 
  27 import javafx.event.ActionEvent;
  28 import javafx.event.EventHandler;
  29 import javafx.scene.Scene;
  30 import javafx.scene.control.Button;
  31 import javafx.scene.control.ButtonBuilder;
  32 import javafx.scene.control.Slider;
  33 import javafx.scene.control.SliderBuilder;
  34 import javafx.scene.control.test.utils.CommonPropertiesScene;
  35 import javafx.scene.control.test.utils.ptables.PropertiesTable;
  36 import javafx.scene.control.test.utils.ptables.PropertyTablesFactory;
  37 import javafx.scene.control.test.utils.ptables.SpecialTablePropertiesProvider;
  38 import javafx.scene.control.test.utils.ptables.StaticLogger;
  39 import javafx.scene.layout.HBox;
  40 import javafx.scene.layout.VBox;
  41 import javafx.util.StringConverter;
  42 import test.javaclient.shared.InteroperabilityApp;
  43 import test.javaclient.shared.Utils;
  44 
  45 /**
  46  * @author Alexander Kirov
  47  */
  48 public class SliderNewApp extends InteroperabilityApp {
  49 
  50     public final static String TESTED_SLIDER_ID = "TESTED_SLIDER_ID";
  51     public final static String RESET_BUTTON_ID = "RESET_SLIDER_BUTTON_ID";
  52     public final static String VALUE_CHANGING_COUNTER = "VALUE_CHANGING_COUNTER";
  53     public final static String APPLY_CUSTOM_LABEL_FORMATTER = "APPLY_CUSTOM_LABEL_FORMATTER";
  54 
  55     public static void main(String[] args) {
  56         Utils.launch(SliderNewApp.class, args);
  57     }
  58 
  59     @Override
  60     protected Scene getScene() {
  61         Utils.setTitleToStage(stage, "SliderTestApp");
  62         return new SliderScene();
  63     }
  64 
  65     class SliderScene extends CommonPropertiesScene {
  66 
  67         PropertiesTable tb;
  68         //Slider to be tested.
  69         Slider testedSlider;
  70 
  71         public SliderScene() {
  72             super("Slider", 800, 600);
  73 
  74             prepareScene();
  75         }
  76 
  77         @Override
  78         final protected void prepareScene() {
  79             testedSlider = SliderBuilder.create().id(TESTED_SLIDER_ID).build();
  80 
  81             tb = new PropertiesTable(testedSlider);
  82             PropertyTablesFactory.explorePropertiesList(testedSlider, tb);
  83             SpecialTablePropertiesProvider.provideForControl(testedSlider, tb);
  84 
  85             Button resetButton = ButtonBuilder.create().id(RESET_BUTTON_ID).text("Reset").build();
  86             resetButton.setOnAction(new EventHandler<ActionEvent>() {
  87                 public void handle(ActionEvent t) {
  88                     HBox hb = (HBox) getRoot();
  89                     hb.getChildren().clear();
  90                     prepareMainSceneStructure();
  91                     prepareScene();
  92                 }
  93             });
  94 
  95             Button setCustomConverter = ButtonBuilder.create().id(APPLY_CUSTOM_LABEL_FORMATTER).text("ApplyCsustomConverter").build();
  96             setCustomConverter.setOnAction(new EventHandler<ActionEvent>() {
  97                 public void handle(ActionEvent t) {
  98                     testedSlider.setLabelFormatter(new CustomConverter());
  99                     StaticLogger.log("\nCustom logger set.\n");
 100                 }
 101             });
 102 
 103             VBox vb = new VBox();
 104             vb.setSpacing(5);
 105             vb.getChildren().addAll(resetButton, setCustomConverter);
 106             setControllersContent(vb);
 107             setTestedControl(testedSlider);
 108             setPropertiesContent(tb);
 109         }
 110     }
 111 
 112     class CustomConverter extends StringConverter<java.lang.Double> {
 113 
 114         @Override
 115         public String toString(Double t) {
 116             return "Ok.";
 117         }
 118 
 119         @Override
 120         public Double fromString(String string) {
 121             return 10.0;
 122         }
 123     }
 124 }