Package at.bestsolution.drawswf

Examples of at.bestsolution.drawswf.PictureDialog


    //----------------------------------------------------------------------------
    public void actionPerformed(ActionEvent action_event)
    {
        if ( picture_dialog_ == null )
        {
            picture_dialog_ = new PictureDialog();
        }

        if ( picture_dialog_.showOpenDialog(drawing_panel_) == JFileChooser.APPROVE_OPTION )
        {
            drawing_panel_.setBackgroundImage( picture_dialog_.getSelectedFile() );
View Full Code Here


    //----------------------------------------------------------------------------
    private int showPictureDialog()
    {
        if (picture_dialog_ == null)
        {
            picture_dialog_ = new PictureDialog();
        }
       
        return picture_dialog_.showOpenDialog( MainWindow.MAIN_WINDOW );
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.drawswf.PictureDialog

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.