Newer
Older
'''
Created on 1 févr. 2014
@author: inso
'''
from cutecoin.gen_resources.mainwindow_uic import Ui_MainWindow
from PyQt5.QtWidgets import QMainWindow, QAction, QFileDialog
from PyQt5.QtCore import QSignalMapper
from cutecoin.gui.process_cfg_account import ProcessConfigureAccount
from cutecoin.gui.transfer import TransferMoneyDialog
from cutecoin.gui.currency_tab import CurrencyTabWidget
from cutecoin.gui.add_contact import AddContactDialog
from cutecoin.gui.import_account import ImportAccountDialog
from cutecoin.gui.certification import CertificationDialog
def __init__(self, app):
'''
Constructor
'''
# Set up the user interface from Designer.
dialog = ProcessConfigureAccount(self.app, None)
dialog.accepted.connect(self.refresh)
def action_change_account(self, account_name):
self.app.current_account = self.app.get_account(account_name)
logging.info('Changing account to ' + self.app.current_account.name)
dialog = TransferMoneyDialog(self.app.current_account)
dialog.accepted.connect(self.refresh_wallets)
dialog.exec_()
def open_certification_dialog(self):
dialog = CertificationDialog(self.app.current_account)
dialog.exec_()
AddContactDialog(self.app.current_account, self).exec_()
def open_configure_account_dialog(self):
dialog = ProcessConfigureAccount(self.app, self.app.current_account)
def refresh_wallets(self):
currency_tab = self.currencies_tabwidget.currentWidget()
currency_tab.refresh_wallets()
'''
Refresh main window
When the selected account changes, all the widgets
in the window have to be refreshed
'''
def refresh(self):
self.menu_change_account.clear()
signal_mapper = QSignalMapper(self)
for account in self.app.accounts:
action = QAction(account.name, self)
self.menu_change_account.addAction(action)
signal_mapper.setMapping(action, account.name)
action.triggered.connect(signal_mapper.map)
signal_mapper.mapped[str].connect(self.action_change_account)
if self.app.current_account is None:
self.menu_contacts.setEnabled(False)
self.menu_actions.setEnabled(False)
self.menu_contacts.setEnabled(True)
self.menu_actions.setEnabled(True)
self.label_account_name.setText(
"Current account : " +
self.app.current_account.name)
for community in self.app.current_account.communities:
tab_currency = CurrencyTabWidget(self.app, community)
tab_currency.refresh()
self.currencies_tabwidget.addTab(tab_currency, community.name())
for contact in self.app.current_account.contacts:
self.menu_contacts_list.addAction(contact.name)
dialog = ImportAccountDialog(self.app, self)
dialog.accepted.connect(self.refresh)
dialog.exec_()
def export_account(self):
selected_file = QFileDialog.getSaveFileName(self,
"Export an account",
"",
"All account files (*.acc)")
path = ""
if selected_file[0][-4:] == ".acc":
path = selected_file[0]
else:
path = selected_file[0] + ".acc"
self.app.export_account(path, self.app.current_account)