gitdiff.h 621 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef GITDIFF_H
  2. #define GITDIFF_H
  3. #include <QObject>
  4. #include <QMap>
  5. #include <QString>
  6. #include <diffmodel.h>
  7. struct git_commit;
  8. class GitRepository;
  9. class GitDiff : public QObject
  10. {
  11. Q_OBJECT
  12. Q_PROPERTY(QStringList files READ files CONSTANT)
  13. public:
  14. GitDiff(git_commit* a, git_commit* b, GitRepository* repository);
  15. ~GitDiff();
  16. void readBody(git_commit* a, git_commit* b);
  17. void reset();
  18. Q_INVOKABLE DiffModel* model(const QString& file);
  19. QStringList files();
  20. private:
  21. QMap<QString, QPointer<DiffModel> > m_diffList;
  22. GitRepository* m_repository;
  23. };
  24. #endif // GITDIFF_H