You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
552 B
19 lines
552 B
from PyQt4.QtGui import * |
|
from i18n import _ |
|
|
|
class HistoryWidget(QTreeWidget): |
|
|
|
def __init__(self, parent=None): |
|
QTreeWidget.__init__(self, parent) |
|
self.setColumnCount(2) |
|
self.setHeaderLabels([_("Amount"), _("To / From")]) |
|
self.setIndentation(0) |
|
|
|
def append(self, address, amount): |
|
if amount >= 0: |
|
display_amount = "+%s" % amount |
|
else: |
|
display_amount = "-%s" % (-amount) |
|
item = QTreeWidgetItem([display_amount, address]) |
|
self.insertTopLevelItem(0, item) |
|
|
|
|