Searched defs:theme (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DThemeReader.java77 Long theme = widgetToTheme.get(widget);
78 if (theme == null) {
84 theme = openTheme(widget.substring(i+2));
87 theme = openTheme(widget);
89 widgetToTheme.put(widget, theme);
91 return theme;
94 // returns theme value
98 Long theme = widgetToTheme.get(widget);
99 if (theme == null) {
103 theme
112 paintBackground(int[] buffer, long theme, int part, int state, int x, int y, int w, int h, int stride) argument
125 getThemeMargins(long theme, int part, int state, int marginType) argument
137 isThemePartDefined(long theme, int part, int state) argument
148 getColor(long theme, int part, int state, int property) argument
160 getInt(long theme, int part, int state, int property) argument
172 getEnum(long theme, int part, int state, int property) argument
184 getBoolean(long theme, int part, int state, int property) argument
197 getSysBoolean(long theme, int property) argument
208 getPoint(long theme, int part, int state, int property) argument
220 getPosition(long theme, int part, int state, int property) argument
233 getPartSize(long theme, int part, int state) argument
246 closeTheme(long theme) argument
250 getThemeTransitionDuration(long theme, int part, int stateFrom, int stateTo, int propId) argument
264 getThemeBackgroundContentMargins(long theme, int part, int state, int boundingWidth, int boundingHeight) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalLookAndFeel.java63 * {@code MetalTheme}. The default theme is {@code OceanTheme}. The theme
65 * for details on changing the theme. Prior to 1.5 the default
66 * theme was {@code DefaultMetalTheme}. The system property
153 * Returns true if the high contrast theme should be used as the default
154 * theme.
301 * <td>{@code theme.getDesktopColor()}
304 * <td>{@code theme.getWindowTitleBackground()}
307 * <td>{@code theme.getWindowTitleForeground()}
310 * <td>{@code theme
1627 setCurrentTheme(MetalTheme theme) argument
2238 private MetalTheme theme; field in class:MetalLookAndFeel.FontActiveValue
2240 FontActiveValue(MetalTheme theme, int type) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp50 typedef HANDLE HTHEME; // handle to a section of theme data for class
293 // We need to set the Window theme on the same theme that we opened it with.
307 (JNIEnv *env, jclass klass, jlong theme) {
309 HRESULT hres = CloseThemeData((HTHEME)theme);
408 (JNIEnv *env, jclass klass, jintArray array, jlong theme, jint part, jint state,
417 HTHEME hTheme = (HTHEME) theme;
510 (JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint property) {
512 HTHEME hTheme = (HTHEME) theme;
534 (JNIEnv *env, jclass klass, jlong theme, jin
306 Java_sun_awt_windows_ThemeReader_closeTheme(JNIEnv *env, jclass klass, jlong theme) argument
407 Java_sun_awt_windows_ThemeReader_paintBackground(JNIEnv *env, jclass klass, jintArray array, jlong theme, jint part, jint state, jint x, jint y, jint w, jint h, jint stride) argument
509 Java_sun_awt_windows_ThemeReader_getThemeMargins(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint property) argument
533 Java_sun_awt_windows_ThemeReader_isThemePartDefined(JNIEnv *env, jclass klass, jlong theme, jint part, jint state) argument
544 Java_sun_awt_windows_ThemeReader_getColor(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint type) argument
590 Java_sun_awt_windows_ThemeReader_getInt(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint prop) argument
607 Java_sun_awt_windows_ThemeReader_getEnum(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint prop) argument
623 Java_sun_awt_windows_ThemeReader_getBoolean(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint prop) argument
639 Java_sun_awt_windows_ThemeReader_getSysBoolean(JNIEnv *env, jclass klass, jlong theme, jint prop) argument
657 Java_sun_awt_windows_ThemeReader_getPoint(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint prop) argument
700 Java_sun_awt_windows_ThemeReader_getPosition(JNIEnv *env, jclass klass, jlong theme, jint part, jint state, jint prop) argument
746 Java_sun_awt_windows_ThemeReader_getPartSize(JNIEnv *env, jclass klass, jlong theme, jint part, jint state) argument
809 Java_sun_awt_windows_ThemeReader_getThemeTransitionDuration(JNIEnv *env, jclass klass, jlong theme, jint part, jint stateFrom, jint stateTo, jint propId) argument
[all...]

Completed in 35 milliseconds