Package net.sf.soundcomp.ide.dialog

Examples of net.sf.soundcomp.ide.dialog.ImageResizeDialog


        if (activePanel instanceof AudioPanel) ((AudioPanel)activePanel).scale(4);
    }

    @Action
    public void pictResizeAction() {
        ImageResizeDialog dlg = new ImageResizeDialog(((SingleFrameApplication) getApplication()).getMainFrame(), true);
        dlg.setLocationRelativeTo(dlg.getParent());
        if (activePanel instanceof AudioPanel) ((AudioPanel)activePanel).showResizeDialog(dlg);
//        activePanel.setToolColor(dlg.getColorPanel().getTextColor());
    }
View Full Code Here

TOP

Related Classes of net.sf.soundcomp.ide.dialog.ImageResizeDialog

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.