Package com.agifans.picedit.types

Examples of com.agifans.picedit.types.ToolType


         *
         * @param event The ActionEvent triggered when the tool bar button was pressed.
         */
        public void actionPerformed(ActionEvent event) {
            ToolPanelLocation toolPanelLocation = application.getToolPanelLocation();
            ToolType tool = ToolType.valueOf(event.getActionCommand());
            switch (tool) {
                case BRUSH:
                    // Pop up brush chooser.
                    BrushChooserDialog brushDialog = new BrushChooserDialog((Component)event.getSource(), false, toolPanelLocation);
                    brushDialog.setVisible(true);
View Full Code Here

TOP

Related Classes of com.agifans.picedit.types.ToolType

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.