mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
Core: Launcher: can drag-and-drop patch on Launcher window (#3442)
* Core: Launcher: can drag-and-drop patch on Launcher window * doc string for `_on_drop_file`
This commit is contained in:
15
typings/kivy/core/window.pyi
Normal file
15
typings/kivy/core/window.pyi
Normal file
@@ -0,0 +1,15 @@
|
||||
from typing import Callable, ClassVar
|
||||
|
||||
from kivy.event import EventDispatcher
|
||||
|
||||
|
||||
class WindowBase(EventDispatcher):
|
||||
width: ClassVar[int] # readonly AliasProperty
|
||||
height: ClassVar[int] # readonly AliasProperty
|
||||
|
||||
@staticmethod
|
||||
def bind(**kwargs: Callable[..., None]) -> None: ...
|
||||
|
||||
|
||||
class Window(WindowBase):
|
||||
...
|
2
typings/kivy/event.pyi
Normal file
2
typings/kivy/event.pyi
Normal file
@@ -0,0 +1,2 @@
|
||||
class EventDispatcher:
|
||||
...
|
Reference in New Issue
Block a user