mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Add .gitattributes rules for text and binary handling
This commit is contained in:
@ -1,31 +1,31 @@
|
||||
#ifndef YACREADERCOMICINFOHELPER_H
|
||||
#define YACREADERCOMICINFOHELPER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
|
||||
class ComicModel;
|
||||
|
||||
|
||||
class YACReaderComicInfoHelper : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit YACReaderComicInfoHelper(QObject *parent = 0);
|
||||
|
||||
void setModel(ComicModel *model);
|
||||
|
||||
Q_INVOKABLE void rate(int index, int rating);
|
||||
Q_INVOKABLE void setRead(int index, bool read);
|
||||
Q_INVOKABLE void addToFavorites(int index);
|
||||
Q_INVOKABLE void removeFromFavorites(int index);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
ComicModel *model;
|
||||
};
|
||||
|
||||
#endif // YACREADERCOMICINFOHELPER_H
|
||||
#ifndef YACREADERCOMICINFOHELPER_H
|
||||
#define YACREADERCOMICINFOHELPER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
|
||||
class ComicModel;
|
||||
|
||||
|
||||
class YACReaderComicInfoHelper : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit YACReaderComicInfoHelper(QObject *parent = 0);
|
||||
|
||||
void setModel(ComicModel *model);
|
||||
|
||||
Q_INVOKABLE void rate(int index, int rating);
|
||||
Q_INVOKABLE void setRead(int index, bool read);
|
||||
Q_INVOKABLE void addToFavorites(int index);
|
||||
Q_INVOKABLE void removeFromFavorites(int index);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
ComicModel *model;
|
||||
};
|
||||
|
||||
#endif // YACREADERCOMICINFOHELPER_H
|
||||
|
Reference in New Issue
Block a user