2010-02-05 20:09:04 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2010-02-05
|
|
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2010-02-05 20:09:04 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2010-02-05 20:09:04 +00:00
|
|
|
|
|
|
|
from PyQt4.QtCore import Qt
|
|
|
|
from PyQt4.QtGui import QDialog
|
|
|
|
|
|
|
|
from core.gui.details_panel import DetailsPanel
|
|
|
|
|
|
|
|
from .details_table import DetailsModel
|
|
|
|
|
|
|
|
class DetailsDialog(QDialog):
|
|
|
|
def __init__(self, parent, app):
|
|
|
|
QDialog.__init__(self, parent, Qt.Tool)
|
|
|
|
self.app = app
|
|
|
|
self.model = DetailsPanel(self, app)
|
|
|
|
self._setupUi()
|
2010-08-15 10:27:15 +00:00
|
|
|
if self.app.prefs.detailsWindowRect is not None:
|
|
|
|
self.setGeometry(self.app.prefs.detailsWindowRect)
|
2010-02-05 20:09:04 +00:00
|
|
|
self.tableModel = DetailsModel(self.model)
|
|
|
|
# tableView is defined in subclasses
|
|
|
|
self.tableView.setModel(self.tableModel)
|
2010-02-12 14:39:29 +00:00
|
|
|
self.model.connect()
|
2010-08-15 10:27:15 +00:00
|
|
|
|
|
|
|
self.app.willSavePrefs.connect(self.appWillSavePrefs)
|
2010-02-05 20:09:04 +00:00
|
|
|
|
|
|
|
def _setupUi(self): # Virtual
|
|
|
|
pass
|
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
#--- Events
|
|
|
|
def appWillSavePrefs(self):
|
|
|
|
self.app.prefs.detailsWindowRect = self.geometry()
|
|
|
|
|
|
|
|
#--- model --> view
|
2010-02-05 20:09:04 +00:00
|
|
|
def refresh(self):
|
|
|
|
self.tableModel.reset()
|
|
|
|
|