Implement onDropStart, onDropEnd for file dropping (#1583)

* native side

* Theoretically, things should work

* brurh forgot a letter

* another quick cpp fix

* everything works now

* onDropText isnt fully supported

* Fix typo.

* Remove accidental cSpell addition to settings.json

* Dispatch `onDropStart` and `onDropEnd` events in HTML5.

---------

Co-authored-by: player-03 <player3.14@gmail.com>
This commit is contained in:
Shahar Marcus
2024-06-04 20:46:24 +03:00
committed by GitHub
parent e4782cb1b2
commit ead4402d5f
6 changed files with 54 additions and 10 deletions

View File

@@ -11,7 +11,10 @@ namespace lime {
enum DropEventType {
DROP_FILE
DROP_FILE,
DROP_TEXT,
DROP_BEGIN,
DROP_COMPLETE
};