diff options
| author | Silenio Quarti | 2013-02-11 20:27:26 +0000 |
|---|---|---|
| committer | Carolyn MacLeod | 2013-03-22 18:42:35 +0000 |
| commit | b2af863631ea604a1b66c934012588a42a887494 (patch) | |
| tree | 138b6b0683707ce2c156d9c6f55acacf41faf20d | |
| parent | 676c095401471e845c1e869093fed318b96987ae (diff) | |
| download | eclipse.platform.swt-b2af863631ea604a1b66c934012588a42a887494.tar.gz eclipse.platform.swt-b2af863631ea604a1b66c934012588a42a887494.tar.xz eclipse.platform.swt-b2af863631ea604a1b66c934012588a42a887494.zip | |
Bug 181592 - [Widgets] Need a color constant for active and inactive hyperlink colors
| -rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java | 7 | ||||
| -rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java index d77401971f..c5936f37b9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java @@ -3156,6 +3156,13 @@ public class SWT { * System color used to paint inactive title background gradient (value is 35). */ public static final int COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT = 35; + + /** + * System color used to paint link text (value is 36). + * + * @since 4.3 + */ + public static final int COLOR_LINK_FOREGROUND = 36; /** * Draw constant indicating whether the drawing operation diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java index 230c484ca0..6c436a6f54 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java @@ -2363,6 +2363,7 @@ public Color getSystemColor (int id) { case SWT.COLOR_LIST_BACKGROUND: pixel = OS.GetSysColor (OS.COLOR_WINDOW); break; case SWT.COLOR_LIST_SELECTION: pixel = OS.GetSysColor (OS.COLOR_HIGHLIGHT); break; case SWT.COLOR_LIST_SELECTION_TEXT: pixel = OS.GetSysColor (OS.COLOR_HIGHLIGHTTEXT);break; + case SWT.COLOR_LINK_FOREGROUND: pixel = OS.GetSysColor (OS.COLOR_HOTLIGHT);break; case SWT.COLOR_INFO_FOREGROUND: pixel = OS.GetSysColor (OS.COLOR_INFOTEXT); break; case SWT.COLOR_INFO_BACKGROUND: pixel = OS.GetSysColor (OS.COLOR_INFOBK); break; case SWT.COLOR_TITLE_FOREGROUND: pixel = OS.GetSysColor (OS.COLOR_CAPTIONTEXT); break; |
