summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/NavDisplayGUI_exec/DetailView.h
blob: add1545a12ddc574e466440f5aa6fd7314f87410 (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
// $Id$

#ifndef __DETAILVIEW_H
#define __DETAILVIEW_H


#include "NavUnit.h"
#include <QtGui/qwidget.h>

class QLabel;
class QSpinBox;

class DetailView : public QWidget
{
  Q_OBJECT

public:
  DetailView(QWidget *parent);
  virtual ~DetailView();

public slots:
  void currentNode(NavUnit *unit);
  void updateLocation(const UnitLocation &loc);

private:
  QSpinBox *y_edit;
  QSpinBox *x_edit;
};


#endif // __DETAILVIEW_H