Source code for ccpn.ui.gui.popups.AboutPopup
"""
Module Documentation here
"""
#=========================================================================================
# Licence, Reference and Credits
#=========================================================================================
__copyright__ = "Copyright (C) CCPN project (http://www.ccpn.ac.uk) 2014 - 2021"
__credits__ = ("Ed Brooksbank, Joanna Fox, Victoria A Higman, Luca Mureddu, Eliza Płoskoń",
"Timothy J Ragan, Brian O Smith, Gary S Thompson & 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: Ed Brooksbank $"
__dateModified__ = "$dateModified: 2021-07-22 13:40:13 +0100 (Thu, July 22, 2021) $"
__version__ = "$Revision: 3.0.4 $"
#=========================================================================================
# Created
#=========================================================================================
__author__ = "$Author: Luca Mureddu $"
__date__ = "$Date: 2017-03-30 11:28:58 +0100 (Thu, March 30, 2017) $"
#=========================================================================================
# Start of code
#=========================================================================================
import os
from ccpn.util import Path
from PyQt5 import QtGui, QtWidgets, QtCore
from ccpn.ui.gui.widgets.Label import Label
from ccpn.ui.gui.widgets.ButtonList import ButtonList
from ccpn.ui.gui.widgets.Base import Base # ejb
from ccpn.ui.gui.popups.Dialog import CcpnDialog # ejb
# This text is being copied on the clipboard only. Is not the source of the image in the popup.
# The image is in ccpn.ui.gui.widgets
TEXT = ''' Copyright (C) CCPN project (www.ccpn.ac.uk) 2014 - 2021
|
**Active Developers:**
Ed Brooksbank, Joanna Fox, Victoria A Higman, Luca Mureddu, Eliza Płoskoń,
Timothy J Ragan, Brian O Smith, Gary S Thompson & Geerten W Vuister
**This program uses:**
The CCPN data model: J Biomol NMR (2006) 36:147–155, DOI 10.1007/s10858-006-9076-z
PyQtGraph (http://www.pyqtgraph.org)
PyQt (http://pyqt.sourceforge.net)
Miniconda, subject to Anaconda End User Licence Agreement (https://docs.continuum.io/anaconda/eula)
**Disclaimer:**
This program is offered 'as-is'. Under no circumstances will the authors, CCPN, the Department of Molecular
and Cell Biology, or the University of Leicester be liable for any damage, loss of data, loss of revenue or
any other undesired consequences originating from the usage of this software.
'''
if __name__ == '__main__':
from ccpn.ui.gui.widgets.Application import TestApplication
from ccpn.ui.gui.popups.Dialog import CcpnDialog
app = TestApplication()
popup = AboutPopup()
popup.show()
popup.raise_()
app.start()