summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXColor.c
diff options
context:
space:
mode:
authorculler <culler>2020-07-31 17:09:38 (GMT)
committerculler <culler>2020-07-31 17:09:38 (GMT)
commitec1fbf2bb9c415c33579658a7a0ebfffcddc19d1 (patch)
tree9da6854cde5b13496386e02d960385db20676d2d /macosx/tkMacOSXColor.c
parent41650692a4d8914df2e78b8bb957e16676cb12e8 (diff)
downloadtk-ec1fbf2bb9c415c33579658a7a0ebfffcddc19d1.zip
tk-ec1fbf2bb9c415c33579658a7a0ebfffcddc19d1.tar.gz
tk-ec1fbf2bb9c415c33579658a7a0ebfffcddc19d1.tar.bz2
Tidying up a few loose ends.
Diffstat (limited to 'macosx/tkMacOSXColor.c')
-rw-r--r--macosx/tkMacOSXColor.c105
1 files changed, 76 insertions, 29 deletions
diff --git a/macosx/tkMacOSXColor.c b/macosx/tkMacOSXColor.c
index e67cbf7..e576dd7 100644
--- a/macosx/tkMacOSXColor.c
+++ b/macosx/tkMacOSXColor.c
@@ -21,9 +21,14 @@
static Tcl_HashTable systemColors;
static int numSystemColors;
static int rgbColorIndex;
+static int controlAccentIndex;
+static Bool useFakeAccentColor = NO;
static SystemColorDatum **systemColorIndex;
static NSAppearance *darkAqua;
static NSAppearance *lightAqua;
+static NSColorSpace* sRGB = NULL;
+static CGFloat windowBackground[4] =
+ {236.0 / 255, 236.0 / 255, 236.0 / 255, 1.0};
void initColorTable()
{
@@ -47,7 +52,11 @@ void initColorTable()
encoding:NSUTF8StringEncoding];
SEL colorSelector = NSSelectorFromString(colorName);
if (![NSColor respondsToSelector:colorSelector]) {
- continue;
+ if ([colorName isEqualToString:@"controlAccentColor"]) {
+ useFakeAccentColor = YES;
+ } else {
+ continue;
+ }
}
entry->selector = [colorName retain];
}
@@ -74,12 +83,15 @@ void initColorTable()
}
/*
- * Remember the index of the rgbColor entry,
+ * Remember the indexes of some special entries.
*/
hPtr = Tcl_FindHashEntry(&systemColors, "Pixel");
entry = (SystemColorDatum *) Tcl_GetHashValue(hPtr);
rgbColorIndex = entry->index;
+ hPtr = Tcl_FindHashEntry(&systemColors, "ControlAccentColor");
+ entry = (SystemColorDatum *) Tcl_GetHashValue(hPtr);
+ controlAccentIndex = entry->index;
}
/*
@@ -155,7 +167,6 @@ unsigned long TkMacOSXClearPixel(
* Extract a SystemColorDatum from the table.
*
* Results:
-
* A pointer to a SystemColorDatum, or NULL if the pixel value is
* invalid.
*
@@ -183,40 +194,27 @@ GetEntryFromPixel(
}
}
+
/*
*----------------------------------------------------------------------
*
- * SetCGColorComponents --
- *
- * Set the components of a CGColorRef from an XColor pixel value and a
- * system color map entry. The pixel value is only used in the case where
- * the color is of type rgbColor. In that case the normalized XColor RGB
- * values are copied into the CGColorRef.
+ * GetRGB --
*
- * In 64 bit macOS systems there are no HITheme functions which convert
- * HIText or HIBackground colors to CGColors. (GetThemeTextColor was
- * removed, and it was never possible with backgrounds.) If we get one of
- * these we return black.
+ * Given a SystemColorDatum and a pointer to an array of 4 CGFloats, store
+ * the associated RGBA color values in the array. In the case of the
+ * RGBColor datum, the unsigned long pixel value containing the RGB values
+ * must also be provided as the pixel parameter. Otherwise the pixel
+ * parameter is ignored.
*
* Results:
- * True if the function succeeds, false otherwise.
+ * None
*
* Side effects:
- * None.
+ * The array rgba is filled in.
*
*----------------------------------------------------------------------
*/
-#if MAC_OS_X_VERSION_MAX_ALLOWED >= 101400
- #define CONTROL_ACCENT_COLOR controlAccentColor
-#else
- #define CONTROL_ACCENT_COLOR colorForControlTint:[NSColor currentControlTint]
-#endif
-
-static NSColorSpace* sRGB = NULL;
-static CGFloat windowBackground[4] =
- {236.0 / 255, 236.0 / 255, 236.0 / 255, 1.0};
-
static void
GetRGBA(
SystemColorDatum *entry,
@@ -242,7 +240,7 @@ GetRGBA(
*/
if ([NSApp macOSVersion] < 101400) {
- for (int i=0; i<3; i++) {
+ for (int i = 0; i < 3; i++) {
rgba[i] = windowBackground[i];
}
} else {
@@ -260,15 +258,65 @@ GetRGBA(
}
break;
case semantic:
- color = [[NSColor valueForKey:entry->selector] colorUsingColorSpace:sRGB];
+ if (entry->index == controlAccentIndex && useFakeAccentColor) {
+ color = [NSColor colorForControlTint: [NSColor currentControlTint]];
+ } else {
+ color = [[NSColor valueForKey:entry->selector] colorUsingColorSpace:sRGB];
+ }
[color getComponents: rgba];
break;
case clearColor:
rgba[3] = 0;
+ case HIText:
+#ifdef __LP64__
+ color = [[NSColor textColor] colorUsingColorSpace:sRGB];
+ [color getComponents: rgba];
+#else
+ {
+ RGBColor rgb;
+ err = GetThemeTextColor(kThemeTextColorPushButtonActive, 32,
+ true, &rgb);
+ if (err == noErr) {
+ rgba[0] = (CGFLoat) rgb.red / 65535;
+ rgba[1] = (CGFLoat) rgb.green / 65535;
+ rgba[2] = (CGFLoat) rgb.blue / 65535;
+ }
+ }
+#endif
+ break;
+ case HIBackground:
+ color = [[NSColor windowBackgroundColor] colorUsingColorSpace:sRGB];
+ [color getComponents: rgba];
+ break;
default:
break;
}
}
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * SetCGColorComponents --
+ *
+ * Set the components of a CGColorRef from an XColor pixel value and a
+ * system color map entry. The pixel value is only used in the case where
+ * the color is of type rgbColor. In that case the normalized XColor RGB
+ * values are copied into the CGColorRef.
+ *
+ * In 64 bit macOS systems there are no HITheme functions which convert
+ * HIText or HIBackground colors to CGColors. (GetThemeTextColor was
+ * removed, and it was never possible with backgrounds.) On 64-bit systems
+ * we replace all HIText colors by systemTextColor and all HIBackground
+ * colors by systemWindowBackgroundColor.
+ *
+ * Results:
+ * True if the function succeeds, false otherwise.
+ *
+ * Side effects:
+ * None.
+ *
+ *----------------------------------------------------------------------
+ */
static Bool
SetCGColorComponents(
@@ -685,10 +733,10 @@ TkpGetColor(
break;
}
GetRGBA(entry, p.ulong, rgba);
+ [NSAppearance setCurrentAppearance:savedAppearance];
color.red = rgba[0] * 65535.0;
color.green = rgba[1] * 65535.0;
color.blue = rgba[2] * 65535.0;
- [NSAppearance setCurrentAppearance:savedAppearance];
goto validXColor;
} else if (SetCGColorComponents(entry, 0, &c)) {
const size_t n = CGColorGetNumberOfComponents(c);
@@ -709,7 +757,6 @@ TkpGetColor(
CGColorRelease(c);
goto validXColor;
}
- CGColorRelease(c);
}
}
if (TkParseColor(display, colormap, name, &color) == 0) {