Mercurial > minori
comparison src/include/information.h @ 2:23d0d9319a00
Update
Also converted everything to LF from CRLF
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Sat, 12 Aug 2023 03:16:26 -0400 |
| parents | 1ae666fdf9e2 |
| children | 07a9095eaeed |
comparison
equal
deleted
inserted
replaced
| 1:1ae666fdf9e2 | 2:23d0d9319a00 |
|---|---|
| 1 #ifndef __information_h | 1 #ifndef __information_h |
| 2 #define __information_h | 2 #define __information_h |
| 3 class InformationDialog: public wxDialog { | 3 #include "anime.h" |
| 4 class InformationDialog: public QDialog { | |
| 5 Q_OBJECT | |
| 4 public: | 6 public: |
| 5 InformationDialog(wxWindow* parent, wxWindowID id, const wxString& title, | 7 InformationDialog(Anime& a, AnimeListWidgetModel* model, QWidget* parent = nullptr); |
| 6 const Anime& anime, const wxPoint& pos = wxDefaultPosition, | 8 |
| 7 long style = wxDEFAULT_DIALOG_STYLE); | |
| 8 private: | 9 private: |
| 9 wxNotebook* dialogText; | 10 void OnOK(); |
| 11 Anime* anime; | |
| 12 AnimeListWidgetModel* model; | |
| 10 }; | 13 }; |
| 11 #endif // __information_h | 14 #endif // __information_h |
