-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
47 lines (45 loc) · 949 Bytes
/
Copy path__init__.py
File metadata and controls
47 lines (45 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
Python Zenity Wrapper
A comprehensive Python wrapper for Zenity dialogs, making it easy to create
native desktop dialogs in your applications.
"""
from zenity_wrapper import (
Zenity,
CommonOptions,
InfoOptions,
QuestionOptions,
EntryOptions,
PasswordOptions,
CalendarOptions,
FileSelectionOptions,
ListOptions,
RadioListOptions,
CheckListOptions,
TextInfoOptions,
ProgressOptions,
ScaleOptions,
FormField,
FormOptions,
ColorSelectionOptions,
)
__version__ = "0.1.0"
__author__ = "CodeCaine"
__all__ = [
"Zenity",
"CommonOptions",
"InfoOptions",
"QuestionOptions",
"EntryOptions",
"PasswordOptions",
"CalendarOptions",
"FileSelectionOptions",
"ListOptions",
"RadioListOptions",
"CheckListOptions",
"TextInfoOptions",
"ProgressOptions",
"ScaleOptions",
"FormField",
"FormOptions",
"ColorSelectionOptions",
]