electrum-bitcoinprivate/gui/qt/amountedit.py

63 lines
1.9 KiB
Python
Raw Normal View History

2013-04-06 14:34:12 -07:00
# -*- coding: utf-8 -*-
from PyQt4.QtCore import *
from PyQt4.QtGui import *
2014-06-05 03:40:07 -07:00
from decimal import Decimal
2013-04-06 14:34:12 -07:00
class AmountEdit(QLineEdit):
2014-06-05 03:40:07 -07:00
def __init__(self, decimal_point, is_int = False, parent=None):
2013-04-06 14:34:12 -07:00
QLineEdit.__init__(self, parent)
2014-06-05 03:40:07 -07:00
self.decimal_point = decimal_point
2013-04-06 14:34:12 -07:00
self.textChanged.connect(self.numbify)
self.is_int = is_int
2013-04-07 13:08:56 -07:00
self.is_shortcut = False
2013-04-06 14:34:12 -07:00
2014-06-05 03:40:07 -07:00
def base_unit(self):
p = self.decimal_point()
assert p in [5,8]
return "BTC" if p == 8 else "mBTC"
def get_amount(self):
x = unicode( self.text() )
if x in['.', '']:
return None
p = pow(10, self.decimal_point())
return int( p * Decimal(x) )
def setAmount(self, amount):
p = pow(10, self.decimal_point())
x = amount / Decimal(p)
self.setText(str(x))
2013-04-06 14:34:12 -07:00
def paintEvent(self, event):
QLineEdit.paintEvent(self, event)
2014-06-05 03:40:07 -07:00
if self.decimal_point:
2013-04-06 14:34:12 -07:00
panel = QStyleOptionFrameV2()
self.initStyleOption(panel)
textRect = self.style().subElementRect(QStyle.SE_LineEditContents, panel, self)
textRect.adjust(2, 0, -10, 0)
painter = QPainter(self)
painter.setPen(self.palette().brush(QPalette.Disabled, QPalette.Text).color())
2014-06-05 03:40:07 -07:00
painter.drawText(textRect, Qt.AlignRight | Qt.AlignVCenter, self.base_unit())
2013-04-06 14:34:12 -07:00
def numbify(self):
text = unicode(self.text()).strip()
2013-04-07 13:08:56 -07:00
if text == '!':
self.is_shortcut = True
2013-04-06 14:34:12 -07:00
pos = self.cursorPosition()
chars = '0123456789'
if not self.is_int: chars +='.'
s = ''.join([i for i in text if i in chars])
if not self.is_int:
if '.' in s:
p = s.find('.')
s = s.replace('.','')
s = s[:p] + '.' + s[p:p+8]
self.setText(s)
self.setCursorPosition(pos)
2014-06-04 05:49:55 -07:00