-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymP.py
executable file
·214 lines (179 loc) · 6.36 KB
/
symP.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/usr/bin/python3
from tkinter import *
from tkinter import ttk
from functools import partial
import items
import config
import logging
import subprocess
import shutil
FORMAT = '%(levelname)s: %(message)s'
logging.basicConfig(format=config.FORMAT,level=logging.DEBUG,
datefmt=config.DATAFORMAT)
userprograms = items.UserPrograms()
userfiles= items.UserFiles()
recentlyfiles = items.RecentlyFiles()
userwebsites = items.UserWebsites()
filesdirectories = items.FilesDirectories()
def refresh_listbox(*args):
cmd = command.get()
lstdatas = set([])
lstdatas |= userprograms(cmd, limit=0.49)
#if cmd and ((not lstdatas) or (lstdatas and max([i.rating for i in lstdatas])<9)):
#p = subprocess.Popen("type %s" % cmd, shell=True, stdout=subprocess.PIPE,
#stderr=subprocess.STDOUT).stdout.readline().decode("utf-8")
#if p[-1-len(cmd):-1]==cmd:
if cmd and shutil.which(cmd):
tryrun = items.Program(cmd, "Run: %s" % cmd)
tryrun.info = 'new program'
tryrun.rating = 1
lstdatas.add(tryrun)
lstdatas |= userfiles(cmd, limit=0.49)
lstdatas |= recentlyfiles(cmd, limit=0.49)
lstdatas |= userwebsites(cmd, limit=0.49)
if cmd:
lstdatas |= filesdirectories(cmd, limit=0.49)
try:
lstdatas.add(items.Calculator(cmd))
except:
pass
lstdatas.add(items.SearchEngine(cmd))
llstdatas = list(lstdatas)
llstdatas.sort(key=lambda x: x.rating, reverse=True)
listbox.set_data(llstdatas)
lenlbox = len(llstdatas)
for i in range(len(listbox.data)):
listbox.itemconfig(i,items.color_theme_bg(type(llstdatas[i]), i/lenlbox))
def complete_command(_):
cmd = listbox.data[listbox.get(ACTIVE)]
command.set(cmd.show_command())
def run(_):
cmd = listbox.data[listbox.get(ACTIVE)]
logging.info('run %s', cmd)
if type(cmd)==items.Calculator:
command.set(cmd.show_command())
return
root.withdraw()
if type(cmd)==items.Program and cmd.info=="new program":
logging.info("try to add new program %s", cmd)
cmd.show_string = cmd.command
cmd.info = ''
userprograms.append(cmd)
cmd()
command.set('')
#cmds.refresh_originaldata_file()
class MyListBox(Listbox):
def set_data(self, data):
self.data=dict([(str(i), i) for i in data])
self.delete(0,END)
for i in data:
self.insert(END, i)
def goto_index(self, pos):
self.selection_clear(ACTIVE)
self.selection_set(pos)
self.activate(pos)
self.see(pos)
from Xlib.display import Display
from Xlib import X
import threading
import _thread
fun_key = {'ctrl':4,
'shift':1,
'alt': 8,
'win':64}
def check_hotkey(ctl, key, aEvent):
#logging.debug("check_hotkey ctl:%s key:% aEvent:%s", ctl, key, aEvent)
try:
if ctl:
if aEvent.state != sum(map(lambda x: fun_key[x], ctl)):
return False
if key != aEvent.detail:
return False
return True
except:
return False
#def handle_event(aEvent):
#keycode = aEvent.detail
#print(keycode)
#if aEvent.type == X.KeyPress:
#if (aEvent.detail == 38)&(aEvent.state == 8):
#print('---')
#root.deiconify()
class KeyBind(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.signal = True
self.windows_state = True
def callback(self):
self.root.quit()
def run(self):
disp = Display()
self.root = disp.screen().root
# we tell the X server we want to catch keyPress event
self.root.change_attributes(event_mask = X.KeyPressMask)
#for keycode in [38]:
#self.root.grab_key(keycode, X.AnyModifier, 1,X.GrabModeAsync, X.GrabModeAsync)
self.root.grab_key(38, X.Mod1Mask, 1,X.GrabModeAsync, X.GrabModeAsync)
# Alt+a
while self.signal:
event = self.root.display.next_event()
if (event.type == X.KeyPress) and check_hotkey(['alt'], 38, event):
if root.winfo_viewable():
root.withdraw()
recentlyfiles.refresh_items()
else:
refresh_listbox()
entry.focus_set()
command.set('')
root.deiconify()
self.windows_state = not self.windows_state
default_width = 600
default_height = 400
root=Tk(className='symp')
root.title('SymP')
#======= Center the Window ========
# Apparently a common hack to get the window size. Temporarily hide the
# window to avoid update_idletasks() drawing the window in the wrong
# position.
root.withdraw()
root.update_idletasks() # Update "requested size" from geometry manager
root.geometry("%dx%d" % (default_width,default_height))
x = (root.winfo_screenwidth() - default_width) / 2
y = (root.winfo_screenheight() - default_height) / 2
root.geometry("+%d+%d" % (x, y))
command=StringVar()
command.trace("w", refresh_listbox)
entry=Entry(root, font='Sans 16', textvariable=command,width=root.winfo_reqwidth())
listbox=MyListBox(root, font='Sans 14', width=root.winfo_reqwidth(), height=root.winfo_reqheight())
#listbox=MyListBox(root, font='Sans 14', width=root.winfo_reqwidth())
entry.bind('<Return>', run)
#entry.bind('<KeyRelease>', refresh_listbox)
entry.pack()
#entry.bind('<Tab>', lambda _: listbox.focus_set())
entry.focus_set()
logging.info('start')
#cmds= items.CommandData()
#listbox.set_data(cmds.commanddata)
#listbox.bind('<Return>', partial(print_keyboard, widget=listbox))
#listbox.bind('<Return>', print_hello)
listbox.bind('j', lambda _: listbox.event_generate('<Down>'))
listbox.bind('k', lambda _: listbox.event_generate('<Up>'))
listbox.bind('d', lambda _: listbox.event_generate('<Next>'))
listbox.bind('u', lambda _: listbox.event_generate('<Prior>'))
listbox.bind('H', lambda _: listbox.goto_index(0))
listbox.bind('L', lambda _: listbox.goto_index('end'))
listbox.bind('<Tab>', complete_command)
listbox.bind('<Escape>', lambda _: entry.focus_set())
listbox.bind('<Return>', run)
listbox.pack()
def on_closing():
kb.signal = False
root.destroy()
root.deiconify()
#from system_hotkey import SystemHotkey
#hk = SystemHotkeys()
#hk.register(('control', 'shift', 'h'), callback=root.deiconify)
kb=KeyBind()
kb.start()
root.protocol("WM_DELETE_WINDOW", on_closing)
root.mainloop()