Examples of BoundAction


Examples of org.jdesktop.swingx.action.BoundAction

//--------------------------- init decorators
   
    private void createDecorators() {
        createHighlighters();
        findNextAction = new BoundAction("Find Next");
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

     * @param forward a boolean indicating the direction of the required focus
     *        transfer
     * @return the action bound to focusTraversal.
     */
    private Action createFocusTransferAction(final boolean forward) {
        BoundAction action = new BoundAction(null,
                forward ? FOCUS_NEXT_COMPONENT : FOCUS_PREVIOUS_COMPONENT);
        action.registerCallback(this, forward ? "transferFocus"
                : "transferFocusBackward");
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

    /**
     * Creates and returns the default <code>Action</code> for toggling the
     * horizontal scrollBar.
     */
    private Action createHorizontalScrollAction() {
        BoundAction action = new BoundAction(null,
                HORIZONTALSCROLL_ACTION_COMMAND);
        action.setStateAction();
        action.registerCallback(this, "setHorizontalScrollEnabled");
        action.setSelected(isHorizontalScrollEnabled());
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

    /**
     * Creates and returns the default <code>Action</code> for packing the
     * selected column.
     */
    private Action createPackSelectedAction() {
        BoundAction action = new BoundAction(null, PACKSELECTED_ACTION_COMMAND);
        action.registerCallback(this, "packSelected");
        action.setEnabled(getSelectedColumnCount() > 0);
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

    /**
     * Creates and returns the default <b>Action </b> for packing all columns.
     */
    private Action createPackAllAction() {
        BoundAction action = new BoundAction(null, PACKALL_ACTION_COMMAND);
        action.registerCallback(this, "packAll");
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

     * @param initial the initial value of the property
     * @return newly created action
     */
    protected AbstractActionExt createModelStateAction(String command, String methodName, boolean initial) {
        String actionName = getUIString(command);
        BoundAction action = new BoundAction(actionName,
                command);
        action.setStateAction();
        action.registerCallback(getPatternModel(), methodName);
        action.setSelected(initial);
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

     * @param methodName the method to call an actionPerformed.
     * @return newly created action
     */
    protected AbstractActionExt createBoundAction(String actionCommand, String methodName) {
        String actionName = getUIString(actionCommand);
        BoundAction action = new BoundAction(actionName,
                actionCommand);
        action.registerCallback(this, methodName);
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

        putAction(EXECUTE_ACTION_COMMAND, defaultAction);
    }

    private Action createCloseAction() {
        String actionName = getUIString(CLOSE_ACTION_COMMAND);
        BoundAction action = new BoundAction(actionName,
                CLOSE_ACTION_COMMAND);
        action.registerCallback(this, "doClose");
        return action;
    }
View Full Code Here

Examples of org.jdesktop.swingx.action.BoundAction

        //bindMenuActions();
    }
   
    private void bindMenuActions() {
        BoundAction findModeAction = new BoundAction("Incremental Search", "useFindBar");
        findModeAction.setStateAction();
        findModeAction.registerCallback(this, "useFindBar");
        getActionMap().put("useFindBar", findModeAction);
       
        TargetableAction findAction = new TargetableAction("Search", "find");
        getActionMap().put("triggerFind", findAction);
    }
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.