mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
14 lines
249 B
C++
14 lines
249 B
C++
class HtmlViewerWindow : public Window {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QVBoxLayout *layout;
|
|
QTextBrowser *document;
|
|
|
|
void show(const char *title, const char *htmlData);
|
|
HtmlViewerWindow();
|
|
|
|
public slots:
|
|
};
|
|
|
|
extern HtmlViewerWindow *htmlViewerWindow;
|