Package com.agifans.picedit.gui.toolbar

Examples of com.agifans.picedit.gui.toolbar.ColourChooserDialog


               
                Point eventPoint = event.getLocationOnScreen();
                Point dialogPoint = new Point(eventPoint.x - 34, eventPoint.y - 34);
               
                // Pop up colour chooser.
                ColourChooserDialog dialog = new ColourChooserDialog(dialogPoint);
                dialog.setVisible(true);
               
                // Process the chosen visual colour.
                application.getPicture().processVisualColourChange(dialog.getChosenColour());
               
                // This helps to protect against clashes between wheel clicks and rotation.
                wheelCounter = 0;
            }
        }
View Full Code Here

TOP

Related Classes of com.agifans.picedit.gui.toolbar.ColourChooserDialog

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.