OSDN Git Service

PostMultipartRequestクラスを追加
[opentween/open-tween.git] / OpenTween / MouseWheelMessageFilter.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2015 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 #nullable enable
23
24 using System;
25 using System.Collections.Generic;
26 using System.Drawing;
27 using System.Linq;
28 using System.Reflection;
29 using System.Text;
30 using System.Threading.Tasks;
31 using System.Windows.Forms;
32
33 namespace OpenTween
34 {
35     /// <summary>
36     /// コントロールにフォーカスが当たってなくても無理矢理 MouseWheel イベントを発生させるクラス
37     /// </summary>
38     public sealed class MouseWheelMessageFilter : IMessageFilter, IDisposable
39     {
40         private readonly List<Control> controls = new();
41
42         public MouseWheelMessageFilter()
43             => Application.AddMessageFilter(this);
44
45         public void Dispose()
46             => Application.RemoveMessageFilter(this);
47
48         public void Register(Control target)
49             => this.controls.Add(target);
50
51         public void Unregister(Control target)
52             => this.controls.Remove(target);
53
54         public bool PreFilterMessage(ref Message m)
55         {
56             const int WM_MOUSEWHEEL = 0x020A;
57
58             if (m.Msg == WM_MOUSEWHEEL)
59             {
60                 foreach (var control in this.controls)
61                 {
62                     var details = ParseMessage(m);
63                     var controlRectangle = control.Parent.RectangleToScreen(control.DisplayRectangle);
64                     if (controlRectangle.Contains(details.ScreenLocation))
65                     {
66                         var clientLocation = control.PointToClient(details.ScreenLocation);
67
68                         var ev = new HandledMouseEventArgs(MouseButtons.None, 0, clientLocation.X, clientLocation.Y, details.WheelDelta);
69                         this.RaiseMouseWheelEvent(control, ev);
70
71                         // フォーカスが当たっているか否かに関わらず OnMouseWheel イベントを発生させているため、
72                         // 二重にイベントが発生することを防ぐために標準のメッセージ処理は抑制する
73                         return true;
74                     }
75                 }
76             }
77
78             return false;
79         }
80
81         internal readonly record struct MouseEvent(
82             Point ScreenLocation,
83             int WheelDelta
84         );
85
86         internal static MouseEvent ParseMessage(Message m)
87         {
88             var screenLocation = new Point((int)(m.LParam.ToInt64() & 0xffffffff));
89             var wheelDelta = (int)(m.WParam.ToInt64() & 0xffff0000) >> 16;
90
91             return new MouseEvent(screenLocation, wheelDelta);
92         }
93
94         public void RaiseMouseWheelEvent(Control control, MouseEventArgs e)
95         {
96             var method = typeof(Control).GetMethod("OnMouseWheel", BindingFlags.Instance | BindingFlags.NonPublic);
97             method.Invoke(control, new[] { e });
98         }
99     }
100 }