summaryrefslogtreecommitdiffstats
path: root/generic/tkUtil.c
diff options
context:
space:
mode:
authorjingham <jingham>1999-08-10 05:10:52 (GMT)
committerjingham <jingham>1999-08-10 05:10:52 (GMT)
commitb8cd6cd207680969577b6c57f6117462af60b265 (patch)
treeaaa0bf7c8010f9ae97bdfd6f3e6cef0786f41bb3 /generic/tkUtil.c
parent4904c2fefb18f2f2cc5e3e70d58e1750f52fa659 (diff)
downloadtk-b8cd6cd207680969577b6c57f6117462af60b265.zip
tk-b8cd6cd207680969577b6c57f6117462af60b265.tar.gz
tk-b8cd6cd207680969577b6c57f6117462af60b265.tar.bz2
Remove the #ifdef MAC_TCL from TkDrawInsetFocusHighlight, this knowledge is now properly in a "p" function, TkpDrawHighlightBorder.
Diffstat (limited to 'generic/tkUtil.c')
-rw-r--r--generic/tkUtil.c24
1 files changed, 7 insertions, 17 deletions
diff --git a/generic/tkUtil.c b/generic/tkUtil.c
index d9cde93..226fd86 100644
--- a/generic/tkUtil.c
+++ b/generic/tkUtil.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUtil.c,v 1.5 1999/04/21 21:53:28 rjohnson Exp $
+ * RCS: @(#) $Id: tkUtil.c,v 1.6 1999/08/10 05:10:52 jingham Exp $
*/
#include "tkInt.h"
@@ -64,22 +64,6 @@ TkDrawInsetFocusHighlight(tkwin, gc, width, drawable, padding)
{
XRectangle rects[4];
- /*
- * On the Macintosh the highlight ring needs to be "padded"
- * out by one pixel. Unfortunantly, none of the Tk widgets
- * had a notion of padding between the focus ring and the
- * widget. So we add this padding here. This introduces
- * two things to worry about:
- *
- * 1) The widget must draw the background color covering
- * the focus ring area before calling Tk_DrawFocusHighlight.
- * 2) It is impossible to draw a focus ring of width 1.
- * (For the Macintosh Look & Feel use width of 3)
- */
-#ifdef MAC_TCL
- width--;
-#endif
-
rects[0].x = padding;
rects[0].y = padding;
rects[0].width = Tk_Width(tkwin) - (2 * padding);
@@ -107,6 +91,12 @@ TkDrawInsetFocusHighlight(tkwin, gc, width, drawable, padding)
* This procedure draws a rectangular ring around the outside of
* a widget to indicate that it has received the input focus.
*
+ * This function is now deprecated. Use TkpDrawHighlightBorder instead,
+ * since this function does not handle drawing the Focus ring properly
+ * on the Macintosh - you need to know the background GC as well
+ * as the foreground since the Mac focus ring separated from the widget
+ * by a 1 pixel border.
+ *
* Results:
* None.
*