Package com.aelitis.azureus.ui

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


    }

    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

    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

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.