Examples of CategoryAdderWindow


Examples of org.gudy.azureus2.ui.swt.CategoryAdderWindow

  public void categoryChanged(Category category) { 
  }
 
  private void addCategory() {
    CategoryAdderWindow adderWindow = new CategoryAdderWindow(SWTThread.getInstance().getDisplay());
    Category newCategory = adderWindow.getNewCategory();
    if (newCategory != null)
      assignSelectedToCategory(newCategory);
  }
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.CategoryAdderWindow

    menuItem = menuManager.addMenuItem("sidebar."
        + MultipleDocumentInterface.SIDEBAR_HEADER_TRANSFERS,
        "MyTorrentsView.menu.setCategory.add");
    menuItem.addListener(new MenuItemListener() {
      public void selected(MenuItem menu, Object target) {
        new CategoryAdderWindow(null);
      }
    });
    menuItem.addFillListener(new MenuItemFillListener() {
      public void menuWillBeShown(MenuItem menu, Object data) {
        menu.setVisible(COConfigurationManager.getBooleanParameter("Library.CatInSideBar"));
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.