mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
16 lines
320 B
C
16 lines
320 B
C
|
|
#ifndef HELP_TEXT_WINDOW_HPP__
|
||
|
|
#define HELP_TEXT_WINDOW_HPP__
|
||
|
|
|
||
|
|
#include <QFont>
|
||
|
|
#include <QLabel>
|
||
|
|
|
||
|
|
class QString;
|
||
|
|
|
||
|
|
class HelpTextWindow final : public QLabel {
|
||
|
|
public:
|
||
|
|
HelpTextWindow(QString const &title, QString const &file_name,
|
||
|
|
QFont const & = QFont{}, QWidget *parent = nullptr);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|