WSJT-X/widgets/HelpTextWindow.hpp
2020-07-29 18:44:34 +01:00

19 lines
308 B
C++

#ifndef HELP_TEXT_WINDOW_HPP__
#define HELP_TEXT_WINDOW_HPP__
#include <QLabel>
#include <QFont>
class QString;
class HelpTextWindow final
: public QLabel
{
Q_OBJECT
public:
HelpTextWindow (QString const& title, QString const& text, QFont const& = QFont {}, QWidget * parent = nullptr);
};
#endif