All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.LabComboBoxUI Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor;

import editor.util.EditorUtilities;
import editor.util.LabToolbarButton;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicComboBoxUI;

/**
 */
public class LabComboBoxUI extends BasicComboBoxUI
{
  public static ComponentUI createUI( JComponent c )
  {
    return new LabComboBoxUI();
  }

  protected JButton createArrowButton()
  {
    JButton button = new LabToolbarButton( EditorUtilities.loadIcon( "images/tree_expanded.png" ) );
    button.setName( "ComboBox.arrowButton" );
    return button;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy