Package com.kodcu.other

Source Code of com.kodcu.other.Current

package com.kodcu.other;

import javafx.scene.control.Label;
import javafx.scene.control.Tab;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import org.springframework.stereotype.Component;

import java.nio.file.Path;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.ConcurrentHashMap;

/**
* Created by usta on 18.05.2014.
*/
@Component
public class Current {

    private Tab currentTab;
    private Map<Tab, Path> newTabPaths = new ConcurrentHashMap<>();
    private Map<Tab, WebView> newTabWebViews = new ConcurrentHashMap<>();

    public Tab getCurrentTab() {
        return currentTab;
    }

    public void setCurrentTab(Tab currentTab) {
        this.currentTab = currentTab;
    }

    public Map<Tab, WebView> getNewTabWebViews() {
        return newTabWebViews;
    }

    public void setNewTabWebViews(Map<Tab, WebView> newTabWebViews) {
        this.newTabWebViews = newTabWebViews;
    }

    public Map<Tab, Path> getNewTabPaths() {
        return newTabPaths;
    }

    public void setNewTabPaths(Map<Tab, Path> newTabPaths) {
        this.newTabPaths = newTabPaths;
    }

    public void putTab(Tab tab, Path path, WebView webview) {
        setCurrentTab(tab);
        if (Objects.nonNull(path))
            getNewTabPaths().put(tab, path);
        getNewTabWebViews().put(getCurrentTab(), webview);
    }

    public Path currentPath() {
        return getNewTabPaths().get(getCurrentTab());
    }

    public WebView currentView() {
        return getNewTabWebViews().get(getCurrentTab());
    }

    public WebEngine currentEngine() {
        WebView webView = getNewTabWebViews().get(getCurrentTab());
        return Objects.isNull(webView) ? null : webView.getEngine();
    }

    public Path currentParentRoot() {
        return currentPath().getParent();
    }


    public void setCurrentTabText(String currentTabText) {
        Tab tab = getCurrentTab();
        Label label = (Label) tab.getGraphic();
        label.setText(currentTabText);
    }

    public String getCurrentTabText() {
        Tab tab = getCurrentTab();
        Label label = (Label) tab.getGraphic();

        return label.getText();
    }

    public String currentEditorValue() {
        String value = (String) currentEngine().executeScript("editor.getValue()");
        return value;
    }
}
TOP

Related Classes of com.kodcu.other.Current

TOP
Copyright © 2018 www.massapi.com. 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.