fix labels plugin
[electrum-nvc.git] / plugins / pointofsale.py
1 import re
2 import platform
3 from decimal import Decimal
4
5 from PyQt4.QtGui import *
6 from PyQt4.QtCore import *
7 import PyQt4.QtCore as QtCore
8 import PyQt4.QtGui as QtGui
9
10 from electrum_gui.qt.qrcodewidget import QRCodeWidget
11
12 from electrum import bmp, pyqrnative, BasePlugin
13 from electrum.i18n import _
14
15
16 if platform.system() == 'Windows':
17     MONOSPACE_FONT = 'Lucida Console'
18 elif platform.system() == 'Darwin':
19     MONOSPACE_FONT = 'Monaco'
20 else:
21     MONOSPACE_FONT = 'monospace'
22
23 column_index = 3
24
25 class QR_Window(QWidget):
26
27     def __init__(self, exchanger):
28         QWidget.__init__(self)
29         self.exchanger = exchanger
30         self.setWindowTitle('Electrum - '+_('Invoice'))
31         self.setMinimumSize(800, 250)
32         self.address = ''
33         self.label = ''
34         self.amount = 0
35         self.setFocusPolicy(QtCore.Qt.NoFocus)
36
37         main_box = QHBoxLayout()
38         
39         self.qrw = QRCodeWidget()
40         main_box.addWidget(self.qrw, 1)
41
42         vbox = QVBoxLayout()
43         main_box.addLayout(vbox)
44
45         self.address_label = QLabel("")
46         #self.address_label.setFont(QFont(MONOSPACE_FONT))
47         vbox.addWidget(self.address_label)
48
49         self.label_label = QLabel("")
50         vbox.addWidget(self.label_label)
51
52         self.amount_label = QLabel("")
53         vbox.addWidget(self.amount_label)
54
55         vbox.addStretch(1)
56         self.setLayout(main_box)
57
58
59     def set_content(self, addr, label, amount, currency):
60         self.address = addr
61         address_text = "<span style='font-size: 18pt'>%s</span>" % addr if addr else ""
62         self.address_label.setText(address_text)
63
64         if currency == 'BTC': currency = None
65         amount_text = ''
66         if amount:
67             if currency:
68                 self.amount = Decimal(amount) / self.exchanger.exchange(1, currency) if currency else amount
69             else:
70                 self.amount = Decimal(amount)
71             self.amount = self.amount.quantize(Decimal('1.0000'))
72
73             if currency:
74                 amount_text += "<span style='font-size: 18pt'>%s %s</span><br/>" % (amount, currency)
75             amount_text += "<span style='font-size: 21pt'>%s</span> <span style='font-size: 16pt'>BTC</span> " % str(self.amount) 
76         self.amount_label.setText(amount_text)
77
78         self.label = label
79         label_text = "<span style='font-size: 21pt'>%s</span>" % label if label else ""
80         self.label_label.setText(label_text)
81
82         msg = 'bitcoin:'+self.address
83         if self.amount is not None:
84             msg += '?amount=%s'%(str( self.amount))
85             if self.label is not None:
86                 msg += '&label=%s'%(self.label)
87         elif self.label is not None:
88             msg += '?label=%s'%(self.label)
89             
90         self.qrw.set_addr( msg )
91
92
93
94
95 class Plugin(BasePlugin):
96
97     def fullname(self):
98         return 'Point of Sale'
99
100     def description(self):
101         return _('Show QR code window and amounts requested for each address. Add menu item to request amount.')
102
103     def init(self):
104         self.window = self.gui.main_window
105         self.wallet = self.window.wallet
106
107         self.qr_window = None
108         self.merchant_name = self.config.get('merchant_name', 'Invoice')
109
110         self.window.expert_mode = True
111         self.window.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Request')])
112         self.requested_amounts = {}
113         self.toggle_QR_window(True)
114
115     def load_wallet(self, wallet):
116         self.wallet = wallet
117         self.requested_amounts = self.wallet.storage.get('requested_amounts',{}) 
118
119     def close(self):
120         self.window.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Tx')])
121         self.toggle_QR_window(False)
122     
123
124     def close_main_window(self):
125         if self.qr_window: 
126             self.qr_window.close()
127             self.qr_window = None
128
129     
130     def timer_actions(self):
131         if self.qr_window:
132             self.qr_window.qrw.update_qr()
133
134
135     def toggle_QR_window(self, show):
136         if show and not self.qr_window:
137             self.qr_window = QR_Window(self.gui.exchanger)
138             self.qr_window.setVisible(True)
139             self.qr_window_geometry = self.qr_window.geometry()
140             item = self.window.receive_list.currentItem()
141             if item:
142                 address = str(item.text(1))
143                 label = self.wallet.labels.get(address)
144                 amount, currency = self.requested_amounts.get(address, (None, None))
145                 self.qr_window.set_content( address, label, amount, currency )
146
147         elif show and self.qr_window and not self.qr_window.isVisible():
148             self.qr_window.setVisible(True)
149             self.qr_window.setGeometry(self.qr_window_geometry)
150
151         elif not show and self.qr_window and self.qr_window.isVisible():
152             self.qr_window_geometry = self.qr_window.geometry()
153             self.qr_window.setVisible(False)
154
155
156     
157     def update_receive_item(self, address, item):
158         try:
159             amount, currency = self.requested_amounts.get(address, (None, None))
160         except:
161             print "cannot get requested amount", address, self.requested_amounts.get(address)
162             amount, currency = None, None
163             self.requested_amounts.pop(address)
164
165         amount_str = amount + (' ' + currency if currency else '') if amount is not None  else ''
166         item.setData(column_index,0,amount_str)
167
168
169     
170     def current_item_changed(self, a):
171         if not self.wallet: 
172             return
173         if a is not None and self.qr_window and self.qr_window.isVisible():
174             address = str(a.text(0))
175             label = self.wallet.labels.get(address)
176             try:
177                 amount, currency = self.requested_amounts.get(address, (None, None))
178             except:
179                 amount, currency = None, None
180             self.qr_window.set_content( address, label, amount, currency )
181
182
183     
184     def item_changed(self, item, column):
185         if column != column_index:
186             return
187         address = str( item.text(0) )
188         text = str( item.text(column) )
189         try:
190             seq = self.wallet.get_address_index(address)
191             index = seq[1][1]
192         except:
193             print "cannot get index"
194             return
195
196         text = text.strip().upper()
197         print text
198         m = re.match('^(\d*(|\.\d*))\s*(|BTC|EUR|USD|GBP|CNY|JPY|RUB|BRL)$', text)
199         if m and m.group(1) and m.group(1)!='.':
200             amount = m.group(1)
201             currency = m.group(3)
202             if not currency:
203                 currency = 'BTC'
204             else:
205                 currency = currency.upper()
206                     
207             self.requested_amounts[address] = (amount, currency)
208             self.wallet.storage.put('requested_amounts', self.requested_amounts, True)
209
210             label = self.wallet.labels.get(address)
211             if label is None:
212                 label = self.merchant_name + ' - %04d'%(index+1)
213                 self.wallet.labels[address] = label
214
215             if self.qr_window:
216                 self.qr_window.set_content( address, label, amount, currency )
217
218         else:
219             item.setText(column,'')
220             if address in self.requested_amounts:
221                 self.requested_amounts.pop(address)
222             
223         self.window.update_receive_item(self.window.receive_list.currentItem())
224
225
226
227
228     def edit_amount(self):
229         l = self.window.receive_list
230         item = l.currentItem()
231         item.setFlags(Qt.ItemIsEditable|Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled)
232         l.editItem( item, column_index )
233         item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled)
234
235     
236     def receive_menu(self, menu):
237         menu.addAction(_("Request amount"), self.edit_amount)
238
239