-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathscrollareacustom.h
68 lines (52 loc) · 1.35 KB
/
scrollareacustom.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef SCROLLAREACUSTOM_H
#define SCROLLAREACUSTOM_H
#include <QWidget>
#include <QTimer>
#include <QVector>
#include <QPainter>
#include <QMouseEvent>
#include <QWheelEvent>
#include <QGraphicsOpacityEffect>
#include <QPropertyAnimation>
#include "scrolllistcontainer.h"
#include "scrollindicator.h"
#include <QDebug>
#include <QQueue>
#define MAXSPEED 50
class ScrollAreaCustom : public QWidget
{
Q_OBJECT
private:
QTimer* getCord;
QTimer* rfrshView;
ScrollListContainer* container;
ScrollIndicator* indicator;
QPropertyAnimation* bounce;
bool pressed = false;
bool scrollDown = true;
bool outOfEdge = false;
int strtY;
int lastY;
int bfEdgeY; //last y value before out of edge
int curSpd = 0;
int damp = 1;
int moveStored = 0;
int nextMove = 1;
void paintEvent(QPaintEvent* event);
void mousePressEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
void wheelEvent(QWheelEvent* event);
void bounceBack();
public:
explicit ScrollAreaCustom(QWidget *parent = nullptr);
void addWidget(QWidget* newWidget);
void removeWidget(QWidget* w = nullptr);
void clear();
signals:
private slots:
void scrollContainer();
void updateSpd();
void scrollIndicator(int dp);
};
#endif // SCROLLAREACUSTOM_H