diff options
author | wolfsuit <wolfsuit> | 2004-02-16 00:42:33 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2004-02-16 00:42:33 (GMT) |
commit | bd2e07339a6724dce174ffd6cbd6b66677db3f2f (patch) | |
tree | 12bebf3e6d48b35ab147bf17d2c87861606f8460 /macosx/tkMacOSXColor.c | |
parent | da1ae8f179cd0cef93eef9f5ff61ea47d54340af (diff) | |
download | tk-bd2e07339a6724dce174ffd6cbd6b66677db3f2f.zip tk-bd2e07339a6724dce174ffd6cbd6b66677db3f2f.tar.gz tk-bd2e07339a6724dce174ffd6cbd6b66677db3f2f.tar.bz2 |
Backport Mac OS X specific fixes from TOT. See ChangeLog for details.
In tk_getOpenFile filters, handle the case where you have a Macintosh
file type and the files have no filetype.
Fix various formatting nits.
Diffstat (limited to 'macosx/tkMacOSXColor.c')
-rw-r--r-- | macosx/tkMacOSXColor.c | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/macosx/tkMacOSXColor.c b/macosx/tkMacOSXColor.c index 492f098..d634bdd 100644 --- a/macosx/tkMacOSXColor.c +++ b/macosx/tkMacOSXColor.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXColor.c,v 1.2 2002/08/31 06:12:29 das Exp $ + * RCS: @(#) $Id: tkMacOSXColor.c,v 1.2.2.1 2004/02/16 00:42:34 wolfsuit Exp $ */ #include <tkColor.h> @@ -330,8 +330,9 @@ TkpGetColorByValue( * GetControlPartColor -- * * Given a part number this function will return the standard - * system default color for that part. It does this by looking - * in the system's 'cctb' resource. + * system default color for that part. On MacOS X this uses the + * Theme Brushes to find the active color, though for now, only + * the "Text Color" is supported. * * Results: * True if a color is found, false otherwise. @@ -348,24 +349,21 @@ GetControlPartColor( short part, /* Part code. */ RGBColor *macColor) /* Pointer to Mac color. */ { -/* Stubbed out for OS X - short index; - CCTabHandle ccTab; - - if (defaultAuxCtlHandle == NULL) { - GetAuxiliaryControlRecord(NULL, &defaultAuxCtlHandle); - } - ccTab = (**defaultAuxCtlHandle).acCTable; - if(ccTab && (ResError() == noErr)) { - for(index = 0; index <= (**ccTab).ctSize; index++) { - if((**ccTab).ctTable[index].value == part) { - *macColor = (**ccTab).ctTable[index].rgb; - return true; + int retVal = false; + OSErr err; + + switch (part) { + case cTextColor: + err = GetThemeTextColor(kThemeTextColorPushButtonActive, 32, + true, macColor); + if (err == noErr) { + retVal = true; } - } + break; + default: + retVal = false; } -*/ - return false; + return retVal; } /* |