2010-02-05 20:09:04 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2010-02-05
|
2013-04-28 14:35:51 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2010-02-05 20:09:04 +00:00
|
|
|
#
|
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 .details_table import DetailsModel
|
|
|
|
|
|
|
|
class DetailsDialog(QDialog):
|
|
|
|
def __init__(self, parent, app):
|
|
|
|
QDialog.__init__(self, parent, Qt.Tool)
|
|
|
|
self.app = app
|
2012-01-16 14:29:57 +00:00
|
|
|
self.model = app.model.details_panel
|
2010-02-05 20:09:04 +00:00
|
|
|
self._setupUi()
|
2012-03-19 19:09:44 +00:00
|
|
|
# To avoid saving uninitialized geometry on appWillSavePrefs, we track whether our dialog
|
|
|
|
# has been shown. If it has, we know that our geometry should be saved.
|
|
|
|
self._shown_once = False
|
|
|
|
self.app.prefs.restoreGeometry('DetailsWindowRect', self)
|
2010-02-05 20:09:04 +00:00
|
|
|
self.tableModel = DetailsModel(self.model)
|
|
|
|
# tableView is defined in subclasses
|
|
|
|
self.tableView.setModel(self.tableModel)
|
2012-03-13 18:27:08 +00:00
|
|
|
self.model.view = self
|
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
|
|
|
|
|
2012-03-19 19:09:44 +00:00
|
|
|
def show(self):
|
|
|
|
self._shown_once = True
|
|
|
|
QDialog.show(self)
|
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
#--- Events
|
|
|
|
def appWillSavePrefs(self):
|
2012-03-19 19:09:44 +00:00
|
|
|
if self._shown_once:
|
|
|
|
self.app.prefs.saveGeometry('DetailsWindowRect', self)
|
2010-08-15 10:27:15 +00:00
|
|
|
|
|
|
|
#--- model --> view
|
2010-02-05 20:09:04 +00:00
|
|
|
def refresh(self):
|
|
|
|
self.tableModel.reset()
|
|
|
|
|