File: HelpTextWindow.h

package info (click to toggle)
js8call 2.5.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,720 kB
  • sloc: cpp: 562,655; sh: 898; python: 132; ansic: 102; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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