mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
20 lines
405 B
C++
20 lines
405 B
C++
#ifndef COMICS_VIEW_TRANSITION_H
|
|
#define COMICS_VIEW_TRANSITION_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "themable.h"
|
|
|
|
class ComicsViewTransition : public QWidget, protected Themable
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ComicsViewTransition(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void applyTheme(const Theme &theme) override;
|
|
void paintEvent(QPaintEvent *) override;
|
|
};
|
|
|
|
#endif // COMICS_VIEW_TRANSITION_H
|