rock_widget_collection  0.1
IndexSlider.cc
Go to the documentation of this file.
1 #include "IndexSlider.h"
2 #include "SlideBarItem.h"
3 #include <iostream>
4 
6 
7 }
8 
9 IndexSlider::IndexSlider(QGraphicsItem* parent, unsigned initIdx) : Slider(parent, initIdx) {
10  setLastIndex(((SlideBarItem*)parentItem())->getStartIndex()); // initialize variable to first index for safety reasons.
11  setShapeMode(BoundingRectShape);
12  setPixmap(QPixmap(":/timeline/index_slider"));
13  setOffset(-0.5*width(), -0.5*height());
14 }
Definition: Slider.h:7
virtual int width() const
Definition: Slider.cc:47
void setLastIndex(unsigned index)
Definition: Slider.cc:55
virtual int height() const
Definition: Slider.cc:43