Examples of ZoomOut


Examples of org.enhydra.jawe.components.graph.actions.ZoomOut

        langDepName = "ZoomIn";
        ja = new JaWEAction(action, icon, langDepName);
        componentAction.put(action.getValue(Action.NAME), ja);

        // ZoomOut
        action = new ZoomOut(comp);
        icon = new ImageIcon(ResourceManager.class.getClassLoader().getResource("org/enhydra/jawe/images/zoomout.gif"));
        langDepName = "ZoomOut";
        ja = new JaWEAction(action, icon, langDepName);
        componentAction.put(action.getValue(Action.NAME), ja);
    }
View Full Code Here

Examples of org.sleuthkit.autopsy.timeline.actions.ZoomOut

        void initialize() {
            assert resetFiltersButton != null : "fx:id=\"resetFiltersButton\" was not injected: check your FXML file 'NoEventsDialog.fxml'.";
            assert dismissButton != null : "fx:id=\"dismissButton\" was not injected: check your FXML file 'NoEventsDialog.fxml'.";
            assert zoomButton != null : "fx:id=\"zoomButton\" was not injected: check your FXML file 'NoEventsDialog.fxml'.";

            Action zoomOutAction = new ZoomOut(controller);
            zoomButton.setOnAction(zoomOutAction);
            zoomButton.disableProperty().bind(zoomOutAction.disabledProperty());

            dismissButton.setOnAction(e -> {
                closeCallback.run();
            });
            Action defaultFiltersAction = new DefaultFilters(controller);
View Full Code Here

Examples of vg.userInterface.scaling.components.ZoomOut

    this.userInterface = userInterface;
    // init mutex
    this.theMutexObject = new Object();
    // init components
    this.zoomIn = new ZoomIn();
    this.zoomOut = new ZoomOut();
    this.zoomBox = new ZoomBox();
    //this.toolBar = new JPanel(new GridBagLayout());
    this.toolBar = new JToolBar();
    this.toolBar.setFloatable(false);
   
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.