diff options
author | jingham <jingham> | 2000-02-10 08:55:18 (GMT) |
---|---|---|
committer | jingham <jingham> | 2000-02-10 08:55:18 (GMT) |
commit | 824761dbcda694ee8ba6b108a373eb3c2aec026f (patch) | |
tree | f43637344ebdd7b323a38445d97180d1e32e880d /mac/tkMacScrlbr.c | |
parent | e082656eda18c1458feedf3392c25a00f88b92ef (diff) | |
download | tk-824761dbcda694ee8ba6b108a373eb3c2aec026f.zip tk-824761dbcda694ee8ba6b108a373eb3c2aec026f.tar.gz tk-824761dbcda694ee8ba6b108a373eb3c2aec026f.tar.bz2 |
Add support for Appearance Manager 1.2 Floating windows, and the new window classes in unsupported1
Diffstat (limited to 'mac/tkMacScrlbr.c')
-rw-r--r-- | mac/tkMacScrlbr.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mac/tkMacScrlbr.c b/mac/tkMacScrlbr.c index 333cc27..df030e0 100644 --- a/mac/tkMacScrlbr.c +++ b/mac/tkMacScrlbr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacScrlbr.c,v 1.3 1999/08/10 05:05:18 jingham Exp $ + * RCS: @(#) $Id: tkMacScrlbr.c,v 1.4 2000/02/10 08:56:12 jingham Exp $ */ #include "tkScrollbar.h" @@ -242,6 +242,7 @@ TkpDisplayScrollbar( if (macScrollPtr->sbHandle == NULL) { Rect r; + WindowRef frontNonFloating; r.left = r.top = 0; r.right = r.bottom = 1; @@ -252,7 +253,14 @@ TkpDisplayScrollbar( /* * If we are foremost than make us active. */ - if ((WindowPtr) destPort == FrontWindow()) { + + if (TkMacHaveAppearance() >= 0x110) { + frontNonFloating = FrontNonFloatingWindow(); + } else { + frontNonFloating = FrontWindow(); + } + + if ((WindowPtr) destPort == FrontWindow() || TkpIsWindowFloating((WindowPtr) destPort)) { macScrollPtr->macFlags |= ACTIVE; } } |