All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netbeans.api.visual.widget.BirdViewController Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common
 * Development and Distribution License("CDDL") (collectively, the
 * "License"). You may not use this file except in compliance with the
 * License. You can obtain a copy of the License at
 * http://www.netbeans.org/cddl-gplv2.html
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 * specific language governing permissions and limitations under the
 * License.  When distributing the software, include this License Header
 * Notice in each file and include the License file at
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Sun in the GPL Version 2 section of the License file that
 * accompanied this code. If applicable, add the following below the
 * License Header, with the fields enclosed by brackets [] replaced by
 * your own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 *
 * Contributor(s):
 *
 * The Original Software is NetBeans. The Initial Developer of the Original
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 * Microsystems, Inc. All Rights Reserved.
 *
 * If you wish your version of this file to be governed by only the CDDL
 * or only the GPL Version 2, indicate your decision by adding
 * "[Contributor] elects to include this software in this distribution
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 * single choice of license, a recipient has the option to distribute
 * your version of this file under either the CDDL, the GPL Version 2 or
 * to extend the choice of license to its licensees as provided above.
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 * Version 2 license, then the option applies only if the new code is
 * made subject to such option by the copyright holder.
 */
package org.netbeans.api.visual.widget;

import org.netbeans.modules.visual.widget.BirdViewWindow;

import java.awt.*;

/**
 * This class controls a bird view created for a specific scene. The bird is tracking mouse-cursor over the main scene view.
 * You can specify a separate zoom-factor and you can enable and disable it by calling show and hide methods.
 * 

* When a bird view is enabled then it consumes all events of a main scene view therefore you cannot do anything except * watch the scene with bird view. * * @since 2.7 * @author David Kaspar */ public final class BirdViewController { private BirdViewWindow birdView; BirdViewController (Scene scene) { birdView = new BirdViewWindow (scene); } /** * Sets a zoom factor of the bird view. * @param zoomFactor the zoom factor * @since 2.7 */ public void setZoomFactor (double zoomFactor) { birdView.setZoomFactor (zoomFactor); } /** * Sets a size of the bird view window. * @param size the window size * @since 2.7 */ public void setWindowSize (Dimension size) { birdView.setWindowSize (size); } /** * Enables the bird view. It means that the bird view window will be visible while a mouse cursor is over the visible * area of the main scene view. *

* Note: Has to be invoked after Scene.createView method. *

* Note: An user has to initially move cursor over the visible area of the main scene view * to show the window up for the first time after the method call. * @since 2.7 */ public void show () { birdView.invokeShow (); } /** * Disables the bird view. It means the bird view window is hidden and the main scene view is not blocked for events. * @since 2.7 */ public void hide () { birdView.invokeHide (); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy