-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_display.cpp
36 lines (30 loc) · 1012 Bytes
/
html_display.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include "html_display.h"
namespace xml_viewer
{
HTML_display::HTML_display()
{
//TODO
mappings_filter_ = make_unique<Editor_mappings>();
installEventFilter(mappings_filter_.get());
file_watcher_ = make_unique<File_watcher>();
QObject::connect(
file_watcher_->get_fs_watcher(),
&QFileSystemWatcher::fileChanged,
this, &HTML_display::load_file);
QFont font(this->font().family(), 25);
setFont(font);
// setLineWrapMode(QTextEdit::NoWrap);
setStyleSheet(
"border-style: 'solid'; border-color: 'black'; border: 2;");
}
bool HTML_display::load_file(const QString& file_name)
{
std::cout << "load file: " << file_name.toStdString() << std::endl;
clear();
file_watcher_->set_file(file_name);
setSource(file_name);
// std::cout << toHtml().toStdString() << std::endl;
return true;
}
}