diff options
author | Dan Gudmundsson <[email protected]> | 2016-09-28 13:13:20 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2016-09-29 09:47:38 +0200 |
commit | b8339d7edf63c8745be4be092e63f46bc4e63b91 (patch) | |
tree | 5f160a5782ff7813865851d1cc33316888c0f54c /lib/wx/src/gen/wxHtmlWindow.erl | |
parent | b271012d04897f788866760c1dea7d51b1b44a4d (diff) | |
download | otp-b8339d7edf63c8745be4be092e63f46bc4e63b91.tar.gz otp-b8339d7edf63c8745be4be092e63f46bc4e63b91.tar.bz2 otp-b8339d7edf63c8745be4be092e63f46bc4e63b91.zip |
wx: add wxWindowDragAcceptFiles
Enable window to handle drop file events.
Diffstat (limited to 'lib/wx/src/gen/wxHtmlWindow.erl')
-rw-r--r-- | lib/wx/src/gen/wxHtmlWindow.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/wx/src/gen/wxHtmlWindow.erl b/lib/wx/src/gen/wxHtmlWindow.erl index f9bb135fcf..8bc317ad73 100644 --- a/lib/wx/src/gen/wxHtmlWindow.erl +++ b/lib/wx/src/gen/wxHtmlWindow.erl @@ -45,8 +45,8 @@ centreOnParent/2,clearBackground/1,clientToScreen/2,clientToScreen/3, close/1,close/2,connect/2,connect/3,convertDialogToPixels/2,convertPixelsToDialog/2, destroyChildren/1,disable/1,disconnect/1,disconnect/2,disconnect/3, - doPrepareDC/2,enable/1,enable/2,enableScrolling/3,findWindow/2,fit/1, - fitInside/1,freeze/1,getAcceleratorTable/1,getBackgroundColour/1, + doPrepareDC/2,dragAcceptFiles/2,enable/1,enable/2,enableScrolling/3, + findWindow/2,fit/1,fitInside/1,freeze/1,getAcceleratorTable/1,getBackgroundColour/1, getBackgroundStyle/1,getBestSize/1,getCaret/1,getCharHeight/1,getCharWidth/1, getChildren/1,getClientSize/1,getContainingSizer/1,getCursor/1,getDropTarget/1, getEventHandler/1,getExtraStyle/1,getFont/1,getForegroundColour/1, @@ -689,6 +689,8 @@ enable(This, Options) -> wxWindow:enable(This, Options). %% @hidden enable(This) -> wxWindow:enable(This). %% @hidden +dragAcceptFiles(This,Accept) -> wxWindow:dragAcceptFiles(This,Accept). +%% @hidden disable(This) -> wxWindow:disable(This). %% @hidden destroyChildren(This) -> wxWindow:destroyChildren(This). |