Example usage for javafx.scene.layout StackPane subclass-usage

List of usage examples for javafx.scene.layout StackPane subclass-usage

Introduction

In this page you can find the example usage for javafx.scene.layout StackPane subclass-usage.

Usage

From source file de.chaosfisch.uploader.gui.renderer.ProgressNodeRenderer.java

public class ProgressNodeRenderer extends StackPane {

    public static final String DISPLAY_PROGRESS = "display_progress";

    private final ProgressBar progressBar = ProgressBarBuilder.create().scaleY(2).prefWidth(500).progress(0)
            .build();

From source file de.chaosfisch.uploader.gui.renderer.TagTextArea.java

public class TagTextArea extends StackPane {

    public static final String OLD_TAG_INPUT = "old_tags";
    private final SimpleStringProperty tags = new SimpleStringProperty();
    private final WebView webView = new WebView();
    private final boolean useOldTags;

From source file poe.trade.assist.SearchView.java

/**
 * @author thirdy
 *
 */
public class SearchView extends StackPane {

From source file org.openwms.client.fx.core.view.CustomerDataScreen.java

/**
 * A CustomerDataScreen.
 * 
 * @author <a href="mailto:scherrer@openwms.org">Heiko Scherrer</a>
 * @version $Revision: $
 * 

From source file Main.java

class Wizard extends StackPane {
    private static final int UNDEFINED = -1;
    private ObservableList<WizardPage> pages = FXCollections.observableArrayList();
    private Stack<Integer> history = new Stack<Integer>();
    private int curPageIdx = UNDEFINED;

From source file at.ac.tuwien.qse.sepm.gui.control.ImageTile.java

public class ImageTile extends StackPane {

    private final SmartImage imageView = new SmartImage(ImageSize.LARGE);

    private final Label name = new Label();
    private final FontAwesomeIconView overLayIcon = new FontAwesomeIconView();

From source file at.ac.tuwien.qse.sepm.gui.FullscreenWindow.java

public class FullscreenWindow extends StackPane {

    private static final Logger LOGGER = LogManager.getLogger();

    private Stage stage;
    private Scene scene;

From source file org.sleuthkit.autopsy.timeline.ui.detailview.AggregateEventNode.java

/** Represents an {@link AggregateEvent} in a {@link EventDetailChart}. */
public class AggregateEventNode extends StackPane {

    private final static Image PLUS = new Image("/org/sleuthkit/autopsy/timeline/images/plus-button.png"); // NON-NLS
    private final static Image MINUS = new Image("/org/sleuthkit/autopsy/timeline/images/minus-button.png"); // NON-NLS

From source file org.sleuthkit.autopsy.timeline.ui.detailview.EventNodeBase.java

/**
 *
 */
public abstract class EventNodeBase<Type extends TimeLineEvent> extends StackPane implements ContextMenuProvider {

    private static final Logger LOGGER = Logger.getLogger(EventNodeBase.class.getName());