1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// $Id: DropDownIcon.java,v 1.1 2004/11/03 18:30:04 bobtarling Exp $
/*
* DropDownIcon.java
*
* Created on 25 February 2003, 22:12
*/
package org.tigris.swidgets;
import javax.swing.ImageIcon;
/**
*
* @author Bob Tarling
*/
public class DropDownIcon extends DecoratedIcon {
private static final int[][] STANDARDBUFFER = {
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 3, 3, 0},
{0, 0, 0, 1, 1, 1, 1, 3, 3, 0, 0},
{0, 0, 0, 0, 1, 1, 3, 3, 0, 0, 0},
{0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
};
/** Creates a new instance of DropDownIcon */
DropDownIcon(ImageIcon imageIcon) {
super(imageIcon);
init(STANDARDBUFFER);
}
}
|