apps/experiments/ConferenceScheduleApp/src/main/java/com/javafx/experiments/scheduleapp/control/SearchBox.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


  15  *    the documentation and/or other materials provided with the distribution.
  16  *  - Neither the name of Oracle Corporation nor the names of its
  17  *    contributors may be used to endorse or promote products derived
  18  *    from this software without specific prior written permission.
  19  *
  20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31  */
  32 package com.javafx.experiments.scheduleapp.control;
  33 
  34 import com.javafx.experiments.scheduleapp.Theme;
  35 import com.sun.javafx.scene.control.skin.ButtonSkin;
  36 import javafx.beans.value.ChangeListener;
  37 import javafx.beans.value.ObservableValue;
  38 import javafx.event.EventHandler;
  39 import javafx.scene.Cursor;
  40 import javafx.scene.control.Button;
  41 import javafx.scene.control.TextField;
  42 import javafx.scene.image.Image;
  43 import javafx.scene.image.ImageView;
  44 import javafx.scene.input.MouseEvent;
  45 
  46 /**
  47  * Search field with styling and a clear button
  48  */
  49 public class SearchBox extends TextField implements ChangeListener<String>{
  50     private static final Image CLEAR_ICON = new Image(Theme.class.getResource("images/search-clear.png").toExternalForm());
  51     private final Button clearButton = new Button();
  52 
  53     public SearchBox() {
  54         getStyleClass().setAll("search-box");
  55         setPromptText("Search");




  15  *    the documentation and/or other materials provided with the distribution.
  16  *  - Neither the name of Oracle Corporation nor the names of its
  17  *    contributors may be used to endorse or promote products derived
  18  *    from this software without specific prior written permission.
  19  *
  20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31  */
  32 package com.javafx.experiments.scheduleapp.control;
  33 
  34 import com.javafx.experiments.scheduleapp.Theme;
  35 import javafx.scene.control.skin.ButtonSkin;
  36 import javafx.beans.value.ChangeListener;
  37 import javafx.beans.value.ObservableValue;
  38 import javafx.event.EventHandler;
  39 import javafx.scene.Cursor;
  40 import javafx.scene.control.Button;
  41 import javafx.scene.control.TextField;
  42 import javafx.scene.image.Image;
  43 import javafx.scene.image.ImageView;
  44 import javafx.scene.input.MouseEvent;
  45 
  46 /**
  47  * Search field with styling and a clear button
  48  */
  49 public class SearchBox extends TextField implements ChangeListener<String>{
  50     private static final Image CLEAR_ICON = new Image(Theme.class.getResource("images/search-clear.png").toExternalForm());
  51     private final Button clearButton = new Button();
  52 
  53     public SearchBox() {
  54         getStyleClass().setAll("search-box");
  55         setPromptText("Search");