mirror of https://github.com/bsnes-emu/bsnes.git
24 lines
593 B
C++
24 lines
593 B
C++
|
#include "htmlviewer.moc"
|
||
|
HtmlViewerWindow *htmlViewerWindow;
|
||
|
|
||
|
HtmlViewerWindow::HtmlViewerWindow() {
|
||
|
setObjectName("html-window");
|
||
|
resize(560, 480);
|
||
|
setGeometryString(&config().geometry.htmlViewerWindow);
|
||
|
application.windowList.append(this);
|
||
|
|
||
|
layout = new QVBoxLayout;
|
||
|
layout->setMargin(Style::WindowMargin);
|
||
|
layout->setSpacing(0);
|
||
|
setLayout(layout);
|
||
|
|
||
|
document = new QTextBrowser;
|
||
|
layout->addWidget(document);
|
||
|
}
|
||
|
|
||
|
void HtmlViewerWindow::show(const char *title, const char *htmlData) {
|
||
|
document->setHtml(string() << htmlData);
|
||
|
setWindowTitle(title);
|
||
|
Window::show();
|
||
|
}
|