Package org.xvr.xvrengine.widgets

Examples of org.xvr.xvrengine.widgets.BrowseResource$IResourceChangedListener


    temp.setText("- generates a new project file in the specified direcotry, copying all the items explicitely included in the old project");
    temp.setLayoutData(data);
  }

  private void addSelectImportLocation(Composite container) { 
    this.import_destination = new BrowseResource("Location:", container, SWT.NULL, BrowseResource.TYPE_FOLDER, null);
    this.import_destination.init();
    this.import_destination.setEnabled(false);
    GridData gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    gd.grabExcessHorizontalSpace = true;
View Full Code Here


    layout.marginBottom = 20;
    layout.verticalSpacing = 20;

    project_container.setLayout(layout);

    this.import_src = new BrowseResource("Project: ", project_container, SWT.FILL, BrowseResource.TYPE_FILE, new String[]{"*.prj"}, new String[]{"*.prj"}, "*.prj", null);
    GridData gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    gd.grabExcessHorizontalSpace = true;
    this.import_src.init();
   
View Full Code Here

TOP

Related Classes of org.xvr.xvrengine.widgets.BrowseResource$IResourceChangedListener

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.