Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Detect left click and drag
#3
Again some posts were lost...

----

Function click_drag_detect
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90CC0AC8 0x0 0 0 301 186 "Dialog"
;3 ActiveX 0x54030000 0x0 2 2 220 132 "SHDocVw.WebBrowser"
;END DIALOG
;DIALOG EDITOR: "" 0x2040601 "*" "" "" ""

int hwnd hook
str controls = "3"
str ax3SHD
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc v
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,,hwnd=hDlg
,,hook=SetWindowsHookEx(WH_GETMESSAGE &sub.Hook_WH_GETMESSAGE 0 GetCurrentThreadId)
,case WM_DESTROY
,,UnhookWindowsHookEx hook
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1


#sub DragDropExample
function hDlg
__Drag d
d.Init(hDlg 1)
rep
,if(!d.Next) break
,out F"{d.p.x} {d.p.y}"
,d.cursor=2
out d.dropped


#sub Hook_WH_GETMESSAGE v
function# nCode remove MSG&m
if(nCode<0) goto gNext

sel m.message
,case WM_LBUTTONDOWN
,,POINT p; xm p
,,RECT R; DpiGetWindowRect id(3 hwnd) &R
,,if PtInRect(&R p.x p.y)
,,,if DragDetect(hwnd p)
,,,,out "drag"
,,,,m.message=0
,,,,sub.DragDropExample hwnd
,,,,ret

;gNext
ret CallNextHookEx(0 nCode remove &m)


Messages In This Thread
Detect left click and drag - by r0n - 02-05-2020, 03:06 AM
RE: Detect left click and drag - by Gintaras - 02-05-2020, 06:58 AM
RE: Detect left click and drag - by Gintaras - 02-06-2020, 12:02 PM
RE: Detect left click and drag - by r0n - 02-06-2020, 01:25 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)