summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/NavDisplayGUI_exec/NodeItem.h
blob: 3c93970d5d21f8c2b3dd013d0a758658161e0c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __NODEITEM_H
#define __NODEITEM_H

#include "NavUnit.h"
#include <QtCore/qtimer.h>
#include <QtGui/qbrush.h>
#include <QtCore/qobject.h>
#include <QtGui/qgraphicsitem.h>

const int  arrayColors[] =  {
     12,  //Qt::yellow,
     7,   //Qt::red,
     8,   //Qt::green,
     11,  //Qt::magenta,
     9,   //Qt::blue,
     10,  //Qt::cyan
     3,   //Qt::white
   } ;

class NodeItem: public QObject,
                public QGraphicsRectItem
{
  Q_OBJECT

public:
  NodeItem(QGraphicsScene *canvas, NavUnit &unit);

public slots:

private:
  NavUnit &unit_;

};


#endif // __NODEITEM_H