Package client :: Module IPythonShell :: Class IPythonView
[hide private]
[frames] | no frames]

Class IPythonView

source code


Nested Classes [hide private]

Inherited from PyQt4.QtGui.QBoxLayout: Direction

Inherited from PyQt4.QtGui.QLayout: SizeConstraint

Instance Methods [hide private]
 
__init__(self, layout, bridge)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
Init(self, host, port, user) source code
 
attemptImportNumpy(self)
IPythonView.attemptImportNumpy (self)
source code
 
attemptImportScipy(self)
IPythonView.attemptImportScipy (self)
source code
 
attemptImportPylab(self)
IPythonView.attemptImportPylab (self)
source code
 
Command(self, string, autoUpdate=True) source code
 
SilentCommand(self, string, autoUpdate=True) source code
 
ControllerCommand(self, string, autoUpdate=True) source code
 
BatchCommands(self, commands, finalUpdate=True) source code
 
toggleAutopx(self) source code
 
toggleSilentAutopx(self) source code
 
VisItPath(self) source code
 
ScriptPath(self) source code
 
getVariableType(self, var) source code
 
getVisitModuleStatus(self) source code
 
getVisItExposeContinuous(self) source code
 
getVisItExposeDiscrete(self) source code
 
getTopLevelRegions(self) source code
 
removeTopLevelRegion(self, oldname) source code
 
removeFreeVariable(self, oldname) source code
 
replaceFreeVariable(self, varName, shellAccess) source code
 
getFreeVariables(self) source code
 
isClear(self) source code
 
setUpdateLine(self) source code

Inherited from PyQt4.QtGui.QVBoxLayout: addChildLayout, addChildWidget, alignmentRect, childEvent, connectNotify, customEvent, disconnectNotify, insertItem, receivers, sender, timerEvent, widgetEvent

Inherited from PyQt4.QtGui.QBoxLayout: addItem, addLayout, addSpacing, addStretch, addStrut, addWidget, count, direction, expandingDirections, hasHeightForWidth, heightForWidth, insertLayout, insertSpacing, insertStretch, insertWidget, invalidate, itemAt, maximumSize, minimumHeightForWidth, minimumSize, setDirection, setGeometry, setStretchFactor, sizeHint, takeAt

Inherited from PyQt4.QtGui.QLayout: activate, closestAcceptableSize, geometry, indexOf, isEmpty, isEnabled, layout, margin, menuBar, parentWidget, removeItem, removeWidget, setAlignment, setEnabled, setMargin, setSizeConstraint, setSpacing, sizeConstraint, spacing, totalHeightForWidth, totalMaximumSize, totalMinimumSize, totalSizeHint, update

Inherited from PyQt4.QtCore.QObject: blockSignals, children, connect, deleteLater, disconnect, dumpObjectInfo, dumpObjectTree, dynamicPropertyNames, emit, event, eventFilter, findChild, findChildren, inherits, installEventFilter, isWidgetType, killTimer, metaObject, moveToThread, objectName, parent, property, removeEventFilter, setObjectName, setParent, setProperty, signalsBlocked, startTimer, thread, tr, trUtf8

Inherited from PyQt4.QtGui.QLayoutItem: alignment, spacerItem, widget

Inherited from sip.wrapper: __delattr__, __getattribute__, __new__, __setattr__

Inherited from object: __hash__, __reduce__, __reduce_ex__, __repr__, __str__

    Inherited from ConsoleView
 
_processLine(self) source code
 
getHistory(self) source code
 
raw_input(self, prompt='') source code
 
setMenuBar(self, menubar) source code
 
showPrompt(self, prompt) source code
 
showReturned(self, text) source code
 
showStatus(self, string) source code
 
write(self, text, editable=False) source code
    Inherited from IPShell
 
complete(self, text) source code
 
execute(self) source code
 
shell(self, cmd, verbose=0, debug=0, header='') source code
Class Variables [hide private]

Inherited from PyQt4.QtGui.QBoxLayout: BottomToTop, Down, LeftToRight, RightToLeft, TopToBottom, Up

Inherited from PyQt4.QtGui.QLayout: SetDefaultConstraint, SetFixedSize, SetMaximumSize, SetMinAndMaxSize, SetMinimumSize, SetNoConstraint

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, layout, bridge)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: IPShell.__init__

attemptImportNumpy(self)

source code 

IPythonView.attemptImportNumpy (self)

This function will try to import the module `numpy` onto the local machine. It will record its success in the bridge's ._importNumpy so that the client knows whether or not it can handle commands using the `numpy` module or not.

This method is assumed to be done while local. I omit checking for parallelism since this is performed in an initialization stage, where its status is in limbo.

attemptImportScipy(self)

source code 

IPythonView.attemptImportScipy (self)

This function will try to import the module `scipy` onto the local machine. It will record its success in the bridge's ._importScipy so that the client knows whether or not it can handle commands using the `scipy` module or not.

This method is assumed to be done while local. I omit checking for parallelism since this is performed in an initialization stage, where its status is in limbo.

attemptImportPylab(self)

source code 

IPythonView.attemptImportPylab (self)

This function will try to import the module `pylab` onto the local machine. It will record its success in the bridge's ._importPylab so that the client knows whether or not it can handle commands using the `pylab` module or not.

This method is assumed to be done while local. I omit checking for parallelism since this is performed in an initialization stage, where its status is in limbo.