Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-04-05 15:26:00 +0000
committerCurtis D'Entremont2006-04-05 15:26:00 +0000
commit7971f0df2a3e5afa5e64851446484b3f1d61a693 (patch)
treed3c7346bd91b5eb5e3cfa80063589aa298184536
parenta0f45399371f352f8e1315b0f554590430aed9a9 (diff)
downloadeclipse.platform.ua-7971f0df2a3e5afa5e64851446484b3f1d61a693.tar.gz
eclipse.platform.ua-7971f0df2a3e5afa5e64851446484b3f1d61a693.tar.xz
eclipse.platform.ua-7971f0df2a3e5afa5e64851446484b3f1d61a693.zip
75128 [CheatSheets] In HighContrast Screen set up Cheat Sheets are not visiblev20060405a
-rw-r--r--org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetPage.java54
1 files changed, 43 insertions, 11 deletions
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetPage.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetPage.java
index 29bb854be..7e33b6c36 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetPage.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetPage.java
@@ -39,7 +39,8 @@ public class CheatSheetPage extends Page implements IMenuContributor {
private Color introColor;
private Color activeColor;
- private Color alternateColor;
+ private Color inactiveColor1;
+ private Color inactiveColor2;
private CheatSheet cheatSheet;
@@ -82,7 +83,7 @@ public class CheatSheetPage extends Page implements IMenuContributor {
// the intro item.
ArrayList items = cheatSheet.getItems();
for (int i = 0; i < items.size(); i++) {
- Color color = (i % 2) == 0 ? backgroundColor : alternateColor;
+ Color color = (i % 2) == 0 ? getInactiveColor1() : getInactiveColor2();
CoreItem coreItem = new CoreItem(this,
(org.eclipse.ui.internal.cheatsheets.data.Item) items
@@ -94,6 +95,14 @@ public class CheatSheetPage extends Page implements IMenuContributor {
"CheatSheetPage.createInfoArea()", "Time in CheatSheetPage.createPart(): "); //$NON-NLS-1$ //$NON-NLS-2$
}
+ private Color getInactiveColor2() {
+ return inactiveColor2;
+ }
+
+ private Color getInactiveColor1() {
+ return inactiveColor1;
+ }
+
/**
* Creates the cheatsheet's title areawhich will consists of a title and
* image.
@@ -110,15 +119,18 @@ public class CheatSheetPage extends Page implements IMenuContributor {
public void dispose() {
super.dispose();
- if (alternateColor != null)
- alternateColor.dispose();
+ if (getInactiveColor1() != null)
+ getInactiveColor1().dispose();
+ if (getInactiveColor2() != null)
+ getInactiveColor2().dispose();
if (activeColor != null)
activeColor.dispose();
if (introColor != null)
introColor.dispose();
- alternateColor = null;
+ inactiveColor1 = null;
+ inactiveColor2 = null;
activeColor = null;
introColor = null;
}
@@ -132,6 +144,11 @@ public class CheatSheetPage extends Page implements IMenuContributor {
RGB rgb;
RGB white = new RGB(255, 255, 255);
RGB black = new RGB(0, 0, 0);
+
+ if (isReverseVideo()) {
+ computeReverseVideoColors(display);
+ return;
+ }
if (toolkit.getColors().isWhiteBackground()) {
rgb = toolkit.getColors().getSystemColor(SWT.COLOR_LIST_SELECTION);
@@ -169,7 +186,7 @@ public class CheatSheetPage extends Page implements IMenuContributor {
// too dark - add 20% white
rgb = FormColors.blend(rgb, white, 80);
}
- alternateColor = new Color(display, rgb);
+ inactiveColor1 = new Color(display, rgb);
} else {
// colored background
rgb = toolkit.getColors().getSystemColor(SWT.COLOR_LIST_SELECTION);
@@ -209,11 +226,30 @@ public class CheatSheetPage extends Page implements IMenuContributor {
// white by 60%
else if (FormColors.testTwoPrimaryColors(rgb, 230, 256))
rgb = FormColors.blend(rgb, black, 40);
- alternateColor = new Color(display, rgb);
+ inactiveColor1 = new Color(display, rgb);
}
rgb = activeColor.getRGB();
rgb = FormColors.blend(rgb, white, 40);
introColor = new Color(display, rgb);
+ inactiveColor2 = new Color(display, backgroundColor.getRGB());
+ }
+
+ private void computeReverseVideoColors(Display display) {
+ Color background = toolkit.getColors().getBackground();
+ RGB white = new RGB(255, 255, 255);
+ // Create new colors, they will get disposed
+ RGB rgb = background.getRGB();
+ activeColor = new Color(display, rgb );
+ rgb = FormColors.blend(rgb, white, 85);
+ inactiveColor1 = new Color(display, rgb);
+ rgb = FormColors.blend(rgb, white, 85);
+ inactiveColor2 = new Color(display, rgb );
+ introColor = new Color(display, rgb );
+ }
+
+ private boolean isReverseVideo() {
+ Color bg = toolkit.getColors().getBackground();
+ return ((bg.getBlue() + bg.getRed() + bg.getGreen()) < 380);
}
public void initialized() {
@@ -227,10 +263,6 @@ public class CheatSheetPage extends Page implements IMenuContributor {
return activeColor;
}
- public Color getAlternateColor() {
- return alternateColor;
- }
-
public ScrolledForm getForm() {
return form;
}

Back to the top