Package org.pentaho.reporting.engine.classic.core.modules.gui.common

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.common.DefaultIconTheme


    {
      iconTheme = (IconTheme) maybeTheme;
    }
    else
    {
      iconTheme = new DefaultIconTheme();
    }
    iconTheme.initialize(config);
    return iconTheme;
  }
View Full Code Here


  private boolean paginated;
  private PropertyChangeSupport propertyChangeSupport;

  protected AbstractGuiContext()
  {
    this.iconTheme = new DefaultIconTheme();
    this.propertyChangeSupport = new PropertyChangeSupport(this);
  }
View Full Code Here

  private IconTheme iconTheme;
  private StatusType statusType;

  public JStatusBar()
  {
    this(new DefaultIconTheme());
  }
View Full Code Here

    /**
     * Default constructor.
     */
    public AboutAction()
    {
      final IconTheme iconTheme = new DefaultIconTheme();
      this.putValue(Action.NAME, resources.getString("action.about.name"));
      this.putValue(Action.SHORT_DESCRIPTION, resources.getString("action.about.description"));
      this.putValue(ActionDowngrade.MNEMONIC_KEY,
          resources.getMnemonic("action.about.mnemonic"));
      this.putValue(Action.SMALL_ICON, iconTheme.getSmallIcon(Locale.getDefault(), "action.about.small-icon"));
      this.putValue("ICON24", iconTheme.getLargeIcon(Locale.getDefault(), "action.about.icon"));
    }
View Full Code Here

  private boolean paginated;
  private PropertyChangeSupport propertyChangeSupport;

  protected AbstractGuiContext()
  {
    this.iconTheme = new DefaultIconTheme();
    this.propertyChangeSupport = new PropertyChangeSupport(this);
  }
View Full Code Here

  private IconTheme iconTheme;
  private StatusType statusType;

  public JStatusBar()
  {
    this(new DefaultIconTheme());
  }
View Full Code Here

    /**
     * Default constructor.
     */
    public AboutAction()
    {
      final IconTheme iconTheme = new DefaultIconTheme();
      this.putValue(Action.NAME, resources.getString("action.about.name"));
      this.putValue(Action.SHORT_DESCRIPTION, resources.getString("action.about.description"));
      this.putValue(Action.MNEMONIC_KEY,
          resources.getMnemonic("action.about.mnemonic"));
      this.putValue(Action.SMALL_ICON, iconTheme.getSmallIcon(Locale.getDefault(), "action.about.small-icon"));
      this.putValue("ICON24", iconTheme.getLargeIcon(Locale.getDefault(), "action.about.icon"));
    }
View Full Code Here

    {
      iconTheme = (IconTheme) maybeTheme;
    }
    else
    {
      iconTheme = new DefaultIconTheme();
    }
    iconTheme.initialize(config);
    return iconTheme;
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.gui.common.DefaultIconTheme

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.