Examples of DirectoryChooserTextBox


Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

   public FindInFilesDialog(OperationWithInput<State> operation)
   {
      super("Find in Files", operation);

      dirChooser_ = new DirectoryChooserTextBox("Search in:", null);
      dirChooser_.setText("");
      mainWidget_ = GWT.<Binder>create(Binder.class).createAndBindUi(this);

      setOkButtonCaption("Find");
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

      txtDirName_.addStyleName(styles.wizardMainColumn());
      addWidget(txtDirName_);
     
      addSpacer();
   
      existingRepoDestDir_ = new DirectoryChooserTextBox(
            "Create project as subdirectory of:", txtRepoUrl_);
      addWidget(existingRepoDestDir_);
   }
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

      onAddBodyWidgets();
     
      addSpacer();
     
      // project dir
      newProjectParent_ = new DirectoryChooserTextBox(
            "Create project as subdirectory of:", txtProjectName_);
      addWidget(newProjectParent_);
     
      // if git is available then add git init
      UIPrefs uiPrefs = RStudioGinjector.INSTANCE.getUIPrefs();
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

   @Override
   protected void onAddWidgets()
   {
  
      existingProjectDir_ = new DirectoryChooserTextBox(
            "Project working directory:", null);

      addWidget(existingProjectDir_);
     
   }
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

   // UI factory methods ------------------------------------------------------

   @UiFactory
   public DirectoryChooserTextBox makeDirectoryChooserTextbox()
   {
      return new DirectoryChooserTextBox("", null);
   }
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

      }

      Label defaultLabel = new Label("Default working directory (when not in a project):");
      nudgeRight(defaultLabel);
      add(tight(defaultLabel));
      add(dirChooser_ = new DirectoryChooserTextBox(null,
                                                    null,
                                                    fileDialogs_,
                                                    fsContext_))
      spaced(dirChooser_);
      nudgeRight(dirChooser_);
View Full Code Here

Examples of org.rstudio.core.client.widget.DirectoryChooserTextBox

                          implements Ignore.Display
{   
   @Inject
   public IgnoreDialog()
   {
      dirChooser_ = new DirectoryChooserTextBox("Directory:",
                                                "",
                                                null);
      dirChooser_.addStyleName(RES.styles().dirChooser());
     
      ignoresCaption_ = new CaptionWithHelp("Ignore:",
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.