diff options
author | das <das> | 2005-09-10 14:53:20 (GMT) |
---|---|---|
committer | das <das> | 2005-09-10 14:53:20 (GMT) |
commit | 772a802bd1a149cefda0f2fb72e01c827e2eec09 (patch) | |
tree | eb43350948b33779841a8e19cbb6b55c5f48f690 /unix | |
parent | 4b772de94c71a044fa1a55d3e325b99807c0ba6a (diff) | |
download | tk-772a802bd1a149cefda0f2fb72e01c827e2eec09.zip tk-772a802bd1a149cefda0f2fb72e01c827e2eec09.tar.gz tk-772a802bd1a149cefda0f2fb72e01c827e2eec09.tar.bz2 |
* macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): check if
process is in front on MouseDown, otherwise request process activation
from BringWindowForward() via new isFrontProcess param.
* macosx/tkMacOSXCarbonEvents.c (TkMacOSXInitCarbonEvents): register our
event handler on the dispatcher target for all carbon events of interest
to TkAqua; this replaces event processing directly from the event queue
and thus allows to capture events that are syntesized by Carbon and sent
directly to the dispatcher and not to the event queue.
* macosx/tkMacOSXEvent.c: remove TkMacOSXCountAndProcessMacEvents(),
rename ReceiveAndProcessEvent() to TkMacOSXReceiveAndProcessEvent().
(TkMacOSXReceiveAndProcessEvent): remove tk event processing before
sending events to the dispatcher, all events of interest are now
processed in our dispatcher target event handler.
* macosx/tkMacOSXNotify.c (CarbonEventsCheckProc): dispatch events
directly via TkMacOSXReceiveAndProcessEvent(), but dispatch no more than
four carbon events at one time to avoid starving other event sources.
* macosx/tkMacOSXEvent.c: formatting cleanup, move XSync() to XStubs,
* macosx/tkMacOSXEvent.h: removed obsolete kEventClassWish handling.
* macosx/tkMacOSXXStubs.c
* macosx/tkMacOSXEvent.h: declare macosx internal procs as MODULE_SCOPE.
* macosx/tkMacOSXEvent.c:
* macosx/tkMacOSXKeyEvent.c:
* macosx/tkMacOSXMouseEvent.c:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXButton.c: conditionalize all debug message printing to
* macosx/tkMacOSXCursor.c: stderr via TK_MAC_DEBUG define.
* macosx/tkMacOSXDebug.c:
* macosx/tkMacOSXDebug.h:
* macosx/tkMacOSXDialog.c:
* macosx/tkMacOSXEvent.c:
* macosx/tkMacOSXInit.c:
* macosx/tkMacOSXKeyEvent.c:
* macosx/tkMacOSXMenu.c:
* macosx/tkMacOSXMenubutton.c:
* macosx/tkMacOSXScale.c:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXWm.c:
* unix/configure.in: define TK_MAC_DEBUG on aqua when symbols enabled.
* unix/configure: autoconf-2.59
* unix/tkConfig.h.in: autoheader-2.59
* library/listbox.tcl: synced aqua MouseWheel bindings with
* library/scrlbar.tcl: core-8-4-branch.
* library/text.tcl:
* xlib/xcolors.c: fixed warning
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 7 | ||||
-rw-r--r-- | unix/configure.in | 5 | ||||
-rw-r--r-- | unix/tkConfig.h.in | 13 |
3 files changed, 13 insertions, 12 deletions
diff --git a/unix/configure b/unix/configure index 2ae379d..1807632 100755 --- a/unix/configure +++ b/unix/configure @@ -8238,6 +8238,13 @@ _ACEOF LIBS="$LIBS -framework Carbon -framework IOKit" CFLAGS="$CFLAGS -fpascal-strings" TK_WINDOWINGSYSTEM=AQUA + if test "${enable_symbols+set}" = set; then + +cat >>confdefs.h <<\_ACEOF +#define TK_MAC_DEBUG 1 +_ACEOF + + fi else #-------------------------------------------------------------------- # Locate the X11 header files and the X11 library archive. Try diff --git a/unix/configure.in b/unix/configure.in index cc7996a..a201158 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.110 2005/08/23 18:25:34 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.111 2005/09/10 14:53:21 das Exp $ AC_INIT([tk],[8.5]) AC_PREREQ(2.59) @@ -235,6 +235,9 @@ if test $tk_aqua = yes; then LIBS="$LIBS -framework Carbon -framework IOKit" CFLAGS="$CFLAGS -fpascal-strings" TK_WINDOWINGSYSTEM=AQUA + if test "${enable_symbols+set}" = set; then + AC_DEFINE(TK_MAC_DEBUG, 1, [Are TkAqua debug messages enabled?]) + fi else #-------------------------------------------------------------------- # Locate the X11 header files and the X11 library archive. Try diff --git a/unix/tkConfig.h.in b/unix/tkConfig.h.in index b272c02..ea53933 100644 --- a/unix/tkConfig.h.in +++ b/unix/tkConfig.h.in @@ -168,24 +168,15 @@ /* Is Tk built as a framework? */ #undef TK_FRAMEWORK -/* Should we use <a.out.h> when doing dynamic loading? */ -#undef USE_A_OUT_H +/* Are TkAqua debug messages enabled? */ +#undef TK_MAC_DEBUG /* Do we need a special AIX hack for timezones? */ #undef USE_DELTA_FOR_TZ -/* Should we use <sys/exec_aout.h> when doing dynamic loading? */ -#undef USE_SYS_EXEC_AOUT_H - -/* Should we use <sys/exec.h> when doing dynamic loading? */ -#undef USE_SYS_EXEC_H - /* Do we want to use the threaded memory allocator? */ #undef USE_THREAD_ALLOC -/* Use the generic thread storage subsystem? */ -#undef USE_THREAD_STORAGE - /* Should we use vfork() instead of fork()? */ #undef USE_VFORK |