Package jetbrains.communicator.util.icons

Examples of jetbrains.communicator.util.icons.CompositeIcon


      actionGroup = new DefaultActionGroup();
    }

    myActionGroup = actionGroup;

    CompositeIcon icon = new CompositeIcon();

    icon.addIcon(buttonIcon);
    if (hasSeveralActions()) {

      icon.addIcon(AllIcons.General.ComboArrow);
      setModel(new MyButtonModel());
    }

    setIcon(icon);
    setMargin(new Insets(0, 0, 0, 0));
View Full Code Here


  }

  protected abstract void outputMessage(ConsoleView consoleView);

  public void customizeTreeNode(SimpleColoredComponent label, int refreshCounter) {
    CompositeIcon newIcon = new CompositeIcon(label.getIcon(), getMessageIcon(refreshCounter));
    label.setIcon(newIcon);
  }
View Full Code Here

TOP

Related Classes of jetbrains.communicator.util.icons.CompositeIcon

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.