📄 playbutton.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 + -