Package com.jbidwatcher.ui.util

Examples of com.jbidwatcher.ui.util.JBEditorPane


    tp.add(new JLabel("Windows command:"));
    tp.add(windowsBrowserLaunchCommand);
    if(!JConfig.getOS().equals("Linux") && !JConfig.getOS().equals("Windows")) {
      String otherPlatformNotice = "<html><body><div style=\"margin-left: 10px; font-size: 0.96em;\"><i>To set the browser for other platforms, go to the Advanced tab, and set<br>" +
          "a key of: </i><code>browser.launch." + JConfig.getOS() + "</code><i> to a value of whatever the path to your browser is.</i></div></body></html>";
      JBEditorPane jep = OptionUI.getHTMLLabel(otherPlatformNotice);
      tp.add(jep);
    }
    return(tp);
  }
View Full Code Here


    siteBox.add(Box.createHorizontalGlue());
    tp.add(siteBox);
    String nonUSNotice = "<html><body><div style=\"margin-left: 7px; font-size: 0.96em;\"<i>If this is checked, JBidwatcher will " +
                         "use <b>ebay.co.uk</b> as the source of auctions<br>and destination for placing bids. Otherwise, <b>ebay.com</b> " +
                         "will be used.";
    JBEditorPane jep = OptionUI.getHTMLLabel(nonUSNotice);
    tp.add(jep);

    return(tp);
  }
View Full Code Here

      jp.add(panelPack(buildBrowseTargetPanel()), BorderLayout.CENTER);
      add(jp, BorderLayout.NORTH);
      add(panelPack(buildCheckboxPanel()), BorderLayout.CENTER);
      String searchNotice = "<html><body><div style=\"margin-left: 10px; font-size: 0.96em;\"><i>To have JBidwatcher regularly retrieve auctions listed on your My eBay " +
          "page,<br>go to the <a href=\"/SEARCH\">Search Manager</a> and enable the search also named 'My eBay'.</i></div></body></html>";
      JBEditorPane jep = OptionUI.getHTMLLabel(searchNotice);
      add(jep, BorderLayout.SOUTH);
    } else {
      mDisplayName += " (quick)";
      add(jp, BorderLayout.NORTH);
      JPanel welcomeMessage = new JPanel();
View Full Code Here

TOP

Related Classes of com.jbidwatcher.ui.util.JBEditorPane

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.