Examples of VlcjBackgroundFrame


Examples of datasoul.render.vlcj.VlcjBackgroundFrame

    public void initMainDisplay(){

        mainDisplay = new SwingDisplayWindow();
        mainDisplay.registerAsMain();
        mainVideo= new VlcjBackgroundFrame();
        mainVideo.setTitle(java.util.ResourceBundle.getBundle("datasoul/internationalize").getString("DATASOUL - MAIN DISPLAY"));
        mainVideo.setOverlay(mainDisplay);
        mainVideo.registerAsMain();
        mainVideo.handleErrors();
    }
View Full Code Here

Examples of datasoul.render.vlcj.VlcjBackgroundFrame

    public void initMonitorDisplay(){

        if (ConfigObj.getActiveInstance().getMonitorOutput() ){
            monitorDisplay = new SwingDisplayWindow();
            monitorDisplay.registerAsMonitor();
            monitorVideo = new VlcjBackgroundFrame();
            monitorVideo.setTitle(java.util.ResourceBundle.getBundle("datasoul/internationalize").getString("DATASOUL - MONITOR DISPLAY"));
            monitorVideo.setOverlay(monitorDisplay);
            monitorVideo.registerAsMonitor();
        }
    }
View Full Code Here
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.