save and display request status
[electrum-nvc.git] / gui / qt / paytoedit.py
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2012 thomasv@gitorious
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 from PyQt4.QtCore import *
20 from PyQt4.QtGui import *
21
22 import re
23 from decimal import Decimal
24 from electrum import bitcoin
25
26 RE_ADDRESS = '[1-9A-HJ-NP-Za-km-z]{26,}'
27 RE_ALIAS = '(.*?)\s*\<([1-9A-HJ-NP-Za-km-z]{26,})\>'
28
29 frozen_style = "QWidget { background-color:none; border:none;}"
30 normal_style = "QTextEdit { }"
31
32 class PayToEdit(QTextEdit):
33
34     def __init__(self, amount_edit):
35         QTextEdit.__init__(self)
36         self.amount_edit = amount_edit
37         self.document().contentsChanged.connect(self.update_size)
38         self.heightMin = 0
39         self.heightMax = 150
40         self.setMinimumHeight(27)
41         self.setMaximumHeight(27)
42         self.c = None
43         self.textChanged.connect(self.check_text)
44         self.outputs = []
45         self.is_pr = False
46
47     def lock_amount(self):
48         self.amount_edit.setFrozen(True)
49
50     def unlock_amount(self):
51         self.amount_edit.setFrozen(False)
52
53     def setFrozen(self, b):
54         self.setReadOnly(b)
55         self.setStyleSheet(frozen_style if b else normal_style)
56
57     def setGreen(self):
58         self.is_pr = True
59         self.setStyleSheet("QWidget { background-color:#00ff00;}")
60
61
62     def parse_address_and_amount(self, line):
63         x, y = line.split(',')
64         address = self.parse_address(x)
65         amount = self.parse_amount(y)
66         return address, amount
67
68
69     def parse_amount(self, x):
70         p = pow(10, self.amount_edit.decimal_point())
71         return int( p * Decimal(x.strip()))
72
73
74     def parse_address(self, line):
75         r = line.strip()
76         m = re.match('^'+RE_ALIAS+'$', r)
77         address = m.group(2) if m else r
78         assert bitcoin.is_address(address)
79         return address
80
81
82     def check_text(self):
83         if self.is_pr:
84             return
85
86         # filter out empty lines
87         lines = filter( lambda x: x, self.lines())
88         outputs = []
89         total = 0
90
91         self.payto_address = None
92
93         if len(lines) == 1:
94             try:
95                 self.payto_address = self.parse_address(lines[0])
96             except:
97                 pass
98
99             if self.payto_address:
100                 self.unlock_amount()
101                 return
102
103         for line in lines:
104             try:
105                 to_address, amount = self.parse_address_and_amount(line)
106             except:
107                 continue
108                 
109             outputs.append((to_address, amount))
110             total += amount
111
112         self.outputs = outputs
113         self.payto_address = None
114
115         if total:
116             self.amount_edit.setAmount(total)
117         else:
118             self.amount_edit.setText("")
119
120         if total or len(lines)>1:
121             self.lock_amount()
122         else:
123             self.unlock_amount()
124
125
126     def get_outputs(self):
127         if self.payto_address:
128             try:
129                 amount = self.amount_edit.get_amount()
130             except:
131                 amount = None
132
133             self.outputs = [(self.payto_address, amount)]
134
135         return self.outputs[:]
136
137
138     def lines(self):
139         return str(self.toPlainText()).split('\n')
140
141
142     def is_multiline(self):
143         return len(self.lines()) > 1
144
145
146     def update_size(self):
147         docHeight = self.document().size().height()
148         if self.heightMin <= docHeight <= self.heightMax:
149             self.setMinimumHeight(docHeight + 2)
150             self.setMaximumHeight(docHeight + 2)
151
152
153     def setCompleter(self, completer):
154         self.c = completer
155         self.c.setWidget(self)
156         self.c.setCompletionMode(QCompleter.PopupCompletion)
157         self.c.activated.connect(self.insertCompletion)
158
159
160     def insertCompletion(self, completion):
161         if self.c.widget() != self:
162             return
163         tc = self.textCursor()
164         extra = completion.length() - self.c.completionPrefix().length()
165         tc.movePosition(QTextCursor.Left)
166         tc.movePosition(QTextCursor.EndOfWord)
167         tc.insertText(completion.right(extra))
168         self.setTextCursor(tc)
169  
170
171     def textUnderCursor(self):
172         tc = self.textCursor()
173         tc.select(QTextCursor.WordUnderCursor)
174         return tc.selectedText()
175
176
177     def keyPressEvent(self, e):
178         if self.isReadOnly():
179             return
180
181         if self.c.popup().isVisible():
182             if e.key() in [Qt.Key_Enter, Qt.Key_Return]:
183                 e.ignore()
184                 return
185
186         if e.key() in [Qt.Key_Tab]:
187             e.ignore()
188             return
189
190         if e.key() in [Qt.Key_Down, Qt.Key_Up] and not self.is_multiline():
191             e.ignore()
192             return
193
194         isShortcut = (e.modifiers() and Qt.ControlModifier) and e.key() == Qt.Key_E
195
196         if not self.c or not isShortcut:
197             QTextEdit.keyPressEvent(self, e)
198
199
200         ctrlOrShift = e.modifiers() and (Qt.ControlModifier or Qt.ShiftModifier)
201         if self.c is None or (ctrlOrShift and e.text().isEmpty()):
202             return
203
204         eow = QString("~!@#$%^&*()_+{}|:\"<>?,./;'[]\\-=")
205         hasModifier = (e.modifiers() != Qt.NoModifier) and not ctrlOrShift;
206         completionPrefix = self.textUnderCursor()
207
208         if not isShortcut and (hasModifier or e.text().isEmpty() or completionPrefix.length() < 1 or eow.contains(e.text().right(1)) ):
209             self.c.popup().hide()
210             return
211
212         if completionPrefix != self.c.completionPrefix():
213             self.c.setCompletionPrefix(completionPrefix);
214             self.c.popup().setCurrentIndex(self.c.completionModel().index(0, 0))
215
216         cr = self.cursorRect()
217         cr.setWidth(self.c.popup().sizeHintForColumn(0) + self.c.popup().verticalScrollBar().sizeHint().width())
218         self.c.complete(cr)
219
220