-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzenity.py
124 lines (106 loc) · 4 KB
/
zenity.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
"""Zenity - display dialogs with python
DESCRIPTION
zenity is a Python library that will display GTK+ dialogs using zanity
tool, and return (eitherin the return code, or on standard output) the
users input. This allows you to present information, and ask for infor
mation from the user.
For example, zenity.show(zenity.question) will return either 0, 1 or 5, depending
on whether the user pressed OK, Cancel or timeout has been reached.
zenity.show(zenity.entry) will output on standard output what the user typed into
the text entry field.
Comprehensive documentation is coming soon.
ENVIRONMENT
Normally, zenity detects the window from which it was launched
and keeps itself above that window. This behavior can be disabled by
unsetting the WINDOWID environment variable.
AUTHOR
Original Zenity was written by Glynn Foster <[email protected]>.
This tool is written by Kavindu Santhusa <[email protected]>
"""
from __future__ import absolute_import, division
import subprocess
import os
import time
from sys import version_info
__version__ = '2.0.0'
#Application Options:
calendar ="calendar" #Display calendar dialog
entry ="entry" #Display text entry dialog
error ="error" #Display error dialog
info ="info" #Display info dialog
file_selection ="file-selection" #Display file selection dialog
list ="list" #Display list dialog
notification ="notification" #Display notification
progress ="progress" #Display progress indication dialog
question ="question" #Display question dialog
warning ="warning" #Display warning dialog
scale ="scale" #Display scale dialog
text_info ="text-info" #Display text information dialog
color_selection="color-selection" #Display color selection dialog
password ="password" #Display password dialog
forms ="forms" #Display forms dialog
class ZenityException(Exception):pass
def test_call(*args, **kwargs):
""" Test whether a subprocess call succeeds.
"""
try:
subprocess.check_output(*args, **kwargs)
return True
except Exception:
return False
def _message(args, writeable=False):
def write(message=''):
try:
p.stdin.write(str(message) + '\n')
except IOError as e:
print(e)
exit()
return p.returncode
env = os.environ.copy()
env['WINDOWID'] = ''
if writeable:
p = subprocess.Popen(['zenity'] + args,stdin=subprocess.PIPE,stderr=subprocess.PIPE,stdout=subprocess.PIPE,env=env)
return write
else:
p = subprocess.Popen(['zenity'] + args,stdin=subprocess.PIPE,stderr=subprocess.PIPE,stdout=subprocess.PIPE,env=env)
try:
while p.poll() is None:
time.sleep(0.002)
return not p.poll(), p.stdout.read().decode('utf-8', 'ignore')
finally:
if p.poll() is None: # pragma: no cover
p.kill()
def works():
t = test_call(['zenity', '--version'])
if t:
return True
try:
from os import system
system("sudo apt-get install zenity")
except Exception as e:
raise ZenityException("Zenity Not Working\nlog:\n"+e)
return test_call(['zenity', 'def version'])
def show(*args,**kwargs):
"""show dialog"""
w=False
if works():
flags_list=[]
if "writeable" in kwargs:
w=True
del kwargs["writeable"]
for kwarg in kwargs:
flags_list.append("--"+kwarg+"="+str(kwargs[kwarg]))
for arg in args:
flags_list.append("--"+str(arg))
if w:
return _message(flags_list,writeable=True)
return _message(flags_list)
else:
return False
def cli():
import sys
from os import system
if works():
system('zenity '+' '.join(sys.argv[1:]))
if __name__=='__main__':
cli()