Attempt at fixing issue #19

This commit is contained in:
Dilan Boskan
2020-11-09 21:58:55 +01:00
committed by GitHub
parent 3ffce41a03
commit 08e21bdbf0
32 changed files with 7910 additions and 0 deletions

25
tkinterdnd2/__init__.py Normal file
View File

@@ -0,0 +1,25 @@
# dnd actions
PRIVATE = 'private'
NONE = 'none'
ASK = 'ask'
COPY = 'copy'
MOVE = 'move'
LINK = 'link'
REFUSE_DROP = 'refuse_drop'
# dnd types
DND_TEXT = 'DND_Text'
DND_FILES = 'DND_Files'
DND_ALL = '*'
CF_UNICODETEXT = 'CF_UNICODETEXT'
CF_TEXT = 'CF_TEXT'
CF_HDROP = 'CF_HDROP'
FileGroupDescriptor = 'FileGroupDescriptor - FileContents'# ??
FileGroupDescriptorW = 'FileGroupDescriptorW - FileContents'# ??
from . import TkinterDnD
from .TkinterDnD import Tk
from .TkinterDnD import TixTk