fetch and display messages
This commit is contained in:
parent
5bbe266c8c
commit
e88e00a793
3 changed files with 180 additions and 0 deletions
|
|
@ -22,6 +22,7 @@ from weboob.tools.application.qt.backendcfg import BackendCfg
|
|||
from weboob.capabilities.messages import ICapMessages
|
||||
|
||||
from .ui.main_window_ui import Ui_MainWindow
|
||||
from .messages_manager import MessagesManager
|
||||
|
||||
class MainWindow(QtMainWindow):
|
||||
def __init__(self, config, weboob, parent=None):
|
||||
|
|
@ -31,6 +32,9 @@ class MainWindow(QtMainWindow):
|
|||
|
||||
self.config = config
|
||||
self.weboob = weboob
|
||||
self.manager = MessagesManager(weboob, self)
|
||||
|
||||
self.setCentralWidget(self.manager)
|
||||
|
||||
self.connect(self.ui.actionModules, SIGNAL("triggered()"), self.modulesConfig)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue