Package com.volantis.mcs.eclipse.controls

Examples of com.volantis.mcs.eclipse.controls.ImagePreview


        } else {
            // Create the SWT Image from the passed image data and create
            // a preview for it. When the preview control is destroyed, the
            // Image is is displaying will be destroyed with it.
            final Image swtImage = new Image(null, image);
            preview = new ImagePreview(container, style, swtImage);
            preview.addDisposeListener(new DisposeListener() {
                public void widgetDisposed(DisposeEvent e) {
                    swtImage.dispose();
                }
            });
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.controls.ImagePreview

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.