py_console.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2012, Dorian Scholz
00004 # All rights reserved.
00005 #
00006 # Redistribution and use in source and binary forms, with or without
00007 # modification, are permitted provided that the following conditions
00008 # are met:
00009 #
00010 #  * Redistributions of source code must retain the above copyright
00011 #    notice, this list of conditions and the following disclaimer.
00012 #  * Redistributions in binary form must reproduce the above
00013 #    copyright notice, this list of conditions and the following
00014 #    disclaimer in the documentation and/or other materials provided
00015 #    with the distribution.
00016 #  * Neither the name of Willow Garage, Inc. nor the names of its
00017 #    contributors may be used to endorse or promote products derived
00018 #    from this software without specific prior written permission.
00019 #
00020 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00021 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00022 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00023 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00024 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00025 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00026 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00027 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00028 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00029 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00030 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00031 # POSSIBILITY OF SUCH DAMAGE.
00032 
00033 from python_qt_binding.QtGui import QVBoxLayout, QWidget
00034 from qt_gui.plugin import Plugin
00035 from qt_gui_py_common.simple_settings_dialog import SimpleSettingsDialog
00036 from py_console_widget import PyConsoleWidget
00037 
00038 try:
00039     from spyder_console_widget import SpyderConsoleWidget
00040     _has_spyderlib = True
00041 except ImportError:
00042     _has_spyderlib = False
00043 
00044 
00045 class PyConsole(Plugin):
00046     """
00047     Plugin providing an interactive Python console
00048     """
00049     def __init__(self, context):
00050         super(PyConsole, self).__init__(context)
00051         self.setObjectName('PyConsole')
00052 
00053         self._context = context
00054         self._use_spyderlib = _has_spyderlib
00055         self._console_widget = None
00056         self._widget = QWidget()
00057         self._widget.setLayout(QVBoxLayout())
00058         self._widget.layout().setContentsMargins(0, 0, 0, 0)
00059         if context.serial_number() > 1:
00060             self._widget.setWindowTitle(self._widget.windowTitle() + (' (%d)' % context.serial_number()))
00061         self._context.add_widget(self._widget)
00062 
00063     def _switch_console_widget(self):
00064         self._widget.layout().removeWidget(self._console_widget)
00065         self.shutdown_console_widget()
00066 
00067         if _has_spyderlib and self._use_spyderlib:
00068             self._console_widget = SpyderConsoleWidget(self._context)
00069             self._widget.setWindowTitle('SpyderConsole')
00070         else:
00071             self._console_widget = PyConsoleWidget(self._context)
00072             self._widget.setWindowTitle('PyConsole')
00073         if self._context.serial_number() > 1:
00074             self._widget.setWindowTitle(self._widget.windowTitle() + (' (%d)' % self._context.serial_number()))
00075 
00076         self._widget.layout().addWidget(self._console_widget)
00077 
00078     def save_settings(self, plugin_settings, instance_settings):
00079         instance_settings.set_value('use_spyderlib', self._use_spyderlib)
00080 
00081     def restore_settings(self, plugin_settings, instance_settings):
00082         self._use_spyderlib = _has_spyderlib and (instance_settings.value('use_spyderlib', True) in [True, 'true'])
00083         self._switch_console_widget()
00084 
00085     def trigger_configuration(self):
00086         options = [
00087             {'title': 'SpyderConsole', 'description': 'Advanced Python console with tab-completion (needs spyderlib to be installed).', 'enabled': _has_spyderlib},
00088             {'title': 'PyConsole', 'description': 'Simple Python console.'},
00089         ]
00090         dialog = SimpleSettingsDialog(title='PyConsole Options')
00091         dialog.add_exclusive_option_group(title='Console Type', options=options, selected_index=int(not self._use_spyderlib))
00092         console_type = dialog.get_settings()[0]
00093         new_use_spyderlib = {0: True, 1: False}.get(console_type['selected_index'], self._use_spyderlib)
00094         if self._use_spyderlib != new_use_spyderlib:
00095             self._use_spyderlib = new_use_spyderlib
00096             self._switch_console_widget()
00097 
00098     def shutdown_console_widget(self):
00099         if self._console_widget is not None and hasattr(self._console_widget, 'shutdown'):
00100             self._console_widget.shutdown()
00101 
00102     def shutdown_plugin(self):
00103         self.shutdown_console_widget()


rqt_py_console
Author(s): Dorian Scholz
autogenerated on Wed Sep 16 2015 06:57:49