Package org.rstudio.core.client.widget

Examples of org.rstudio.core.client.widget.CaptionWithHelp$Styles


      VerticalPanel mainPanel = new VerticalPanel();
      mainPanel.setSpacing(2);
      mainPanel.setStylePrimaryName(RESOURCES.styles().mainWidget());
     
      // source type
      reposCaption_ = new CaptionWithHelp("Install from:",
                                          "Configuring Repositories",
                                          "configuring_repositories")
      reposCaption_.setIncludeVersionInfo(false);
      reposCaption_.setWidth("100%");
      mainPanel.add(reposCaption_);
View Full Code Here


   }
  
   @UiFactory
   public CaptionWithHelp makeHelpCaption()
   {
      return new CaptionWithHelp("Template:", "Using R Markdown Templates",
                                 "using_rmarkdown_templates");
   }
View Full Code Here

     
      VerticalPanel namePanel = new VerticalPanel();
      namePanel.setWidth("100%");
    
      // path
      CaptionWithHelp pathCaption = new CaptionWithHelp(
                                 "The RSA key will be created at:",
                                 "SSH/RSA key management",
                                 "rsa_key_help")
      pathCaption.setIncludeVersionInfo(false);
      pathCaption.setWidth("100%");
      namePanel.add(pathCaption);
     
      TextBox txtKeyPath = new TextBox();
      txtKeyPath.addStyleName(styles.keyPathTextBox());
      txtKeyPath.setReadOnly(true);
View Full Code Here

      dirChooser_ = new DirectoryChooserTextBox("Directory:",
                                                "",
                                                null);
      dirChooser_.addStyleName(RES.styles().dirChooser());
     
      ignoresCaption_ = new CaptionWithHelp("Ignore:",
                                             "Specifying ignored files");
      ignoresCaption_.setIncludeVersionInfo(false);
      ignoresCaption_.addStyleName(RES.styles().ignoresCaption());
     
      editor_ = new AceEditor();
View Full Code Here

TOP

Related Classes of org.rstudio.core.client.widget.CaptionWithHelp$Styles

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.