Searched defs:background (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c1602 png_color_16 background; local
1653 * arbitrary RGB values for background when we have transparency, and
1654 * so it is easy to determine the RGB values of the background color
1659 background.index = buf[0];
1669 background.red = (png_uint_16)png_ptr->palette[buf[0]].red;
1670 background.green = (png_uint_16)png_ptr->palette[buf[0]].green;
1671 background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue;
1675 background.red = background.green = background
[all...]
H A Dpngtest.c1097 png_color_16p background; local
1099 if (png_get_bKGD(read_ptr, read_info_ptr, &background))
1101 png_set_bKGD(write_ptr, write_info_ptr, background);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXComponentPeer.java96 Color background; field in class:XComponentPeer
143 background = target.getBackground();
678 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Set background to " + c);
680 background = c;
929 // for foreground and background; then multiply the foreground
962 * instead of the background color set by Component.setBackground().
1063 // paint the background slightly darker
1077 // paint the thumb and arrows in the normal background color
1291 return background;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAccessor.java68 * Sets whether the native background erase for a component
73 * Indicates whether the native background erase for a
214 * Gets the background color of this component.
219 * Sets the background of this component to the specified color.
221 void setBackground(Component comp, Color background); argument
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java113 * See the background property definition in CSS2.
117 * See the background property definition in CSS2.
123 public void setBackground(String background) argument
127 * See the background-attachment property definition in CSS2.
131 * See the background-attachment property definition in CSS2.
141 * See the background-color property definition in CSS2.
145 * See the background-color property definition in CSS2.
155 * See the background-image property definition in CSS2.
159 * See the background-image property definition in CSS2.
169 * See the background
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java262 * The background color for this component.
263 * <code>background</code> can be <code>null</code>.
269 Color background; field in class:Component
833 // Whether this Component has had the background erase flag
960 return comp.background;
962 public void setBackground(Component comp, Color background) {
963 comp.background = background;
1771 * Gets the background color of this component.
1772 * @return this component's background colo
[all...]

Completed in 375 milliseconds

12