┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kitemviews/private/kitemlistsmoothscroller.h
diff options
context:
space:
mode:
authorSerg Podtynnyi <[email protected]>2023-02-04 00:14:53 +0700
committerSerg Podtynnyi <[email protected]>2023-02-05 12:45:38 +0700
commit38c34eeca315c7be58e65d4d3fb72aaf7b866719 (patch)
tree886e53f20c9c43edc3eb7fe04789716a9bc98ebe /src/kitemviews/private/kitemlistsmoothscroller.h
parentffff8af851e3a386c44438337779d0ce7ca98a61 (diff)
Add clang-format and format code as in Frameworks
Diffstat (limited to 'src/kitemviews/private/kitemlistsmoothscroller.h')
-rw-r--r--src/kitemviews/private/kitemlistsmoothscroller.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/src/kitemviews/private/kitemlistsmoothscroller.h b/src/kitemviews/private/kitemlistsmoothscroller.h
index 7b2839884..d1cfcf9d9 100644
--- a/src/kitemviews/private/kitemlistsmoothscroller.h
+++ b/src/kitemviews/private/kitemlistsmoothscroller.h
@@ -25,17 +25,16 @@ class DOLPHIN_EXPORT KItemListSmoothScroller : public QObject
Q_OBJECT
public:
- explicit KItemListSmoothScroller(QScrollBar* scrollBar,
- QObject* parent = nullptr);
+ explicit KItemListSmoothScroller(QScrollBar *scrollBar, QObject *parent = nullptr);
~KItemListSmoothScroller() override;
- void setScrollBar(QScrollBar* scrollBar);
- QScrollBar* scrollBar() const;
+ void setScrollBar(QScrollBar *scrollBar);
+ QScrollBar *scrollBar() const;
- void setTargetObject(QObject* target);
- QObject* targetObject() const;
+ void setTargetObject(QObject *target);
+ QObject *targetObject() const;
- void setPropertyName(const QByteArray& propertyName);
+ void setPropertyName(const QByteArray &propertyName);
QByteArray propertyName() const;
/**
@@ -67,27 +66,25 @@ public:
/**
* Forwards wheel events to the scrollbar, ensuring smooth and proper scrolling
*/
- void handleWheelEvent(QWheelEvent* event);
+ void handleWheelEvent(QWheelEvent *event);
Q_SIGNALS:
/**
* Emitted when the scrolling animation has finished
*/
void scrollingStopped();
+
protected:
- bool eventFilter(QObject* obj, QEvent* event) override;
+ bool eventFilter(QObject *obj, QEvent *event) override;
private Q_SLOTS:
- void slotAnimationStateChanged(QAbstractAnimation::State newState,
- QAbstractAnimation::State oldState);
+ void slotAnimationStateChanged(QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
private:
bool m_scrollBarPressed;
bool m_smoothScrolling;
- QScrollBar* m_scrollBar;
- QPropertyAnimation* m_animation;
+ QScrollBar *m_scrollBar;
+ QPropertyAnimation *m_animation;
};
#endif
-
-