Package org.controlsfx.control

Examples of org.controlsfx.control.PopOver


        restClient.setMasterPassword(App.getInstance().getMastePassword());
        AddEditView addEditView = new AddEditView();
        AddEditPresenter addEditPresenter = (AddEditPresenter) addEditView.getPresenter();
        this.addEditPresenter = addEditPresenter;
        addEditPresenter.setBasePresenter(instance);
        addEditPopOver = new PopOver(addEditView.getView());
        addEditPopOver.setDetachedTitle("Add or Edit Password");
        filteredPasswords = new FilteredList<>(allPasswords);
        prepareTable();
        simpleSearchBox.setFilteredList(filteredPasswords);
        new Thread(() -> {
View Full Code Here


        roundCorners(coverImageView, 10);

        Label maxPledgesWarning = new Label(String.format("You can collect a maximum of %d pledges, due to limits in the Bitcoin protocol.", ProjectModel.MAX_NUM_INPUTS));
        maxPledgesWarning.setStyle("-fx-font-size: 12; -fx-padding: 10");
        maxPledgesPopOver = new PopOver(maxPledgesWarning);
        maxPledgesPopOver.setDetachable(false);
        maxPledgesPopOver.setArrowLocation(PopOver.ArrowLocation.BOTTOM_CENTER);
        minPledgeEdit.focusedProperty().addListener(o -> {
            if (minPledgeEdit.isFocused())
                maxPledgesPopOver.show(minPledgeEdit);
View Full Code Here

TOP

Related Classes of org.controlsfx.control.PopOver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.