Examples of viewURL()


Examples of com.aelitis.azureus.ui.UIFunctions.viewURL()

              try {
                String type = message.substring(2, 3);
                String url = message.substring(4);
                UIFunctions uif = UIFunctionsManager.getUIFunctions();
                if (uif != null) {
                  uif.viewURL(url, null, 0.9, 0.9, true, type.equals("1"));
                }
              } catch (Throwable t) {
                Logger.log( new LogEvent( LogIDs.LOGGER, "URL message failed", t  ));
              }
              // mark as complete even if errored
View Full Code Here

Examples of com.aelitis.azureus.ui.UIFunctions.viewURL()

    }

    AEThread2 thread = new AEThread2("show browser " + url, true) {
      public void run() {
        if (w == 0 && target != null) {
          functions.viewURL(url, target, sourceRef);
        } else {
          functions.viewURL(url, target, w, h, allowResize, false);
        }
        message.complete(false, true, null);
      }
View Full Code Here

Examples of com.aelitis.azureus.ui.UIFunctions.viewURL()

    AEThread2 thread = new AEThread2("show browser " + url, true) {
      public void run() {
        if (w == 0 && target != null) {
          functions.viewURL(url, target, sourceRef);
        } else {
          functions.viewURL(url, target, w, h, allowResize, false);
        }
        message.complete(false, true, null);
      }
    };
    thread.start();
View Full Code Here

Examples of com.aelitis.azureus.ui.swt.UIFunctionsSWT.viewURL()

            if (uif != null) {
              String target = hitUrl.target;
              if (target == null) {
                target = ContentNetworkUtils.getTarget(entry.getContentNetwork());
              }
              uif.viewURL(hitUrl.url, target, "column.activity.action");
              return;
            }
          }
        }
        Object ds = event.cell.getDataSource();
View Full Code Here

Examples of com.aelitis.azureus.ui.swt.UIFunctionsSWT.viewURL()

            if (uif != null) {
              String target = hitUrl.target;
              if (target == null) {
                target = ContentNetworkUtils.getTarget(entry.getContentNetwork());
              }
              uif.viewURL(hitUrl.url, target, "column.activity.text");
              return;
            }
          }
        }
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.