From 2d9b72677f66bd83a0b626c1d9f9dbeaae75f9b5 Mon Sep 17 00:00:00 2001 From: John Klehm Date: Tue, 7 Oct 2008 01:05:51 -0500 Subject: wintab32: Send notification when z-order changes --- dlls/wintab32/context.c | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/dlls/wintab32/context.c b/dlls/wintab32/context.c index bf46170..33c780c 100644 --- a/dlls/wintab32/context.c +++ b/dlls/wintab32/context.c @@ -648,6 +648,10 @@ BOOL WINAPI WTEnable(HCTX hCtx, BOOL fEnable) context->enabled = TRUE; /* TODO: Add to top of overlap order */ context->context.lcStatus = CXS_ONTOP; + TABLET_PostTabletMessage(context, + _WT_CTXOVERLAP(context->context.lcMsgBase), + (WPARAM)context->handle, + context->context.lcStatus, TRUE); } /* if we want to disable and it is not disabled then */ else if (!fEnable && context->enabled) @@ -656,6 +660,10 @@ BOOL WINAPI WTEnable(HCTX hCtx, BOOL fEnable) /* TODO: Remove from overlap order?? needs a test */ context->context.lcStatus = CXS_DISABLED; TABLET_FlushQueue(context); + TABLET_PostTabletMessage(context, + _WT_CTXOVERLAP(context->context.lcMsgBase), + (WPARAM)context->handle, + context->context.lcStatus, TRUE); } LeaveCriticalSection(&csTablet); @@ -677,17 +685,26 @@ BOOL WINAPI WTOverlap(HCTX hCtx, BOOL fToTop) EnterCriticalSection(&csTablet); context = TABLET_FindOpenContext(hCtx); - if (fToTop) + /* if we want to send to top and it's not already there */ + if (fToTop && context->context.lcStatus != CXS_ONTOP) { /* TODO: Move context to top of overlap order */ FIXME("Not moving context to top of overlap order\n"); context->context.lcStatus = CXS_ONTOP; + TABLET_PostTabletMessage(context, + _WT_CTXOVERLAP(context->context.lcMsgBase), + (WPARAM)context->handle, + context->context.lcStatus, TRUE); } - else + else if (!fToTop) { /* TODO: Move context to bottom of overlap order */ FIXME("Not moving context to bottom of overlap order\n"); context->context.lcStatus = CXS_OBSCURED; + TABLET_PostTabletMessage(context, + _WT_CTXOVERLAP(context->context.lcMsgBase), + (WPARAM)context->handle, + context->context.lcStatus, TRUE); } LeaveCriticalSection(&csTablet); -- 1.5.4.3