Package org.rstudio.core.client.widget

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


      return new HTML(" | ");
   }
  
   private Widget createCommandLink(String caption, ClickHandler clickHandler)
   {
      HyperlinkLabel link = new HyperlinkLabel(caption, clickHandler);
      return link;
   }
View Full Code Here


   {
      // maintain reference to containing class for closing
      final PopupPanel popupPanel = this;
     
      // create a hyperlink label for this URL
      HyperlinkLabel link = new HyperlinkLabel(caption, new ClickHandler() {
         public void onClick(ClickEvent event)
         {
            globalDisplay.openEmailComposeWindow(email, null);
            popupPanel.hide();
         }
View Full Code Here

      captionPanel.setCellHorizontalAlignment(
                                          sshKeyPathLabel,
                                          HasHorizontalAlignment.ALIGN_LEFT);
  
      HorizontalPanel linkPanel = new HorizontalPanel();
      publicKeyLink_ = new HyperlinkLabel("View public key");
      publicKeyLink_.addStyleName(RES.styles().viewPublicKeyLink());
      publicKeyLink_.addClickHandler(new ClickHandler() {
         @Override
         public void onClick(ClickEvent event)
         {
View Full Code Here

      HorizontalPanel helpPanel = new HorizontalPanel();
   
      Image helpImage = new Image(ThemeResources.INSTANCE.help());
      helpImage.getElement().getStyle().setMarginRight(4, Unit.PX);
      helpPanel.add(helpImage);
      helpLink_ = new HyperlinkLabel(caption);
      helpLink_.addClickHandler(new ClickHandler() {
         public void onClick(ClickEvent event)
         {
            RStudioGinjector.INSTANCE.getGlobalDisplay().openRStudioLink(
                                                         rstudioLink_,
View Full Code Here

TOP

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

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.