Package org.joshy.sketch.actions.symbols

Examples of org.joshy.sketch.actions.symbols.CreateSymbol


                    new NodeActions.AlignBottom(context));
            contextMenu.addActions(new NodeActions.GroupSelection(context));
        }

        if(context.getSelection().size() == 1){
            contextMenu.addActions(new CreateSymbol(context));
        }
       
        if(!context.getSelection().isEmpty()) {
            contextMenu.addActions(new CreateResizableShape(context));
        }
View Full Code Here


                .addItem(getString("menus.matchNodeHeight"),             new NodeActions.SameWidth(context,false))
                .separator()
                .addItem(getString("menus.groupSelection"),   "G",       new NodeActions.GroupSelection(context))
                .addItem(getString("menus.ungroupSelection"), "shift G", new NodeActions.UngroupSelection(context))
                .separator()
                .addItem(getString("menus.createSymbol"), new CreateSymbol(context))
                .addItem(getString("menus.createResizableShape"), new CreateResizableShape(context))
                .addItem(getString("menus.editResizableShape"), new CreateResizableShape.Edit(context))
                .addItem(getString("menus.duplicateNode"), new NodeActions.DuplicateNodesAction(context,true))
                .separator()
                .addItem(getString("menus.resetTransforms"), new NodeActions.ResetTransforms(context))
View Full Code Here

TOP

Related Classes of org.joshy.sketch.actions.symbols.CreateSymbol

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.