Add what's new dialog

This commit is contained in:
Luis Ángel San Martín
2021-01-21 21:39:22 +01:00
parent 3f6c44ce7a
commit 58fdf0af23
16 changed files with 313 additions and 18 deletions

View File

@ -0,0 +1,18 @@
#ifndef WHATSNEWCONTROLLER_H
#define WHATSNEWCONTROLLER_H
class QWidget;
namespace YACReader {
class WhatsNewController
{
public:
WhatsNewController();
void showWhatsNewIfNeeded(QWidget *fromParent = nullptr);
void showWhatsNew(QWidget *fromParent = nullptr);
};
} // namespace YACReader
#endif // WHATSNEWCONTROLLER_H