jtdx/HelpTextWindow.hpp

18 lines
324 B
C++
Raw Normal View History

2020-02-21 11:05:07 +02:00
#ifndef HELP_TEXT_WINDOW_HPP__
#define HELP_TEXT_WINDOW_HPP__
#include <QLabel>
#include <QFont>
class QString;
class HelpTextWindow final
: public QLabel
{
2021-02-01 22:54:21 +02:00
Q_OBJECT;
2020-02-21 11:05:07 +02:00
public:
HelpTextWindow (QString const& title, QString const& text, QFont const& = QFont {}, QWidget * parent = nullptr);
2020-02-21 11:05:07 +02:00
};
#endif