[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view View.java,1.21,1.22
Status: Pre-Alpha
Brought to you by:
henryml
From: Nordholt <nor...@us...> - 2005-11-23 19:05:22
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25954 Modified Files: View.java Log Message: added support for customizable colors Index: View.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** View.java 17 Nov 2005 18:14:00 -0000 1.21 --- View.java 23 Nov 2005 19:05:14 -0000 1.22 *************** *** 42,46 **** /** the background color */ ! public static final float[] BACKGROUND_COLOR = new float[] {1.0f, 1.0f, 1.0f}; /** the std line color*/ --- 42,46 ---- /** the background color */ ! public static final float[] BACKGROUND_COLOR = new float[] {1.0f, 1.0f, 1.0f, 0.0f}; /** the std line color*/ *************** *** 278,283 **** /** ! * De selects the currently selected label. */ public void deSelectLabel(); } --- 278,299 ---- /** ! * Deselects the currently selected label. */ public void deSelectLabel(); + + /** + * Sets the background color + * @param color the color. + */ + public void setBGColor(float[] color); + /** + * Sets the line color + * @param color the color. + */ + public void setLineColor(float[] color); + /** + * Sets the grid color + * @param color the color. + */ + public void setGridColor(float[] color); } |