Examples of LinkLabel


Examples of com.salas.bb.utils.uif.LinkLabel

    {
        BBFormBuilder builder = new BBFormBuilder("7dlu, pref:grow");
        builder.setDefaultDialogBorder();

        // Service link
        LinkLabel lnkService = new LinkLabel(
            Strings.message("spw.learn.more"),
            ResourceUtils.getString("server.plans.url"));
        lnkService.setForeground(LinkLabel.HIGHLIGHT_COLOR);

        String message = Strings.message("tweetthis.unavailable.1");
        builder.append(ComponentsFactory.createWrappedMultilineLabel(message), 2);

        builder.appendUnrelatedComponentsGapRow(2);
View Full Code Here

Examples of com.salas.bb.utils.uif.LinkLabel

        } else
        {
            taWording = ComponentsFactory.createWrappedMultilineLabel(
                Strings.message("installer.service.wording.missing"));

            lbReadMore = new LinkLabel(Strings.message("installer.service.read.more"),
                ResourceUtils.getString("server.plans.url"));

            tfUseEmail = new JTextField();
            tfUsePassword = new JPasswordField();


            lnkSignup = new LinkLabel(Strings.message("service.registration.signup"),
                ResourceUtils.getString("server.signup.url"));
            lnkSignup.setForeground(LinkLabel.HIGHLIGHT_COLOR);
        }
    }
View Full Code Here

Examples of net.sf.jpluck.swing.LinkLabel

        PanelBuilder panelBuilder = new PanelBuilder(this, formLayout);       
        panelBuilder.setDefaultDialogBorder();
        panelBuilder.add(previewLabel, "1,1");
    panelBuilder.add(downloadPreviewCheck, "1,3");
        for (int i = 0; i < actions.length; i++) {
          panelBuilder.add(new LinkLabel(actions[i]), "1," + (5+(i*2)));
        }
    }
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

        // wiki link
     
      gridData = new GridData();
      gridData.horizontalSpan = 2;

      LinkLabel link = new LinkLabelgJVM, gridData, "ConfigView.label.please.visit.here",
                      "http://wiki.vuze.com/w/Java_VM_memory_usage");
     
        // info
     
      label = new Label(gJVM, SWT.NULL);
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

    Label info_label = new Label( rootPanel, SWT.WRAP );
    GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
    info_label.setLayoutData(gridData);
    info_label.setText( MessageText.getString( "beta.wizard.info" ));
    LinkLabel link = new LinkLabel( rootPanel, "beta.wizard.link", MessageText.getString( "beta.wizard.link.url" ));
    Label link_label = link.getlabel();
   
    gridData = new GridData(GridData.FILL_HORIZONTAL);
    gridData.verticalIndent=10;
    link_label.setLayoutData(gridData);

    final Composite gRadio = new Composite(rootPanel, SWT.NULL);
    gridData = new GridData(GridData.FILL_HORIZONTAL);
      gridData.verticalIndent=10;
    gRadio.setLayoutData(gridData);
    layout = new GridLayout();
    layout.numColumns = 1;
    gRadio.setLayout( layout );


    Button off_button = new Button (gRadio, SWT.RADIO);
    Messages.setLanguageText(off_button, "beta.wizard.off");
    final Button on_button = new Button (gRadio, SWT.RADIO);
    Messages.setLanguageText(on_button, "beta.wizard.on");
   
    SelectionAdapter l = new SelectionAdapter()
      {
        public void
        widgetSelected(
          SelectionEvent arg0 )
        {
          wizard.setBetaEnabled( on_button.getSelection());
        }
      };
    off_button.addSelectionListener(l);
    on_button.addSelectionListener(l);
   
    on_button.setSelection( wizard.getBetaEnabled());
    off_button.setSelection( !wizard.getBetaEnabled());

    LinkLabel forum = new LinkLabel( rootPanel, "beta.wizard.forum", MessageText.getString( "beta.wizard.forum.url" ));
    Label forum_label = link.getlabel();
   
    gridData = new GridData(GridData.FILL_HORIZONTAL);
    gridData.verticalIndent=10;
    forum_label.setLayoutData(gridData);
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

          new String[] { param1, param2 } ));

      return cSection;
    }
   
    new LinkLabel(cSection, gridData, CFG_PREFIX
        + "info.link", MessageText.getString(CFG_PREFIX + "url"));

    ///////////////////////   ADVANCED SOCKET SETTINGS GROUP //////////
   
    Group gSocket = new Group(cSection, SWT.NULL);
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

      http_group.setLayoutData(gridData);

      label = new Label(http_group, SWT.WRAP);
      Messages.setLanguageText(label, CFG_PREFIX + "group.http.info");

      new LinkLabel(
          http_group,
          "ConfigView.label.please.visit.here",
          "http://wiki.vuze.com/w/HTTP_Seeding");

      final BooleanParameter enable_http =
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

    gridData.horizontalSpan = 2;
    linfo.setLayoutData(gridData);
   
    gridData = new GridData();
    gridData.horizontalSpan = 2;
    new LinkLabel(cSection, gridData, "ConfigView.label.please.visit.here",
        "http://wiki.vuze.com/w/Auto_Speed");

   
    String[]  units = { DisplayFormatters.getRateUnit( DisplayFormatters.UNIT_KB )};
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

    layout.marginWidth = 0;
    layout.numColumns = 2;
    cArea.setLayout(layout);
    cArea.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
   
    new LinkLabel(cArea, LBLKEY_PREFIX + "version.info.link",
        "http://wiki.vuze.com/w/Version.azureusplatform.com");

    if (!Constants.isOSX) {

      BooleanParameter confirm = new BooleanParameter(cArea,
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.components.LinkLabel

      label.setText(MessageText.getString("Utils.link.visit") + ":");

      gridData = new GridData();
      gridData.horizontalIndent = 10;
      gridData.horizontalSpan = 2;
      new LinkLabel(cWiki, gridData, "ConfigView.section.transfer.speeds.wiki",
          "http://wiki.vuze.com/w/Good_settings");
    }

    if ( userMode > 1 ){
   
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.