⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jgraphcolorchooser.java

📁 OpenJGraph是一个开源的Java库
💻 JAVA
字号:
package salvo.jesus.graph.javax.swing;

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.colorchooser.*;

/**
 * A subclass of JColorChooser that has no preview panel.
 * We may have to customize this later on to use a different color chooser.
 * There is nothing special about this class apart from removing the preview panel.
 *
 * @author  Jesus M. Salvo Jr.
 */
public class JGraphColorChooser extends JColorChooser {

  /**
   * Creates a JGraphColorChooser object that has no preview panel.
   */
  public JGraphColorChooser() {
    super();
    try {
      initJGraphColorChooser();
    }
    catch( Exception e ) {
      e.printStackTrace();
    }
  }

  /**
   * Creates a JGraphColorChooser object with the specified color
   * initially selected but has no preview panel.
   *
   * @param   initialcolor    color to be initially selected
   */
  public JGraphColorChooser( Color initialcolor ) {
    super( initialcolor );
    try {
      initJGraphColorChooser();
    }
    catch( Exception e ) {
      e.printStackTrace();
    }
  }

  /**
   * Creates a JGraphColorChooser object with the specified
   * selection model
   *
   * @param   model   ColorSelectionModel to be used
   */
  public JGraphColorChooser( ColorSelectionModel model ) {
    super( model );
    try {
      initJGraphColorChooser();
    }
    catch( Exception e ) {
      e.printStackTrace();
    }
  }

  /**
   * Called by the constructors. This method removes the preview panel.
   */
  private void initJGraphColorChooser() throws Exception {
    this.setPreviewPanel( new JPanel());
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -