OSDN Git Service

Port DoubleClickCopyCanceller.vb to C#
authorEgtra <yusuke.ichinohe@gmail.com>
Sat, 10 Dec 2011 11:39:40 +0000 (20:39 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Wed, 22 Feb 2012 10:47:44 +0000 (19:47 +0900)
Tween/DoubleClickCopyCanceller.vb [deleted file]
Tween/Tween.vbproj
TweenCS/DoubleClickCopyCanceller.cs [new file with mode: 0644]
TweenCS/TweenCS.csproj

diff --git a/Tween/DoubleClickCopyCanceller.vb b/Tween/DoubleClickCopyCanceller.vb
deleted file mode 100644 (file)
index a3ada0e..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-' Tween - Client of Twitter
-' Copyright (c) 2007-2010 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
-'           (c) 2008-2010 Moz (@syo68k) <http://iddy.jp/profile/moz/>
-'           (c) 2008-2010 takeshik (@takeshik) <http://www.takeshik.org/>
-' All rights reserved.
-' 
-' This file is part of Tween.
-' 
-' This program is free software; you can redistribute it and/or modify it
-' under the terms of the GNU General Public License as published by the Free
-' Software Foundation; either version 3 of the License, or (at your option)
-' any later version.
-' 
-' This program is distributed in the hope that it will be useful, but
-' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-' for more details. 
-' 
-' You should have received a copy of the GNU General Public License along
-' with this program. If not, see <http://www.gnu.org/licenses/>, or write to
-' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
-' Boston, MA 02110-1301, USA.
-
-
-
-Public Class DoubleClickCopyCanceller
-    Inherits NativeWindow
-    Implements IDisposable
-
-    Const WM_GETTEXTLENGTH As Integer = &HE
-    Const WM_GETTEXT As Integer = &HD
-    Const WM_LBUTTONDBLCLK As Integer = &H203
-    Dim _doubleClick As Boolean = False
-
-    Public Sub New(ByVal control As Control)
-        Me.AssignHandle(control.Handle)
-    End Sub
-
-    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
-        If m.Msg = WM_LBUTTONDBLCLK Then
-            _doubleClick = True
-        End If
-        If _doubleClick Then
-            If m.Msg = WM_GETTEXTLENGTH Then
-                _doubleClick = False
-                m.Result = CType(0, IntPtr)
-                Exit Sub
-            End If
-        End If
-        MyBase.WndProc(m)
-    End Sub
-
-    Public Sub Dispose() Implements IDisposable.Dispose
-        Me.ReleaseHandle()
-        GC.SuppressFinalize(Me)
-    End Sub
-End Class
index 3e24718..54ac547 100644 (file)
     <Compile Include="DialogAsShieldIcon.vb">
       <SubType>Form</SubType>
     </Compile>
-    <Compile Include="DoubleClickCopyCanceller.vb" />
     <Compile Include="FormInfo.Designer.vb">
       <DependentUpon>FormInfo.vb</DependentUpon>
     </Compile>
diff --git a/TweenCS/DoubleClickCopyCanceller.cs b/TweenCS/DoubleClickCopyCanceller.cs
new file mode 100644 (file)
index 0000000..f8708f9
--- /dev/null
@@ -0,0 +1,65 @@
+// Tween - Client of Twitter
+// Copyright (c) 2007-2010 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
+//           (c) 2008-2010 Moz (@syo68k) <http://iddy.jp/profile/moz/>
+//           (c) 2008-2010 takeshik (@takeshik) <http://www.takeshik.org/>
+// All rights reserved.
+//
+// This file is part of Tween.
+//
+// This program is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 3 of the License, or (at your option)
+// any later version.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+// for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program. If not, see <http://www.gnu.org/licenses/>, or write to
+// the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
+// Boston, MA 02110-1301, USA.
+
+using System;
+using System.Windows.Forms;
+
+namespace Tween
+{
+    public class DoubleClickCopyCanceller : NativeWindow, IDisposable
+    {
+        const int WM_GETTEXTLENGTH = 0xE;
+        const int WM_GETTEXT = 0xD;
+        const int WM_LBUTTONDBLCLK = 0x203;
+        bool _doubleClick = false;
+
+        public DoubleClickCopyCanceller(Control control)
+        {
+            this.AssignHandle(control.Handle);
+        }
+
+        protected override void WndProc(ref Message m)
+        {
+            if (m.Msg == WM_LBUTTONDBLCLK)
+            {
+                _doubleClick = true;
+            }
+            if (_doubleClick)
+            {
+                if (m.Msg == WM_GETTEXTLENGTH)
+                {
+                    _doubleClick = false;
+                    m.Result = IntPtr.Zero;
+                    return;
+                }
+            }
+            base.WndProc(ref m);
+        }
+
+        public void Dispose()
+        {
+            this.ReleaseHandle();
+            GC.SuppressFinalize(this);
+        }
+    }
+}
index 04feb67..4fdebb5 100644 (file)
@@ -69,6 +69,7 @@
     <Compile Include="DetailsListView.cs">
       <SubType>Component</SubType>
     </Compile>
+    <Compile Include="DoubleClickCopyCanceller.cs" />
     <Compile Include="Growl.cs" />
     <Compile Include="MyCommon.cs" />
     <Compile Include="OpenURL.cs">