ACIL FM
Dark
Refresh
Current DIR:
/usr/lib64/python3.9/tkinter
/
usr
lib64
python3.9
tkinter
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
__pycache__
-
chmod
Open
Rename
Delete
colorchooser.py
2.6 MB
chmod
View
DL
Edit
Rename
Delete
commondialog.py
1.22 MB
chmod
View
DL
Edit
Rename
Delete
constants.py
1.46 MB
chmod
View
DL
Edit
Rename
Delete
dialog.py
1.51 MB
chmod
View
DL
Edit
Rename
Delete
dnd.py
11.26 MB
chmod
View
DL
Edit
Rename
Delete
filedialog.py
14.6 MB
chmod
View
DL
Edit
Rename
Delete
font.py
6.66 MB
chmod
View
DL
Edit
Rename
Delete
messagebox.py
3.77 MB
chmod
View
DL
Edit
Rename
Delete
scrolledtext.py
1.77 MB
chmod
View
DL
Edit
Rename
Delete
simpledialog.py
11.48 MB
chmod
View
DL
Edit
Rename
Delete
tix.py
75.04 MB
chmod
View
DL
Edit
Rename
Delete
ttk.py
55.8 MB
chmod
View
DL
Edit
Rename
Delete
__init__.py
165.65 MB
chmod
View
DL
Edit
Rename
Delete
__main__.py
148 B
chmod
View
DL
Edit
Rename
Delete
Edit file: /usr/lib64/python3.9/tkinter/commondialog.py
# base class for tk common dialogues # # this module provides a base class for accessing the common # dialogues available in Tk 4.2 and newer. use filedialog, # colorchooser, and messagebox to access the individual # dialogs. # # written by Fredrik Lundh, May 1997 # __all__ = ["Dialog"] from tkinter import Frame class Dialog: command = None def __init__(self, master=None, **options): if not master: master = options.get('parent') self.master = master self.options = options def _fixoptions(self): pass # hook def _fixresult(self, widget, result): return result # hook def show(self, **options): # update instance options for k, v in options.items(): self.options[k] = v self._fixoptions() # we need a dummy widget to properly process the options # (at least as long as we use Tkinter 1.63) w = Frame(self.master) try: s = w.tk.call(self.command, *w._options(self.options)) s = self._fixresult(w, s) finally: try: # get rid of the widget w.destroy() except: pass return s
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply