Source code for ccpn.ui.gui.widgets.Console

"""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: 2017-07-07 16:32:52 +0100 (Fri, July 07, 2017) $"
__version__ = "$Revision: 3.0.0 $"
#=========================================================================================
# Created
#=========================================================================================
__author__ = "$Author: CCPN $"
__date__ = "$Date: 2017-04-07 10:28:41 +0000 (Fri, April 07, 2017) $"
#=========================================================================================
# Start of code
#=========================================================================================

import pyqtgraph.console as console
from PyQt5 import QtGui, QtWidgets


[docs]class Console(console.ConsoleWidget): def __init__(self, parent=None, namespace=None, historyFile=None): super().__init__(parent, namespace=namespace, historyFile=historyFile) # self.console.addAction() self.runMacroButton = QtWidgets.QPushButton() # self.console.ui.runMacroButton.setCheckable(True) self.runMacroButton.setText('Run Macro') self.ui.horizontalLayout.addWidget(self.runMacroButton) # #
[docs] def runMacro(self): print('runMacro')
# macroFile = QtWidgets.QFileDialog.getOpenFileName(self, "Run Macro") # print(macroFile)