org.jpedal.examples.viewer.gui.javafx.JavaFXCombo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
An Open Source JavaFX PDF Viewer
/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info: http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2015 IDRsolutions and Contributors.
*
* This file is part of JPedal/JPDF2HTML5
*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ---------------
* JavaFXCombo.java
* ---------------
*/
package org.jpedal.examples.viewer.gui.javafx;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Tooltip;
import org.jpedal.examples.viewer.gui.generic.GUICombo;
/**
*
*/
public class JavaFXCombo extends ComboBox implements GUICombo{
private int ID;
public JavaFXCombo(final String[] qualityValues) {
final ObservableList options = FXCollections.observableArrayList(qualityValues);
getItems().addAll(options);
}
@Override
public void setName(final String name){
this.setId(name);
}
/**
* @return the iD
*/
@Override
public int getID() {
return ID;
}
/**
* @param id the iD to set
*/
@Override
public void setID(final int id) {
ID = id;
}
@Override
public void setSelectedIndex(final int defaultSelection) {
getSelectionModel().select(defaultSelection);
}
@Override
public void setToolTipText(final String tooltip){
final Tooltip tTip = new Tooltip(tooltip);
setTooltip(tTip);
}
@Override
public void setEnabled(final boolean value) {
/**
* We reverse the value for JavaFX because Swing uses setEnable()
* whilst javaFX uses setDisable() so false for swing is true for fx.
*/
setDisable(!value);
}
@Override
public void setSelectedItem(final Object index) {
getSelectionModel().select(index);
}
@Override
public int getSelectedIndex() {
return getSelectionModel().getSelectedIndex();
}
@Override
public Object getSelectedItem() {
return getSelectionModel().getSelectedItem();
}
@Override
public void setVisibility(final boolean set) {
setVisible(set);
}
}