From 7c92d5ff0643958336782e2069edc7bbe8f71d49 Mon Sep 17 00:00:00 2001 From: Silenio Quarti Date: Mon, 11 Feb 2013 15:27:26 -0500 Subject: Bug 181592 - [Widgets] Need a color constant for active and inactive hyperlink colors --- .../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java | 7 +++++++ .../Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java | 1 + 2 files changed, 8 insertions(+) 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 971bc52d9a..3171f40964 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 @@ -3168,6 +3168,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 042a3ec9eb..e836f3bbab 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; -- cgit