Package com.aelitis.azureus.ui

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


  }

  final static int clickDockIcon(int nextHandler, int theEvent, int userData) {
    UIFunctions uiFunctions = UIFunctionsManager.getUIFunctions();
    if (uiFunctions != null) {
      uiFunctions.bringToFront();
      return noErr;
    }
    return eventNotHandledErr;
  }
View Full Code Here


  protected void
  showMainWindow()
  {
    UIFunctions uiFunctions = UIFunctionsManager.getUIFunctions();
    if (uiFunctions != null) {
      uiFunctions.bringToFront();
    }
  }
 
  public void stopIt() {
    bContinue = false;
View Full Code Here

              context.debug("url not in whitelistL " + url);
            } else {
              // implicit bring to front
              final UIFunctions functions = UIFunctionsManager.getUIFunctions();
              if (functions != null) {
                functions.bringToFront();
              }

              // this is actually sync.. so we could add a completion listener
              // and return the boolean result if we wanted/needed
              BrowserMessageDispatcher dispatcher = context.getDispatcher();
View Full Code Here

   *
   */
  private void bringToFront() {
    final UIFunctions functions = UIFunctionsManager.getUIFunctions();
    if (functions != null) {
      functions.bringToFront();
    }
  }

  /**
   *
 
View Full Code Here

                ContentNetworkUtils.setSourceRef(args[0], "menu", false);
                mdi.showEntryByID(args[0]);

                if (uif != null) {

                  uif.bringToFront();
                }
              } else if (type == NavigationHelper.COMMAND_CONDITION_CHECK) {
              }
            }
          });
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.