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

📄 playbutton.java

📁 sound recorder which supports .wav format files
💻 JAVA
字号:
package com.vimas.interfaceapplet.buttons;

import java.awt.*;
/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2004</p>
 * <p>Company: Vimas technologies</p>
 * @author miha
 * @version 1.0
 */

public class PlayButton extends EmptyButton
{
  public PlayButton(int param)
  { super(param); }
//******************************************************************************
  protected void drawMyImage(Graphics g, int param)
  {
    if(isEnabled)g.setColor(Color.green);
    int x1 = (int) param / 4;
    int[] x = new int[]
        {
        x1, x1, 3 * x1};
    int[] y = new int[]
        {
        x1-2, 3 * x1, 2 * x1-1};
    g.fillPolygon(x, y, 3);

  }
}

⌨️ 快捷键说明

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