Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Detect left click and drag
#2
Function click_drag_detect
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040601 "*" "" "" ""

if(!ShowDialog(dd &sub.DlgProc 0)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_LBUTTONDOWN
,POINT p; xm p
,if DragDetect(hDlg p)
,,out "drag"
,,sub.DragDropExample hDlg
,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


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: 2 Guest(s)