Lines Matching defs:opacity
130 * Returns whether the windowing system supports changing the opacity
145 * Set the opacity of the window. The opacity is at the range [0..1].
146 * Note that setting the opacity level of 0 may or may not disable
155 * when setting the opacity value < 1.0f. Otherwise
158 * @param window the window to set the opacity level to
159 * @param opacity the opacity level to set to the window
161 * @throws IllegalArgumentException if the opacity is out of
164 * and the opacity is less than 1.0f
168 public static void setWindowOpacity(Window window, float opacity) {
174 AWTAccessor.getWindowAccessor().setOpacity(window, opacity);
178 * Get the opacity of the window. If the opacity has not
181 * @param window the window to get the opacity level from