Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 import os
00036 from collections import OrderedDict
00037
00038 import dynamic_reconfigure.client
00039 from python_qt_binding import loadUi
00040 from python_qt_binding.QtCore import Qt, Signal
00041 from python_qt_binding.QtWidgets import QVBoxLayout, QWidget, QWidgetItem
00042 from rqt_py_common.layout_util import LayoutUtil
00043 import rospy
00044
00045 from . import logging
00046 from .dynreconf_client_widget import DynreconfClientWidget
00047
00048
00049 class ParameditWidget(QWidget):
00050 """
00051 This class represents a pane where parameter editor widgets of multiple
00052 nodes are shown. In rqt_reconfigure, this pane occupies right half of the
00053 entire visible area.
00054 """
00055
00056
00057 sig_node_disabled_selected = Signal(str)
00058
00059 def __init__(self, rospack):
00060 """"""
00061 super(ParameditWidget, self).__init__()
00062
00063 ui_file = os.path.join(rospack.get_path('rqt_reconfigure'),
00064 'resource', 'paramedit_pane.ui')
00065 loadUi(ui_file, self, {'ParameditWidget': ParameditWidget})
00066
00067 self._dynreconf_clients = OrderedDict()
00068
00069
00070 self.vlayout = QVBoxLayout(self.scrollarea_holder_widget)
00071
00072
00073 self.destroyed.connect(self.close)
00074
00075 def _set_index_widgets(self, view, paramitems_dict):
00076 """
00077 @deprecated: Causes error
00078 """
00079 i = 0
00080 for p in paramitems_dict:
00081 view.setIndexWidget(i, p)
00082 i += 1
00083
00084 def show_reconf(self, dynreconf_widget):
00085 """
00086 Callback when user chooses a node.
00087
00088 @param dynreconf_widget:
00089 """
00090 node_grn = dynreconf_widget.get_node_grn()
00091 logging.debug('ParameditWidget.show str(node_grn)=%s', str(node_grn))
00092
00093 if not node_grn in self._dynreconf_clients.keys():
00094
00095
00096
00097
00098 self._dynreconf_clients.__setitem__(node_grn, dynreconf_widget)
00099 self.vlayout.addWidget(dynreconf_widget)
00100 dynreconf_widget.sig_node_disabled_selected.connect(
00101 self._node_disabled)
00102
00103 else:
00104 self._remove_node(node_grn)
00105
00106
00107
00108
00109
00110
00111
00112
00113 LayoutUtil.alternate_color(
00114 self._dynreconf_clients.values(),
00115 [self.palette().window().color().lighter(125),
00116 self.palette().window().color().darker(125)])
00117
00118 def close(self):
00119 for dc in self._dynreconf_clients:
00120
00121 dc.close()
00122 dc = None
00123
00124 self._paramedit_scrollarea.deleteLater()
00125
00126 def filter_param(self, filter_key):
00127 """
00128 :type filter_key:
00129 """
00130
00131
00132
00133
00134
00135
00136 pass
00137
00138 def _remove_node(self, node_grn):
00139 try:
00140 i = self._dynreconf_clients.keys().index(node_grn)
00141 except ValueError:
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151 return
00152
00153 item = self.vlayout.itemAt(i)
00154 if isinstance(item, QWidgetItem):
00155 item.widget().close()
00156 w = self._dynreconf_clients.pop(node_grn)
00157
00158 logging.debug('popped={} Len of left clients={}'.format(
00159 w, len(self._dynreconf_clients)))
00160
00161 def _node_disabled(self, node_grn):
00162 logging.debug('paramedit_w _node_disabled grn={}'.format(node_grn))
00163
00164
00165
00166 self.sig_node_disabled_selected.emit(node_grn)
00167
00168
00169 self._remove_node(node_grn)