37 from python_qt_binding.QtCore
import QModelIndex
39 from python_qt_binding.QtGui
import QModelIndex
45 This class contains very similar information with 46 rqt_reconfigure.ParameterItem. The purpose of this class is to enable 47 FilterChildrenModel (subclassing QSortFilterProxyModel) to look up each 48 node, which, afaik, is not possible via QSortFilterProxyModel and that's 49 why I created this class. 51 That said, to store an info about each treenode: 53 - ParameterItem should be used to show on view. 54 - This class should be used when you need to keep track from 60 def __init__(self, nodename_full=None, qmindex=None):
62 :param index_id: default value is -1, which indicates "not set". This 64 :param nodename_full: default value is None, which indicates "not set". 66 :type index_id: qint64 67 :type nodename_full: str 68 :type qmindex: QModelIndex 70 super(TreenodeStatus, self).
__init__(qmindex)