draghandlerbase.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 133 行

CS
133
字号
// *****************************************************************************
// 
//  Copyright 2004, Weifen Luo
//  All rights reserved. The software and associated documentation 
//  supplied hereunder are the proprietary information of Weifen Luo
//  and are supplied subject to licence terms.
// 
//  WinFormsUI Library Version 1.0
// *****************************************************************************

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace WeifenLuo.WinFormsUI
{
	/// <summary>
	/// DragHandlerBase is the base class for drag handlers. The derived class should:
	///   1. Define its public method BeginDrag. From within this public BeginDrag method,
	///      DragHandlerBase.BeginDrag should be called to initialize the mouse capture
	///      and message filtering.
	///   2. Override the OnDragging and OnEndDrag methods.
	/// </summary>
	internal class DragHandlerBase : IMessageFilter
	{
		private Control m_dragControl = null;

		private IntPtr m_hWnd;
		private WndProcCallBack m_wndProcCallBack;
		private IntPtr m_prevWndFunc;
		private delegate IntPtr WndProcCallBack(IntPtr hwnd, int Msg, IntPtr wParam, IntPtr lParam);
		[DllImport("User32.dll")]
		private static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, WndProcCallBack wndProcCallBack);
		[DllImport("User32.dll")]
		private static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, IntPtr wndFunc);
		[DllImport("User32.dll")]
		private static extern IntPtr CallWindowProc(IntPtr prevWndFunc, IntPtr hWnd, int iMsg, IntPtr wParam, IntPtr lParam);

		public DragHandlerBase()
		{
			m_wndProcCallBack = new WndProcCallBack(this.WndProc);
		}

		private void AssignHandle(IntPtr hWnd)
		{
			m_hWnd = hWnd;
			m_prevWndFunc = SetWindowLong(hWnd, -4, m_wndProcCallBack);	// GWL_WNDPROC = -4
		}

		private void ReleaseHandle()
		{
			SetWindowLong(m_hWnd, -4, m_prevWndFunc);	// GWL_WNDPROC = -4
			m_hWnd = IntPtr.Zero;
			m_prevWndFunc = IntPtr.Zero;
		}

		internal Control DragControl
		{
			get	{	return m_dragControl;	}
		}

		private Point m_startMousePosition = Point.Empty;
		protected Point StartMousePosition
		{
			get	{	return m_startMousePosition;	}
		}

		protected bool BeginDrag(Control c)
		{
			// Avoid re-entrance;
			if (m_dragControl != null)
				return false;

			m_startMousePosition = Control.MousePosition;

			if (!User32.DragDetect(c.Handle, StartMousePosition))
				return false;

			m_dragControl = c;
			c.FindForm().Capture = true;
			AssignHandle(c.FindForm().Handle);
			Application.AddMessageFilter(this);
			return true;
		}

		protected virtual void OnDragging()
		{
		}

		protected virtual void OnEndDrag(bool abort)
		{
		}

		private void EndDrag(bool abort)
		{
			ReleaseHandle();
			Application.RemoveMessageFilter(this);
			m_dragControl.FindForm().Capture = false;

			OnEndDrag(abort);

			m_dragControl = null;
		}

		bool IMessageFilter.PreFilterMessage(ref Message m)
		{
			if (m.Msg == (int)Win32.Msgs.WM_MOUSEMOVE)
				OnDragging();
			else if (m.Msg == (int)Win32.Msgs.WM_LBUTTONUP)
				EndDrag(false);
			else if (m.Msg == (int)Win32.Msgs.WM_CAPTURECHANGED)
				EndDrag(true);
			else if (m.Msg == (int)Win32.Msgs.WM_KEYDOWN && (int)m.WParam == (int)Keys.Escape)
				EndDrag(true);

			return OnPreFilterMessage(ref m);
		}

		protected virtual bool OnPreFilterMessage(ref Message m)
		{
			return true;
		}

		private IntPtr WndProc(IntPtr hWnd, int iMsg, IntPtr wParam, IntPtr lParam)
		{
			if (iMsg == (int)Win32.Msgs.WM_CANCELMODE || iMsg == (int)Win32.Msgs.WM_CAPTURECHANGED)
				EndDrag(true);

			return CallWindowProc(m_prevWndFunc, hWnd, iMsg, wParam, lParam);
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?