mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 17:18:23 -04:00
Correcting errors in words and their meanings. Update the Russian language. Now look better.
18 lines
336 B
C++
18 lines
336 B
C++
#ifndef COMICS_VIEW_TRANSITION_H
|
|
#define COMICS_VIEW_TRANSITION_H
|
|
|
|
#include <QWidget>
|
|
|
|
class ComicsViewTransition : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ComicsViewTransition(QWidget *parent = 0);
|
|
QSize sizeHint();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *);
|
|
};
|
|
|
|
#endif // COMICS_VIEW_TRANSITION_H
|