apps/experiments/ConferenceScheduleApp/src/main/java/com/javafx/experiments/scheduleapp/control/PopoverTreeList.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 static com.javafx.experiments.scheduleapp.Theme.*;
  35 import com.sun.javafx.scene.control.skin.ListCellSkin;
  36 import com.sun.javafx.scene.control.skin.ListViewSkin;
  37 import javafx.event.EventHandler;
  38 import javafx.geometry.Bounds;
  39 import javafx.scene.control.ListCell;
  40 import javafx.scene.control.ListView;
  41 import javafx.scene.image.ImageView;
  42 import javafx.scene.input.MouseEvent;
  43 import javafx.util.Callback;
  44 
  45 /**
  46  * Special ListView designed to look like "Text... >" tree list. Perhaps we ought to have customized
  47  * a TreeView instead of a ListView (as the TreeView already has the data model all defined).
  48  *
  49  * This implementation minimizes classes by just having the PopoverTreeList implementing everything
  50  * (it is the Control, the Skin, and the CellFactory all in one).
  51  */
  52 public class PopoverTreeList<T> extends ListView<T> implements Callback<ListView<T>, ListCell<T>> {
  53     
  54     public PopoverTreeList(){
  55         getStyleClass().clear();
  56         setSkin(new ListViewSkin<T>(this));




  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 static com.javafx.experiments.scheduleapp.Theme.*;
  35 import javafx.scene.control.skin.ListCellSkin;
  36 import javafx.scene.control.skin.ListViewSkin;
  37 import javafx.event.EventHandler;
  38 import javafx.geometry.Bounds;
  39 import javafx.scene.control.ListCell;
  40 import javafx.scene.control.ListView;
  41 import javafx.scene.image.ImageView;
  42 import javafx.scene.input.MouseEvent;
  43 import javafx.util.Callback;
  44 
  45 /**
  46  * Special ListView designed to look like "Text... >" tree list. Perhaps we ought to have customized
  47  * a TreeView instead of a ListView (as the TreeView already has the data model all defined).
  48  *
  49  * This implementation minimizes classes by just having the PopoverTreeList implementing everything
  50  * (it is the Control, the Skin, and the CellFactory all in one).
  51  */
  52 public class PopoverTreeList<T> extends ListView<T> implements Callback<ListView<T>, ListCell<T>> {
  53     
  54     public PopoverTreeList(){
  55         getStyleClass().clear();
  56         setSkin(new ListViewSkin<T>(this));