Files
pallectrum/electrum/gui/qt/amountedit.py

131 lines
4.3 KiB
Python
Raw Normal View History

2013-04-06 23:34:12 +02:00
# -*- coding: utf-8 -*-
2018-05-09 19:30:18 +02:00
from decimal import Decimal
from PyQt5.QtCore import pyqtSignal, Qt
from PyQt5.QtGui import QPalette, QPainter, QFontMetrics
2017-09-23 05:54:38 +02:00
from PyQt5.QtWidgets import (QLineEdit, QStyle, QStyleOptionFrame)
2013-04-06 23:34:12 +02:00
from .util import char_width_in_lineedit
from electrum.util import (format_satoshis_plain, decimal_point_to_base_unit_name,
FEERATE_PRECISION, quantize_feerate)
2013-04-06 23:34:12 +02:00
2017-01-22 21:25:24 +03:00
2014-06-05 14:49:32 +02:00
class MyLineEdit(QLineEdit):
frozen = pyqtSignal()
2014-06-05 14:49:32 +02:00
def setFrozen(self, b):
self.setReadOnly(b)
self.setFrame(not b)
self.frozen.emit()
2014-06-05 14:49:32 +02:00
class AmountEdit(MyLineEdit):
2014-09-07 18:45:06 +02:00
shortcut = pyqtSignal()
2013-04-06 23:34:12 +02:00
2018-05-09 19:30:18 +02:00
def __init__(self, base_unit, is_int=False, parent=None):
QLineEdit.__init__(self, parent)
# This seems sufficient for hundred-BTC amounts with 8 decimals
self.setFixedWidth(16 * char_width_in_lineedit())
self.base_unit = base_unit
self.textChanged.connect(self.numbify)
self.is_int = is_int
self.is_shortcut = False
self.help_palette = QPalette()
2018-05-09 19:30:18 +02:00
self.extra_precision = 0
2014-06-16 18:38:28 +02:00
def decimal_point(self):
return 8
2018-05-09 19:30:18 +02:00
def max_precision(self):
return self.decimal_point() + self.extra_precision
def numbify(self):
2017-01-30 12:36:56 +03:00
text = self.text().strip()
if text == '!':
2014-09-07 18:45:06 +02:00
self.shortcut.emit()
return
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('.','')
2018-05-09 19:30:18 +02:00
s = s[:p] + '.' + s[p:p+self.max_precision()]
self.setText(s)
# setText sets Modified to False. Instead we want to remember
# if updates were because of user modification.
self.setModified(self.hasFocus())
self.setCursorPosition(pos)
def paintEvent(self, event):
QLineEdit.paintEvent(self, event)
if self.base_unit:
2017-09-23 05:54:38 +02:00
panel = QStyleOptionFrame()
self.initStyleOption(panel)
textRect = self.style().subElementRect(QStyle.SE_LineEditContents, panel, self)
textRect.adjust(2, 0, -10, 0)
painter = QPainter(self)
painter.setPen(self.help_palette.brush(QPalette.Disabled, QPalette.Text).color())
painter.drawText(textRect, Qt.AlignRight | Qt.AlignVCenter, self.base_unit())
2014-07-16 15:33:59 +02:00
def get_amount(self):
try:
return (int if self.is_int else Decimal)(str(self.text()))
2014-07-16 15:33:59 +02:00
except:
return None
2017-12-01 09:58:24 +01:00
def setAmount(self, x):
self.setText("%d"%x)
class BTCAmountEdit(AmountEdit):
2018-05-09 19:30:18 +02:00
def __init__(self, decimal_point, is_int=False, parent=None):
AmountEdit.__init__(self, self._base_unit, is_int, parent)
2014-06-05 12:40:07 +02:00
self.decimal_point = decimal_point
2013-04-06 23:34:12 +02:00
def _base_unit(self):
2018-05-05 12:42:17 +02:00
return decimal_point_to_base_unit_name(self.decimal_point())
2014-06-05 12:40:07 +02:00
def get_amount(self):
2014-06-11 18:17:27 +02:00
try:
x = Decimal(str(self.text()))
except:
2014-06-05 12:40:07 +02:00
return None
2018-05-09 19:30:18 +02:00
# scale it to max allowed precision, make it an int
power = pow(10, self.max_precision())
max_prec_amount = int(power * x)
# if the max precision is simply what unit conversion allows, just return
if self.max_precision() == self.decimal_point():
return max_prec_amount
# otherwise, scale it back to the expected unit
amount = Decimal(max_prec_amount) / pow(10, self.max_precision()-self.decimal_point())
return Decimal(amount) if not self.is_int else int(amount)
2014-06-05 12:40:07 +02:00
def setAmount(self, amount):
2014-06-14 18:02:45 +02:00
if amount is None:
self.setText(" ") # Space forces repaint in case units changed
else:
self.setText(format_satoshis_plain(amount, self.decimal_point()))
2015-08-04 07:15:54 +02:00
2017-12-18 22:26:29 +01:00
class FeerateEdit(BTCAmountEdit):
2018-05-09 19:30:18 +02:00
def __init__(self, decimal_point, is_int=False, parent=None):
super().__init__(decimal_point, is_int, parent)
self.extra_precision = FEERATE_PRECISION
2015-08-04 07:15:54 +02:00
def _base_unit(self):
return 'sat/byte'
2017-12-18 22:26:29 +01:00
def get_amount(self):
sat_per_byte_amount = BTCAmountEdit.get_amount(self)
return quantize_feerate(sat_per_byte_amount)
def setAmount(self, amount):
amount = quantize_feerate(amount)
super().setAmount(amount)