Searched defs:raised (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java440 * @param raised a boolean that determines whether the rectangle
441 * appears to be raised above the surface
446 boolean raised) {
452 setColor(raised ? brighter : darker);
457 setColor(raised ? darker : brighter);
477 * @param raised a boolean value that determines whether the
478 * rectangle appears to be raised above the surface
483 boolean raised) {
489 if (!raised) {
495 setColor(raised
445 draw3DRect(int x, int y, int width, int height, boolean raised) argument
482 fill3DRect(int x, int y, int width, int height, boolean raised) argument
[all...]
H A DGraphics.java522 * @param raised a boolean that determines whether the rectangle
523 * appears to be raised above the surface
528 boolean raised) {
533 setColor(raised ? brighter : darker);
536 setColor(raised ? darker : brighter);
552 * @param raised a boolean value that determines whether the
553 * rectangle appears to be raised above the surface
558 boolean raised) {
563 if (!raised) {
567 setColor(raised
527 draw3DRect(int x, int y, int width, int height, boolean raised) argument
557 fill3DRect(int x, int y, int width, int height, boolean raised) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java490 * @param raised a boolean that determines whether the rectangle
491 * appears to be raised above the surface
496 boolean raised) {
497 g.draw3DRect(x, y, width, height, raised);
510 * @param raised a boolean value that determines whether the
511 * rectangle appears to be raised above the surface
516 boolean raised) {
517 g.fill3DRect(x, y, width, height, raised);
495 draw3DRect(int x, int y, int width, int height, boolean raised) argument
515 fill3DRect(int x, int y, int width, int height, boolean raised) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseMenuWindow.java855 * Draws raised or sunken rectangle on specified graphics
861 * @param raised true to draw raised rectangle, false to draw sunken
863 void draw3DRect(Graphics g, int x, int y, int width, int height, boolean raised) { argument
868 g.setColor(raised ? getLightShadowColor() : getDarkShadowColor());
871 g.setColor(raised ? getDarkShadowColor() : getLightShadowColor());
H A DXComponentPeer.java979 int x, int y, int w, int h, boolean raised)
982 g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
984 g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
990 int x, int y, int width, int height, boolean raised)
993 g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
996 g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
1009 int x, int y, int w, int h, boolean raised)
1015 g.setColor(raised ? highlight : shadow);
1017 g.setColor(raised ? shadow : highlight);
1024 boolean raised) {
978 draw3DOval(Graphics g, Color colors[], int x, int y, int w, int h, boolean raised) argument
989 draw3DRect(Graphics g, Color colors[], int x, int y, int width, int height, boolean raised) argument
1008 draw3DOval(Graphics g, Color bg, int x, int y, int w, int h, boolean raised) argument
1022 draw3DRect(Graphics g, Color bg, int x, int y, int width, int height, boolean raised) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java544 boolean raised) {
551 " Raised bezel: " + raised);
557 debugGraphics.draw3DRect(x, y, width, height, raised);
566 graphics.draw3DRect(x, y, width, height, raised);
572 graphics.draw3DRect(x, y, width, height, raised);
579 boolean raised) {
586 " Raised bezel: " + raised);
592 debugGraphics.fill3DRect(x, y, width, height, raised);
601 graphics.fill3DRect(x, y, width, height, raised);
607 graphics.fill3DRect(x, y, width, height, raised);
543 draw3DRect(int x, int y, int width, int height, boolean raised) argument
578 fill3DRect(int x, int y, int width, int height, boolean raised) argument
[all...]

Completed in 47 milliseconds