Package fr.soleil.comete.swt.both

Examples of fr.soleil.comete.swt.both.ImageViewer


        chartData.grabExcessHorizontalSpace = true;
        chartData.grabExcessVerticalSpace = true;
        chartViewer.setLayoutData(chartData);

        // ImageViewer
        imageViewer = new ImageViewer(parent, SWT.NONE);

        GridData imageData = new GridData(300, 300);
        imageData.verticalAlignment = GridData.BEGINNING;
        imageData.horizontalSpan = 2;
        imageData.grabExcessHorizontalSpace = true;
View Full Code Here


    }

    private ImageViewer getImageViewer() {
        if (imageViewer == null) {
            // System.out.println("plotAreaComposite = " + tableAreaComposite);
            imageViewer = new ImageViewer(plotAreaComposite, SWT.NONE);
        }
        plotAreaLayout.topControl = imageViewer;
        return imageViewer;
    }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.swt.both.ImageViewer

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.