2019-06-15 18:20:55 +00:00
|
|
|
#include <LibCore/CFile.h>
|
2019-09-29 19:00:41 +00:00
|
|
|
#include <LibGUI/GAboutDialog.h>
|
|
|
|
#include <LibGUI/GAction.h>
|
2019-09-25 09:44:22 +00:00
|
|
|
#include <LibGUI/GApplication.h>
|
2019-09-29 19:00:41 +00:00
|
|
|
#include <LibGUI/GMenu.h>
|
|
|
|
#include <LibGUI/GMenuBar.h>
|
2019-09-25 09:44:22 +00:00
|
|
|
#include <LibGUI/GWindow.h>
|
2019-06-27 15:47:59 +00:00
|
|
|
#include <LibHTML/CSS/StyleResolver.h>
|
2019-06-27 18:40:21 +00:00
|
|
|
#include <LibHTML/DOM/Element.h>
|
2019-06-29 19:42:07 +00:00
|
|
|
#include <LibHTML/Dump.h>
|
2019-09-25 09:44:22 +00:00
|
|
|
#include <LibHTML/HtmlView.h>
|
2019-06-29 19:42:07 +00:00
|
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
2019-09-25 09:45:47 +00:00
|
|
|
#include <LibHTML/Layout/LayoutNode.h>
|
2019-06-29 19:42:07 +00:00
|
|
|
#include <LibHTML/Parser/CSSParser.h>
|
2019-06-21 18:54:13 +00:00
|
|
|
#include <LibHTML/Parser/HTMLParser.h>
|
2019-06-15 18:20:55 +00:00
|
|
|
#include <stdio.h>
|
2019-06-15 16:55:47 +00:00
|
|
|
|
2019-06-15 18:20:55 +00:00
|
|
|
int main(int argc, char** argv)
|
2019-06-15 16:55:47 +00:00
|
|
|
{
|
2019-09-25 09:44:22 +00:00
|
|
|
GApplication app(argc, argv);
|
|
|
|
|
2019-09-25 09:45:47 +00:00
|
|
|
auto f = CFile::construct();
|
|
|
|
bool success;
|
|
|
|
if (argc < 2) {
|
|
|
|
success = f->open(STDIN_FILENO, CIODevice::OpenMode::ReadOnly, CFile::ShouldCloseFileDescription::No);
|
|
|
|
} else {
|
|
|
|
f->set_filename(argv[1]);
|
|
|
|
success = f->open(CIODevice::OpenMode::ReadOnly);
|
|
|
|
}
|
|
|
|
if (!success) {
|
2019-09-21 18:50:06 +00:00
|
|
|
fprintf(stderr, "Error: %s\n", f->error_string());
|
2019-06-15 18:20:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2019-06-21 18:54:13 +00:00
|
|
|
|
2019-09-21 18:50:06 +00:00
|
|
|
String html = String::copy(f->read_all());
|
2019-11-06 19:52:18 +00:00
|
|
|
auto document = parse_html_document(html);
|
2019-06-16 19:35:03 +00:00
|
|
|
|
2019-09-25 09:44:22 +00:00
|
|
|
auto window = GWindow::construct();
|
|
|
|
auto widget = HtmlView::construct();
|
|
|
|
widget->set_document(document);
|
2019-09-29 14:26:28 +00:00
|
|
|
if (!widget->document()->title().is_null())
|
|
|
|
window->set_title(String::format("%s - HTML", widget->document()->title().characters()));
|
|
|
|
else
|
|
|
|
window->set_title("HTML");
|
2019-09-25 09:44:22 +00:00
|
|
|
window->set_main_widget(widget);
|
|
|
|
window->show();
|
|
|
|
|
2019-09-29 19:00:41 +00:00
|
|
|
auto menubar = make<GMenuBar>();
|
|
|
|
|
2019-12-09 20:05:28 +00:00
|
|
|
auto app_menu = GMenu::construct("HTML");
|
2019-09-29 19:00:41 +00:00
|
|
|
app_menu->add_action(GCommonActions::make_quit_action([&](auto&) {
|
|
|
|
app.quit();
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(app_menu));
|
|
|
|
|
2019-12-09 20:05:28 +00:00
|
|
|
auto help_menu = GMenu::construct("Help");
|
2019-09-29 19:00:41 +00:00
|
|
|
help_menu->add_action(GAction::create("About", [&](const GAction&) {
|
|
|
|
GAboutDialog::show("HTML", GraphicsBitmap::load_from_file("/res/icons/32x32/filetype-html.png"), window);
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(help_menu));
|
|
|
|
|
|
|
|
app.set_menubar(move(menubar));
|
|
|
|
|
|
|
|
window->set_icon(GraphicsBitmap::load_from_file("/res/icons/16x16/filetype-html.png"));
|
|
|
|
|
2019-09-25 09:44:22 +00:00
|
|
|
return app.exec();
|
2019-06-15 16:55:47 +00:00
|
|
|
}
|