rock_widget_collection  0.1
BoundarySlider.h
Go to the documentation of this file.
1 #ifndef BOUNDARY_SLIDER_H
2 #define BOUNDARY_SLIDER_H
3 
4 #include "Slider.h"
5 
6 enum Direction {
7  LEFT,
9 };
10 
11 class BoundarySlider : public Slider
12 {
13 public:
14 
16  BoundarySlider(QGraphicsItem* parent, unsigned initIdx);
17 
18  Direction leftRight(BoundarySlider *otherMarker);
19 
20 protected:
21  void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
22 
23 };
24 
25 #endif // BOUNDARY_SLIDER_H
Definition: Slider.h:7
Direction
Definition: BoundarySlider.h:6
void mouseMoveEvent(QGraphicsSceneMouseEvent *event)
unsigned initIdx
Definition: Slider.h:34
Direction leftRight(BoundarySlider *otherMarker)