-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathdnd.pyi
More file actions
19 lines (15 loc) · 774 Bytes
/
dnd.pyi
File metadata and controls
19 lines (15 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from tkinter import Event, Misc, Tk, Widget
from typing import ClassVar, Protocol, type_check_only
__all__ = ["dnd_start", "DndHandler"]
@type_check_only
class _DndSource(Protocol):
def dnd_end(self, target: Widget | None, event: Event[Misc] | None, /) -> None: ...
class DndHandler:
root: ClassVar[Tk | None]
def __init__(self, source: _DndSource, event: Event[Misc]) -> None: ...
def cancel(self, event: Event[Misc] | None = None) -> None: ...
def finish(self, event: Event[Misc] | None, commit: int = 0) -> None: ...
def on_motion(self, event: Event[Misc]) -> None: ...
def on_release(self, event: Event[Misc]) -> None: ...
def __del__(self) -> None: ...
def dnd_start(source: _DndSource, event: Event[Misc]) -> DndHandler | None: ...