Source code for qudi.util.widgets.advanced_dockwidget

# -*- coding: utf-8 -*-

"""
This file contains a more advanced QDockWidget subclass.

Copyright (c) 2021, the qudi developers. See the AUTHORS.md file at the top-level directory of this
distribution and on <https://github.com/Ulm-IQO/qudi-core/>

This file is part of qudi.

Qudi is free software: you can redistribute it and/or modify it under the terms of
the GNU Lesser General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.

Qudi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with qudi.
If not, see <https://www.gnu.org/licenses/>.
"""

__all__ = ['AdvancedDockWidget']

from PySide2 import QtCore, QtWidgets


[docs] class AdvancedDockWidget(QtWidgets.QDockWidget): """ QDockWidget that emits a sigClosed signal when handling a closeEvent """ sigClosed = QtCore.Signal()
[docs] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.setObjectName(self.windowTitle())
def closeEvent(self, event): self.sigClosed.emit() return super().closeEvent(event)