Package org.rioproject.ui

Examples of org.rioproject.ui.GlassPaneContainer


    public Main(final Configuration config, final boolean exitOnClose, final Properties startupProps) throws ExportException, ConfigurationException {
        this.config = config;

        progressPanel = new ProgressPanel(config);
        glassPaneComponent = new GlassPaneContainer(progressPanel);
        String lastArtifactName = startupProps.getProperty(Constants.LAST_ARTIFACT);
        if(lastArtifactName!=null)
            lastArtifact = lastArtifactName;
        String lastDirName = startupProps.getProperty(Constants.LAST_DIRECTORY);
        if(lastDirName!=null)
View Full Code Here


    /*
     * Draw mouse over details
     */
    private GlassPaneContainer createGlassPane(JComponent comp) {
        return new GlassPaneContainer(comp) {
            @Override
            public void paint(Graphics g) {
                super.paint(g);
                if(mouseOverValue!=null) {
                    g.setFont(DefaultCalculableView.defaultFont);
View Full Code Here

TOP

Related Classes of org.rioproject.ui.GlassPaneContainer

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.