-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpad_vcl.py
More file actions
112 lines (98 loc) · 3.47 KB
/
Copy pathwordpad_vcl.py
File metadata and controls
112 lines (98 loc) · 3.47 KB
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
# 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> = 'Save and Close' ;
<2> = 'Dont Save and Close' ;
<3> = 'Save File' ;
<4> = 'Save As' ;
<any> = <1>|<2>|<3>|<4>;
<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,'wordpad','')
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
# 'Save and Close'
def gotResults_1(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+f}s{Alt+f}x'
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('wordpad.vcl', 5, '\'Save and Close\'', e)
self.firstWord = -1
# 'Dont Save and Close'
def gotResults_2(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+f}xn'
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('wordpad.vcl', 6, '\'Dont Save and Close\'', e)
self.firstWord = -1
# 'Save File'
def gotResults_3(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Ctrl+s}'
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('wordpad.vcl', 8, '\'Save File\'', e)
self.firstWord = -1
# 'Save As'
def gotResults_4(self, words, fullResults):
if self.firstWord<0:
return
try:
top_buffer = ''
top_buffer += '{Alt+f}A'
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('wordpad.vcl', 9, '\'Save As\'', e)
self.firstWord = -1
thisGrammar = ThisGrammar()
thisGrammar.initialize()
def unload():
global thisGrammar
if thisGrammar: thisGrammar.unload()
thisGrammar = None