alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.core.actions;

import org.openide.awt.HtmlBrowser;
import org.openide.windows.*;
import org.openide.util.HelpCtx;
import org.openide.util.NbBundle;
import org.openide.util.actions.CallableSystemAction;

import org.netbeans.core.IDESettings;

/** Activates last opened HTML browser or opens a HTML Browser on the home URL 
 *  specified in IDESettings using HtmlBrowser.URLDisplayer.showURL().
*
* @author Ian Formanek
*/
public class HTMLViewAction extends CallableSystemAction {

    public static final String MODE_NAME = "webbrowser"; // NOI18N

    protected String iconResource () {
        return null; //"org/netbeans/core/resources/actions/htmlView.gif"; // NOI18N
    }

    public void performAction() {
        org.openide.awt.StatusDisplayer.getDefault().setStatusText(
            NbBundle.getBundle(HTMLViewAction.class).getString("CTL_OpeningBrowser"));
        try {
            boolean notFound = true;
            
            Mode mode = WindowManager.getDefault().findMode(MODE_NAME);
            if (mode != null) {
                TopComponent [] comps = mode.getTopComponents ();
                if (comps.length > 0) {
                    comps[0].open ();
                    comps[0].requestActive ();
                    notFound = false;
                }
            }
            // is it open on any workspace?
            if (notFound) {
                Workspace [] workspaces = WindowManager.getDefault ().getWorkspaces ();
                if (workspaces != null) {
                    for (int i=0; i 0) {
                                comps[0].open ();
                                comps[0].requestActive ();
                                notFound = false;
                                break;
                            }
                        }
                    }
                }
            }
            if (notFound) {
                HtmlBrowser.URLDisplayer.getDefault().showURL(
                    new java.net.URL(HtmlBrowser.getHomePage ()
                ));
            }
        } catch (java.net.MalformedURLException e) {
            if (!HtmlBrowser.getHomePage ().
              startsWith ("http://") // NOI18N
            ) {
                try {
                    HtmlBrowser.URLDisplayer.getDefault().showURL(
                        new java.net.URL("http://" + HtmlBrowser.getHomePage () // NOI18N
                    ));
                } catch (java.net.MalformedURLException e1) {
                    HtmlBrowser.URLDisplayer.getDefault().showURL(
                        IDESettings.getRealHomeURL ());
                }
            } else
                HtmlBrowser.URLDisplayer.getDefault().showURL(IDESettings.getRealHomeURL ());
        }
        org.openide.awt.StatusDisplayer.getDefault().setStatusText (""); // NOI18N
    }
    
    protected boolean asynchronous() {
        return false;
    }

    public String getName() {
        return NbBundle.getBundle(HTMLViewAction.class).getString("HTMLView");
    }

    public HelpCtx getHelpCtx() {
        return new HelpCtx(HTMLViewAction.class);
    }

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.