Oops ... NOW, fix the bug in bounce effect using mouse wheel
[kineticlist.git] / scrollbar.h
bloba8b6743bd3d7d540fa3d3feb2b164522a70a18b0
1 #ifndef SCROLLBAR_H
2 #define SCROLLBAR_H
4 #include <QGraphicsProxyWidget>
6 class ScrollBar : public QGraphicsProxyWidget
8 Q_OBJECT
10 public:
11 ScrollBar( QGraphicsItem *parent );
12 ~ScrollBar();
14 void setMaximum( int max );
15 void setValue( int value );
16 Q_SIGNALS:
17 void valueChanged( int value );
19 public Q_SLOTS:
20 void setValueChanged( int value );
23 #endif