Source code for ccpn.ui.gui.widgets.Blank
"""
Module Documentation here
"""
#=========================================================================================
# Licence, Reference and Credits
#=========================================================================================
__copyright__ = "Copyright (C) CCPN project (http://www.ccpn.ac.uk) 2014 - 2019"
__credits__ = ("Ed Brooksbank, Luca Mureddu, Timothy J Ragan & Geerten W Vuister")
__licence__ = ("CCPN licence. See http://www.ccpn.ac.uk/v3-software/downloads/license")
__reference__ = ("Skinner, S.P., Fogh, R.H., Boucher, W., Ragan, T.J., Mureddu, L.G., & Vuister, G.W.",
"CcpNmr AnalysisAssign: a flexible platform for integrated NMR analysis",
"J.Biomol.Nmr (2016), 66, 111-124, http://doi.org/10.1007/s10858-016-0060-y")
#=========================================================================================
# Last code modification
#=========================================================================================
__modifiedBy__ = "$modifiedBy: CCPN $"
__dateModified__ = "$dateModified: 2018-12-20 15:53:21 +0000 (Thu, December 20, 2018) $"
__version__ = "$Revision: 3.0.0 $"
#=========================================================================================
# Created
#=========================================================================================
__author__ = "$Author: Ed Brooksbank $"
__date__ = "$Date: 2018-12-20 15:44:35 +0000 (Thu, December 20, 2018) $"
#=========================================================================================
# Start of code
#=========================================================================================
from PyQt5 import QtCore
from ccpn.ui.gui.popups.Dialog import CcpnDialog
from ccpn.util.Logging import getLogger
[docs]class Blank(CcpnDialog):
def __init__(self, parent=None, title='Blank', **kwds):
super().__init__(parent, setLayout=True, windowTitle=title, **kwds)
self.setWindowFlags(self.windowFlags() |
QtCore.Qt.WindowMaximizeButtonHint |
QtCore.Qt.WindowMinimizeButtonHint)
[docs] def changeEvent(self, event):
if event.type() == QtCore.QEvent.WindowStateChange:
if self.windowState() & QtCore.Qt.WindowMinimized:
getLogger().info('>>>Blank changeEvent: Minimised')
elif event.oldState() & QtCore.Qt.WindowMinimized:
getLogger().info('>>>Blank changeEvent: Normal/Maximised/FullScreen')
# TODO:ED update table from dataFrame
event.ignore()
if __name__ == '__main__':
from ccpn.ui.gui.widgets.Application import TestApplication
app = TestApplication()
popup = Blank()
popup.show()
popup.raise_()
app.start()