2010-02-05 20:09:04 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2010-02-05
|
2015-01-03 21:30:57 +00:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2020-01-01 02:16:27 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2010-02-05 20:09:04 +00:00
|
|
|
|
2013-10-20 19:15:09 +00:00
|
|
|
from PyQt5.QtCore import Qt
|
2020-07-14 15:37:48 +00:00
|
|
|
from PyQt5.QtWidgets import QDockWidget, QWidget
|
2010-02-05 20:09:04 +00:00
|
|
|
|
|
|
|
from .details_table import DetailsModel
|
2020-07-15 20:04:19 +00:00
|
|
|
from hscommon.plat import ISLINUX
|
2010-02-05 20:09:04 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2020-07-13 03:06:04 +00:00
|
|
|
class DetailsDialog(QDockWidget):
|
2013-10-20 19:53:59 +00:00
|
|
|
def __init__(self, parent, app, **kwargs):
|
|
|
|
super().__init__(parent, Qt.Tool, **kwargs)
|
2020-07-15 20:04:19 +00:00
|
|
|
self.parent = parent
|
2010-02-05 20:09:04 +00:00
|
|
|
self.app = app
|
2012-01-16 14:29:57 +00:00
|
|
|
self.model = app.model.details_panel
|
2020-07-14 15:37:48 +00:00
|
|
|
self.setAllowedAreas(Qt.AllDockWidgetAreas)
|
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
|
2020-01-01 02:16:27 +00:00
|
|
|
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
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
self.app.willSavePrefs.connect(self.appWillSavePrefs)
|
2020-01-01 02:16:27 +00:00
|
|
|
|
|
|
|
def _setupUi(self): # Virtual
|
2010-02-05 20:09:04 +00:00
|
|
|
pass
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2012-03-19 19:09:44 +00:00
|
|
|
def show(self):
|
|
|
|
self._shown_once = True
|
2013-10-20 19:53:59 +00:00
|
|
|
super().show()
|
2020-07-15 20:47:32 +00:00
|
|
|
self.update_options()
|
2012-03-19 19:09:44 +00:00
|
|
|
|
2020-07-14 15:37:48 +00:00
|
|
|
def update_options(self):
|
|
|
|
# This disables the title bar (if we had not set one before already)
|
|
|
|
# essentially making it a simple floating window, not dockable anymore
|
|
|
|
if not self.app.prefs.details_dialog_titlebar_enabled \
|
|
|
|
and not self.titleBarWidget():
|
|
|
|
self.setTitleBarWidget(QWidget())
|
2020-07-15 20:04:19 +00:00
|
|
|
# Windows (and MacOS?) users cannot move a floating window which
|
|
|
|
# has not native decoration so we force it to dock for now
|
|
|
|
if not ISLINUX:
|
|
|
|
self.setFloating(False)
|
2020-07-14 15:37:48 +00:00
|
|
|
elif self.titleBarWidget() is not None:
|
|
|
|
# resets to the default title bar
|
|
|
|
self.setTitleBarWidget(None)
|
|
|
|
|
|
|
|
features = self.features()
|
|
|
|
if self.app.prefs.details_dialog_vertical_titlebar:
|
|
|
|
self.setFeatures(features | QDockWidget.DockWidgetVerticalTitleBar)
|
|
|
|
elif features & QDockWidget.DockWidgetVerticalTitleBar:
|
|
|
|
self.setFeatures(features ^ QDockWidget.DockWidgetVerticalTitleBar)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
# --- Events
|
2010-08-15 10:27:15 +00:00
|
|
|
def appWillSavePrefs(self):
|
2020-07-15 20:47:32 +00:00
|
|
|
if self._shown_once and self.isFloating():
|
2020-01-01 02:16:27 +00:00
|
|
|
self.app.prefs.saveGeometry("DetailsWindowRect", self)
|
|
|
|
|
|
|
|
# --- model --> view
|
2010-02-05 20:09:04 +00:00
|
|
|
def refresh(self):
|
2013-10-20 19:15:09 +00:00
|
|
|
self.tableModel.beginResetModel()
|
|
|
|
self.tableModel.endResetModel()
|