Summit II/Python Scripting: Difference between revisions

From ParaQ Wiki
Jump to navigationJump to search
No edit summary
 
No edit summary
 
Line 8: Line 8:
|-
|-
|pqConsoleWidget
|pqConsoleWidget
|Provides an interactive "shell" widget, that can be customized to suit.
|Provides an interactive "shell" widget, that encapsulates line-oriented input and output.
|-
|-
|pqPythonStream
|pqPythonStream
Line 14: Line 14:
|-
|-
|pqPythonShell
|pqPythonShell
|Provides an interactive Python "shell" widget, with its own embedded Python interpreter.
|Combines pqPythonStream, pqConsoleWidget, and an instance of pqPythonInterpreter to create an interactive Python "shell" widget.
|-
|-
|pqPythonDialog
|pqPythonDialog
|Provides the interactive Python dialog as seen in pqClient.
|Wraps pqPythonShell into a QDialog to provide the interactive Python dialog as seen in pqClient.
|}
|}

Latest revision as of 14:20, 10 March 2006

Class Description
pqPythonInterpreter Wraps an instance of a Python interpreter.
pqConsoleWidget Provides an interactive "shell" widget, that encapsulates line-oriented input and output.
pqPythonStream Used to redirect Python stream output to a set of Qt signals.
pqPythonShell Combines pqPythonStream, pqConsoleWidget, and an instance of pqPythonInterpreter to create an interactive Python "shell" widget.
pqPythonDialog Wraps pqPythonShell into a QDialog to provide the interactive Python dialog as seen in pqClient.