repo.or.cz
/
kineticlist.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bigger list item.
[kineticlist.git]
/
kineticscroll_p.h
blob
96b545eada382aa96d36d8f81813afc1547464ae
1
#ifndef KINETICSCROLLINGPRIVATE_H
2
#define KINETICSCROLLINGPRIVATE_H
3
4
#include <QTime>
5
6
class
KineticScrollingPrivate
7
{
8
public
:
9
10
void
count
();
11
12
unsigned int
elapsed
();
13
14
unsigned int
timeDelta
;
15
qreal scrollVelocity
;
16
qreal movement
;
17
18
protected
:
19
QTime t
;
20
};
21
22
#endif