很久之前找了一个dragout-v0.2的库文件,现在不知道原网址了,不知道咋用,给的案例也报错
//dragout 文件拖放-拖出
import win;
import win.cur;
import fsys;
namespace win.util;
//鼠标按下状态
class dragout{
ctor(){
this.running = false;
var newWndproc = function(hwnd, message, wParam, lParam){
select(message) {
case 0x20/*_WM_SETCURSOR*/ {
//win.cur.setCur(GetDropTarget(this.allowParent) ? cur_yes : cur_no);
return 0;
}
case 0x200/*_WM_MOUSEMOVE*/ {
setCur(getDropTarget(this.allowParent) ? this.cur_yes : this.cur_no);
return 0;
}
case 0x202/*_WM_LBUTTONUP*/ {
var drop = dropFiles(getDropTarget(this.allowParent), this.files);
releaseCapture();
this.stop();
if(drop && this.callback){
this.callback(hwnd);
}
return 0;
}
else {
return this.originWndproc(hwnd, message, wParam, lParam);
}
}
}
};
start = function(winform, files, callback, allowParent = true, cur_yes, cur_no){
this.stop();
if(!winform[["hwnd"]]) error("参数@1:应为窗口!", 2);
if(type(files) != type.table) error("参数@1:应为字符串数组!", 2);
this.winform = winform;
this.originWndproc = null;
//如果原来没有回调函数,则先添加一个回调函数,最后在取消掉
var originWndproc = winform.wndproc;
if(!originWndproc){
this.haveOriginWndproc = false;
winform.wndproc = function(){};
originWndproc = winform.wndproc;
if(!originWndproc) error("扩展库错误:窗口回调函数错误!", 2);
} else {
this.haveOriginWndproc = true;
}
this.originWndproc = originWndproc;
this.files = files;
for(i=1;#files;1){
this.files[i] = ..string.toUnicode(files[i]);
}
this.callback = callback;
this.allowParent = allowParent;
this.cur_yes = cur_yes : self.cur_yes;
this.cur_no = cur_no : self.cur_no;
winform.wndproc = null;
winform.wndproc = newWndproc;
setCapture(winform.hwnd);
setCur(getDropTarget(this.allowParent) ? this.cur_yes : this.cur_no);
this.running = true;
}
stop = function(){
if(!this.running) return;
if(this.originWndproc){
this.winform.wndproc = null;
if(this.haveOriginWndproc){
this.winform.wndproc = this.originWndproc;
this.originWndproc = null;
}
}
this.running = false;
}
}
/*curdata{{*/
var curdata = '\x00\x00\x02\x00\x01\x00\x20\x20\x00\x00\x00\x00\x00\x000\x01\x00\x00\x16\x00\x00\x00(\x00\x00\x00\x20\x00
\x00\x00@\x00\x00\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1F\xF0\x00\x00\x1F\xF0
\x00\x00\x1E\xF0\x00\x00\x1E\xF0\x00\x00\x180\x00\x0A\x9E\xF0\x00\x15^\xF0\x00\x08\x1F\xF0\x00\x10\x1F\xF0\x00\x08\x00\x00
\x00\x10\x01\x00\x00\x08\x02\x00\x00\x11\x95\x00\x00\x09\xAA\x00\x00\x03\x00\x00\x00C\x00\x00\x00f\x00\x00\x00~\x00\x00\x00
~\x00\x00\x00\x7F\xC0\x00\x00\x7F\x80\x00\x00\x7F\x00\x00\x00~\x00\x00\x00|\x00\x00\x00x\x00\x00\x00p\x00\x00\x00\x60\x00
\x00\x00@\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xC0\x07\xFF\xFF\xC0\x07\xFF\xFF\xC0\x07\xFF\xFF
\xC0\x07\xFF\xFF\xC0\x07\xFF\xFF\xC0\x07\xFF\xE0\x00\x07\xFF\xE0\x00\x07\xFF\xE7\xC0\x07\xFF\xE7\xC0\x07\xFF\xE7\xC0\x07
\xFF\xE7\xFC\xFF\xFF\xE6<\xFF\xFF\xE4\x00\xFF\xFF\x60\x00\xFF\xFF8\x7F\xFF\xFF\x18\x7F\xFF\xFF\x00\xFF\xFF\xFF\x00\xFF\xFF
\xFF\x00\x0F\xFF\xFF\x00\x1F\xFF\xFF\x00?\xFF\xFF\x00\x7F\xFF\xFF\x00\xFF\xFF\xFF\x01\xFF\xFF\xFF\x03\xFF\xFF\xFF\x07\xFF
\xFF\xFF\x0F\xFF\xFF\xFF\x1F\xFF\xFF\xFF?\xFF\xFF\xFF';
/*}}*/
namespace dragout{
var win = ..win;
var string = ..string;
setCur = win.cur.setCur;
setCapture = win.setCapture;
releaseCapture = win.releaseCapture;
cur_no = win.cur.load(0x7F88/*_IDC_NO*/)
var tname = string.fromto((..io.tmpname("aardio_dragout_cur_")), 0, 65001);
string.save(tname, curdata);
cur_yes = win.cur.loadfile(tname);
..fsys.delete(tname);
tname = null;
var GetCursorPos = User32.api("GetCursorPos","INT( struct &lpPoint)" ) ;
getCursorPos = function(){
var p = ::POINT();
GetCursorPos(p);
return p.x, p.y;
}
var WindowFromPoint = ::User32.WindowFromPoint;
var getStyleEx = ..win.getStyleEx;
var getParentOwner = ..win.getParentOwner;
getDropTarget = function(allowParent = true){
var hwnd = WindowFromPoint(getCursorPos());
if(allowParent) while(hwnd){
if(getStyleEx(hwnd, 0x10/*_WS_EX_ACCEPTFILES*/))
break;
hwnd = getParentOwner(hwnd);
} else {
if(!getStyleEx(hwnd, 0x10/*_WS_EX_ACCEPTFILES*/)){
return;
}
}
return hwnd;
}
class DROPFILES{
ctor(x, y){
this.x = x;
this.y = y;
}
INT pFiles = 20; // offset of file list
int x; // drop point (client coords)
int y; // drop point (client coords)
INT fNC = 1; // is it on NonClient area and pt is in screen coords
INT fWide = 1; // WIDE character switch
}
var rtostring = ..raw.tostring;
dropFiles = function(hwnd, files){
if(!hwnd) return false;
var str = rtostring(DROPFILES(getCursorPos()));
for(i=1;#files;1) str += files[i] + '\0\0'; str += '\0\0';
var p = ::GlobalAlloc(0x40/*_GPTR*/, #str);
::CopyMemory(p, str, #str);
// The handler for WM_DROPFILES deallocates the "drop" structure for us
::PostMessage(hwnd, 0x233/*_WM_DROPFILES*/, tonumber(p), 0);
return true;
}
}
/**intellisense()
win.util.dragout = 文件拖放-拖出扩展库
win.util.dragout() = 创建 文件拖放-拖出 对象\n\nstart之后,stop之前不要修改窗口回调函数\n不支持往桌面拖动\n!dragout.
!dragout.start(.(winform, files, callback, allowParent, cur_yes, cur_no) = 启动:在鼠标左键按下的情况下调用该函数!\n\n参数@1:[必]窗口或控件,不是句柄!\n参数@2:[必]文件路径数组\n参数@3:[选]回调函数:参数为目标窗口句柄(0为失败)\n参数@4:[选]是否允许探测父窗口【true】\n参数@5:[选]允许拖放文件时的光标\n参数@6:[选]拒绝拖放文件时的光标
!dragout.stop() = 停止\n\n不需要手动调用
end intellisense**/
给的实列,有报错
import win.ui;
/*DSG{{*/
var winform = win.form(text="aardio form";right=448;bottom=311;acceptfiles=1)
winform.add(
button={cls="button";text="button";left=143;top=96;right=269;bottom=184;z=1}
)
/*}}*/
import console;
console.open();
import win.util.dragout;
drag = win.util.dragout();
filetab = {"D:\test.aardio"; "D:\test2.aardio"};
winform.button.wndproc = function(hwnd,message,wParam,lParam){
select( message ) {
case 0x201/*_WM_LBUTTONDOWN*/{
drag.start(winform.button, filetab, function(hwnd){
console.log(hwnd);
}, true);
}
case 0x233/*_WM_DROPFILES*/{
console.dump(win.getDropFile(wParam));
}
}
//无返回值则继续调用默认回调函数
}
winform.wndproc = function(hwnd,message,wParam,lParam){
select( message ) {
case 0x201/*_WM_LBUTTONDOWN*/{
drag.start(winform, filetab, function(hwnd){
console.log(hwnd);
},false);
}
case 0x233/*_WM_DROPFILES*/{
console.dump(win.getDropFile(wParam));
}
}
//无返回值则继续调用默认回调函数
}
winform.show();
win.loopMessage();
console.pause(true);