Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / WPF

Image Manipulation in Multitouch Development

Rate me:
Please Sign up or sign in to vote.
4.81/5 (8 votes)
3 Apr 2010CPOL3 min read 60.9K   2.5K   19  
In this article, I will describe Image manipulation in Windows 7 multitouch Environment
//-----------------------------------------------------------------------------
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Windows7.Multitouch.Interop;

namespace Windows7.Multitouch.Win32Helper
{
    class Win32HwndWrapper : IHwndWrapper
    {
        private readonly IntPtr _hWnd;

        public Win32HwndWrapper(IntPtr hWnd)
        {
            _hWnd = hWnd;

            HandleCreated += (s, e) => { };
            HandleDestroyed += (s, e) => { };
        }

        #region IHwndWrapper Members

        public IntPtr Handle
        {
            get { return _hWnd; }
        }

        public object Source
        {
            get { return _hWnd; }
        }

        public event EventHandler HandleCreated;

        public event EventHandler HandleDestroyed;

        public bool IsHandleCreated
        {
            get { return User32.IsWindow(_hWnd); }
        }

        public System.Drawing.Point PointToClient(System.Drawing.Point point)
        {
            POINT p = new POINT { x = point.X, y = point.Y };
            User32.ScreenToClient(_hWnd, ref p);
            return new System.Drawing.Point(p.x, p.y);
        }

        #endregion

        internal void NotifyHandleDestroyed()
        {
            HandleDestroyed(this, EventArgs.Empty);
        }
    }

    /// <summary>
    /// A factory that creates touch or gesture handler for a HWnd based Window
    /// </summary>
    public class Factory
    {
        /// <summary>
        ///  A factory that creates touch or gesture handler for a HWnd based Window
        /// </summary>
        /// <remarks>We use factory to ensure that only one handler will be created for a window, since Gesture and Touch are mutually exclude</remarks>
        /// <typeparam name="T">The handler type</typeparam>
        /// <param name="hWnd">The Windows handle that need touch or gesture events</param>
        /// <returns>TouchHandler or Gesture Handler</returns>
        public static T CreateHandler<T>(IntPtr hWnd) where T : Windows7.Multitouch.Handler
        {
            Win32HwndWrapper win32HwndWrapper = new Win32HwndWrapper(hWnd);
            T handler = Windows7.Multitouch.Handler.CreateHandler<T>(win32HwndWrapper);

            //Register fot Windows Messages in order to raise the destroy handle event
            handler.WindowMessage += (s, e) =>
            {
                if (e.HWnd == hWnd && e.Message == User32.WM_NCDESTROY)
                {
                    win32HwndWrapper.NotifyHandleDestroyed();
                }
            };

            return handler;
        }
    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions