Package org.rstudio.core.client.widget

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


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

      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

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

      addWidget(existingProjectDir_);
     
   }
View Full Code Here

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

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

      }

      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

                          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

Related Classes of org.rstudio.core.client.widget.DirectoryChooserTextBox

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.