annotate src/include/information.h @ 8:b1f73678ef61
update
text paragraphs are now their own objects, as they should be
author |
Paper <mrpapersonic@gmail.com> |
date |
Sat, 26 Aug 2023 03:39:34 -0400 |
parents |
07a9095eaeed |
children |
|
rev |
line source |
2
|
1 #ifndef __information_h
|
|
2 #define __information_h
|
7
|
3 #include <QDialog>
|
2
|
4 #include "anime.h"
|
|
5 class InformationDialog: public QDialog {
|
|
6 Q_OBJECT
|
|
7 public:
|
|
8 InformationDialog(Anime& a, AnimeListWidgetModel* model, QWidget* parent = nullptr);
|
|
9
|
|
10 private:
|
|
11 void OnOK();
|
|
12 Anime* anime;
|
|
13 AnimeListWidgetModel* model;
|
|
14 };
|
1
|
15 #endif // __information_h |