rock_widget_collection  0.1
IndexSlider.h
Go to the documentation of this file.
1 #ifndef INDEXSLIDER_H
2 #define INDEXSLIDER_H
3 
4 #include <QGraphicsItem>
5 #include "Slider.h"
6 
7 class IndexSlider : public Slider
8 {
9 public:
10 
11  static const int WIDTH = 1;
12 
13  IndexSlider();
14  IndexSlider(QGraphicsItem* parent, unsigned initIdx);
15 
16 protected:
17 
18 private:
19  int sliderHeight;
20 };
21 
22 #endif /* INDEXSLIDER_H */
23 
Definition: Slider.h:7
unsigned initIdx
Definition: Slider.h:34
static const int WIDTH
Definition: IndexSlider.h:11