-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwlmail_vcl.py
199 lines (181 loc) · 6.7 KB
/
wlmail_vcl.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
# NatLink macro definitions for NaturallySpeaking
# coding: latin-1
# Generated by vcl2py 2.8.1I+, Fri Oct 31 17:34:50 2014
import natlink
from natlinkutils import *
from VocolaUtils import *
class ThisGrammar(GrammarBase):
gramSpec = """
<1> = 'move to folder' ;
<2> = 'move to junk folder' ;
<3> = 'sort with date' ;
<4> = 'sort with flag' ;
<5> = 'flag' ;
<6> = 'Save Attachment All' ;
<8> = 'Save Attachment' ;
<7> = 'add contact' ;
<any> = <1>|<2>|<3>|<4>|<5>|<6>|<8>|<7>;
<sequence> exported = <any>;
"""
def initialize(self):
self.load(self.gramSpec)
self.currentModule = ("","",0)
self.ruleSet1 = ['sequence']
def gotBegin(self,moduleInfo):
# Return if wrong application
window = matchWindow(moduleInfo,'wlmail','')
if not window: return None
self.firstWord = 0
# Return if same window and title as before
if moduleInfo == self.currentModule: return None
self.currentModule = moduleInfo
self.deactivateAll()
title = string.lower(moduleInfo[1])
if string.find(title,'') >= 0:
for rule in self.ruleSet1:
try:
self.activate(rule,window)
except natlink.BadWindow:
pass
def convert_number_word(self, word):
if word == '0':
return '0'
else:
return word
# 'move to folder'
def gotResults_1(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+e}m'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_1(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 5, '\'move to folder\'', e)
self.firstWord = -1
# 'move to junk folder'
def gotResults_2(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+Ctrl+j}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_2(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 6, '\'move to junk folder\'', e)
self.firstWord = -1
# 'sort with date'
def gotResults_3(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt}vb'
top_buffer = do_flush(False, top_buffer);
dragon_arg1 = ''
dragon_arg1 += '11'
call_Dragon('Wait', 'i', [dragon_arg1])
top_buffer += '{Down}{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_3(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 8, '\'sort with date\'', e)
self.firstWord = -1
# 'sort with flag'
def gotResults_4(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt}vb'
top_buffer = do_flush(False, top_buffer);
dragon_arg1 = ''
dragon_arg1 += '11'
call_Dragon('Wait', 'i', [dragon_arg1])
top_buffer += '{Down_6}{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_4(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 9, '\'sort with flag\'', e)
self.firstWord = -1
# 'flag'
def gotResults_5(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt}aa'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_5(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 10, '\'flag\'', e)
self.firstWord = -1
# 'Save Attachment All'
def gotResults_6(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+f}v'
top_buffer = do_flush(False, top_buffer);
dragon_arg1 = ''
dragon_arg1 += '100'
call_Dragon('Wait', 'i', [dragon_arg1])
top_buffer += '{Tab_2}{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_6(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 11, '\'Save Attachment All\'', e)
self.firstWord = -1
# 'Save Attachment'
def gotResults_8(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+f}v'
top_buffer = do_flush(False, top_buffer);
dragon_arg1 = ''
dragon_arg1 += '100'
call_Dragon('Wait', 'i', [dragon_arg1])
top_buffer += '{Tab_2}{Enter}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_8(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 11, '\'Save Attachment\'', e)
self.firstWord = -1
# 'add contact'
def gotResults_7(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{enter}'
top_buffer = do_flush(False, top_buffer);
dragon_arg1 = ''
dragon_arg1 += ''
call_Dragon('WaitForWindow', 'ssi', [dragon_arg1])
top_buffer += '{Alt+t}'
top_buffer += 'ds'
top_buffer += '{enter}{Alt+f4}'
top_buffer = do_flush(False, top_buffer);
self.firstWord += 1
if len(words) > 1: self.gotResults_7(words[1:], fullResults)
except Exception, e:
handle_error('wlmail.vcl', 14, '\'add contact\'', e)
self.firstWord = -1
thisGrammar = ThisGrammar()
thisGrammar.initialize()
def unload():
global thisGrammar
if thisGrammar: thisGrammar.unload()
thisGrammar = None