Format code using clang-format

This commit is contained in:
Luis Ángel San Martín
2019-05-30 19:46:37 +02:00
parent e0eb94e3ae
commit e3ec56aa43
356 changed files with 19824 additions and 21874 deletions

View File

@ -1,10 +1,8 @@
#ifndef IMPORT_WIDGET_H
#define IMPORT_WIDGET_H
#include <QtWidgets>
class ImportWidget : public QWidget
{
Q_OBJECT
@ -14,8 +12,8 @@ public:
signals:
void stop();
public slots:
void newComic(const QString & path, const QString & coverPath);
void newCover(const QPixmap & image);
void newComic(const QString &path, const QString &coverPath);
void newCover(const QPixmap &image);
void clear();
void addCoverTest();
void clearScene();
@ -25,26 +23,25 @@ public slots:
void showCovers(bool hide);
private:
QLabel * currentComicLabel;
QLabel * coversLabel;
QLabel * iconLabel;
QLabel * text;
QLabel * textDescription;
QWidget * coversViewContainer;
QGraphicsView * coversView;
QGraphicsScene * coversScene;
QPropertyAnimation * scrollAnimation;
QPushButton * stopButton;
QLabel *currentComicLabel;
QLabel *coversLabel;
QLabel *iconLabel;
QLabel *text;
QLabel *textDescription;
QWidget *coversViewContainer;
QGraphicsView *coversView;
QGraphicsScene *coversScene;
QPropertyAnimation *scrollAnimation;
QPushButton *stopButton;
int previousWidth;
bool updatingCovers;
QElapsedTimer * elapsedTimer;
QElapsedTimer *elapsedTimer;
quint64 i;
QToolButton * hideButton;
void resizeEvent(QResizeEvent * event);
QToolButton *hideButton;
void resizeEvent(QResizeEvent *event);
};
#endif // IMPORT_WIDGET_H