Package org.locationtech.udig.ui.filter

Examples of org.locationtech.udig.ui.filter.FilterInput


       
        ControlDecoration decoration = new ControlDecoration(label, SWT.RIGHT | SWT.TOP );
        filterViewer = new FilterViewer(parent, SWT.MULTI );
        filterViewer.getControl().setLayoutData("cell 1 1,grow,width 200:100%:100%,height 60:100%:100%");
       
        FilterInput input = new FilterInput();
        input.setFeedback( decoration );
        filterViewer.setInput(input);
        filterViewer.refresh();

        listen(true);
    }
View Full Code Here


        getApplyAction().setEnabled(false);
        if( this.aoiButton == null || this.aoiButton.isDisposed()){
            return; // we are shut down and thus ignoring this request to update the ui
        }
        SimpleFeatureType type = getLayer().getSchema();
        FilterInput filterInput = filterViewer.getInput();
        filterInput.setSchema( type );
       
        final FilterStyle style = getFilterStyle();

        filterViewer.getControl().getDisplay().asyncExec(new Runnable(){
            public void run() {
View Full Code Here

        ControlDecoration decoration = new ControlDecoration(label, SWT.RIGHT | SWT.TOP );
        filter = new FilterViewer(page, SWT.MULTI );
        filter.getControl().setLayoutData("cell 1 0,grow,width 200:100%:100%,height 60:100%:100%");
       
        FilterInput input = new FilterInput();
        input.setFeedback(decoration);
        input.setRequired(false);
        filter.setInput(input);
       
        loadLayer();
        listen(true);
       
View Full Code Here

TOP

Related Classes of org.locationtech.udig.ui.filter.FilterInput

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.