mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
28 lines
494 B
C++
28 lines
494 B
C++
|
#ifndef DISPLAY_MANUAL_HPP__
|
||
|
#define DISPLAY_MANUAL_HPP__
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#include "pimpl_h.hpp"
|
||
|
|
||
|
class QNetworkAccessManager;
|
||
|
class QDir;
|
||
|
class QUrl;
|
||
|
class QString;
|
||
|
|
||
|
class DisplayManual
|
||
|
: public QObject
|
||
|
{
|
||
|
public:
|
||
|
DisplayManual (QNetworkAccessManager *, QObject * = nullptr);
|
||
|
~DisplayManual ();
|
||
|
void display_html_url (QUrl const& url, QString const& name_we);
|
||
|
void display_html_file (QDir const& dir, QString const& name_we);
|
||
|
|
||
|
private:
|
||
|
class impl;
|
||
|
pimpl<impl> m_;
|
||
|
};
|
||
|
|
||
|
#endif
|