Isis 3 Programmer Reference
FindSpotGraphicsItem.h
1 #ifndef FindSpotGraphicsItem_h
2 #define FindSpotGraphicsItem_h
3 
4 #include <QGraphicsEllipseItem>
5 
6 class QPointF;
7 
8 namespace Isis {
9  class MosaicSceneWidget;
10 
20  public:
21  FindSpotGraphicsItem(QPointF center,
22  MosaicSceneWidget *boundingRectSrc);
23  virtual ~FindSpotGraphicsItem();
24 
25  void paint(QPainter *, const QStyleOptionGraphicsItem *,
26  QWidget * widget = 0);
27  private:
28  QRectF calcRect() const;
29  QPointF *m_centerPoint;
30  MosaicSceneWidget *m_mosaicScene;
31  };
32 }
33 
34 #endif
35 
The visual display of the find point.
This widget encompasses the entire mosaic scene.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31