Package eu.mihosoft.vrlstudio.io

Examples of eu.mihosoft.vrlstudio.io.WindowBounds


                                    screenDim.height - screenDim.height / 4);
                            frame.setSize(winDim);

                            VGraphicsUtil.centerOnScreen(frame, 0);
                        } else {
                            WindowBounds windowBounds = new WindowBounds(config);
                            windowBounds.setWindowBounds(frame);
                        }

                        // resize splitpane
                        frame.getSplitPane().setDividerLocation(1.0);
                        frame.getSplitPane().setResizeWeight(1);
View Full Code Here


        // write frame position and bounds
        ConfigurationFile config = IOUtil.newConfigurationFile(
                new File(VRL.getPropertyFolderManager().getEtcFolder(), STUDIO_CONFIG));
        config.load();
        WindowBounds windowBounds = new WindowBounds(this, config);
        config.save();

        if (projectController.isProjectOpened()) {
            try {
                projectController.closeProject();
View Full Code Here

TOP

Related Classes of eu.mihosoft.vrlstudio.io.WindowBounds

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.