graph_item.py
Go to the documentation of this file.
1 #
2 # License: Yujin
3 #
4 ##############################################################################
5 # Description
6 ##############################################################################
7 
8 """
9 .. module:: graph_item
10  :platform: Unix
11  :synopsis: Repackaging of the limiting ROS qt_dotgraph.graph_item module.
12 
13 Oh my spaghettified magnificence,
14 Bless my noggin with a tickle from your noodly appendages!
15 
16 """
17 
18 ##############################################################################
19 # Imports
20 ##############################################################################
21 
22 from python_qt_binding.QtGui import QColor
23 try: # indigo
24  from python_qt_binding.QtGui import QGraphicsItemGroup
25 except ImportError: # kinetic+ (pyqt5)
26  from python_qt_binding.QtWidgets import QGraphicsItemGroup
27 
28 ##############################################################################
29 # Classes
30 ##############################################################################
31 
32 
33 class GraphItem(QGraphicsItemGroup):
34 
35  _COLOR_BLACK = QColor(0, 0, 0)
36  _COLOR_BLUE = QColor(0, 0, 204)
37  _COLOR_GREEN = QColor(0, 170, 0)
38  _COLOR_ORANGE = QColor(255, 165, 0)
39  _COLOR_RED = QColor(255, 0, 0)
40  _COLOR_TEAL = QColor(0, 170, 170)
41 
42  def __init__(self, highlight_level, parent=None):
43  super(GraphItem, self).__init__(parent)
44  self._highlight_level = highlight_level
def __init__(self, highlight_level, parent=None)
Definition: graph_item.py:42


rqt_py_trees
Author(s): Thibault Kruse, Michal Staniaszek, Daniel Stonier, Naveed Usmani
autogenerated on Mon Jun 10 2019 14:55:56