123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "InspectorWidget.h"
- #include "Tab.h"
- #include "WindowActions.h"
- #include <LibCore/File.h>
- #include <LibGUI/AboutDialog.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/BoxLayout.h>
- #include <LibGUI/TabWidget.h>
- #include <LibGUI/Window.h>
- #include <LibGfx/Bitmap.h>
- #include <LibWeb/ResourceLoader.h>
- #include <stdio.h>
- #include <stdlib.h>
- static const char* home_url = "file:///home/anon/www/welcome.html";
- int main(int argc, char** argv)
- {
- if (getuid() == 0) {
- fprintf(stderr, "Refusing to run as root\n");
- return 1;
- }
- if (pledge("stdio shared_buffer accept unix cpath rpath wpath fattr", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- GUI::Application app(argc, argv);
- // Connect to the ProtocolServer immediately so we can drop the "unix" pledge.
- Web::ResourceLoader::the();
- if (pledge("stdio shared_buffer accept cpath rpath wpath", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- if (unveil("/home", "rwc") < 0) {
- perror("unveil");
- return 1;
- }
- if (unveil("/res", "r") < 0) {
- perror("unveil");
- return 1;
- }
- unveil(nullptr, nullptr);
- auto window = GUI::Window::construct();
- window->set_rect(100, 100, 640, 480);
- window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-html.png"));
- window->set_title("Browser");
- auto& widget = window->set_main_widget<GUI::Widget>();
- widget.set_fill_with_background_color(true);
- widget.set_layout<GUI::VerticalBoxLayout>();
- widget.layout()->set_spacing(2);
- auto& tab_widget = widget.add<GUI::TabWidget>();
- tab_widget.set_text_alignment(Gfx::TextAlignment::CenterLeft);
- tab_widget.set_container_padding(0);
- tab_widget.set_uniform_tabs(true);
- tab_widget.on_change = [&](auto& active_widget) {
- auto& tab = static_cast<Browser::Tab&>(active_widget);
- window->set_title(String::format("%s - Browser", tab.title().characters()));
- tab.did_become_active();
- };
- Browser::WindowActions window_actions(*window);
- auto default_favicon = Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-html.png");
- ASSERT(default_favicon);
- Function<void(URL url, bool activate)> create_new_tab;
- create_new_tab = [&](auto url, auto activate) {
- auto& new_tab = tab_widget.add_tab<Browser::Tab>("New tab");
- tab_widget.set_tab_icon(new_tab, default_favicon);
- new_tab.on_title_change = [&](auto title) {
- tab_widget.set_tab_title(new_tab, title);
- if (tab_widget.active_widget() == &new_tab)
- window->set_title(String::format("%s - Browser", title.characters()));
- };
- new_tab.on_favicon_change = [&](auto& bitmap) {
- tab_widget.set_tab_icon(new_tab, &bitmap);
- };
- new_tab.on_tab_open_request = [&](auto& url) {
- create_new_tab(url, true);
- };
- new_tab.on_tab_close_request = [&](auto& tab) {
- tab_widget.deferred_invoke([&](auto&) {
- tab_widget.remove_tab(tab);
- if (tab_widget.children().is_empty())
- app.quit();
- });
- };
- new_tab.load(url);
- dbg() << "Added new tab " << &new_tab << ", loading " << url;
- if (activate)
- tab_widget.set_active_widget(&new_tab);
- };
- URL default_url = home_url;
- if (app.args().size() >= 1)
- default_url = URL::create_with_url_or_path(app.args()[0]);
- window_actions.on_create_new_tab = [&] {
- create_new_tab(default_url, true);
- };
- window_actions.on_next_tab = [&] {
- tab_widget.activate_next_tab();
- };
- window_actions.on_previous_tab = [&] {
- tab_widget.activate_previous_tab();
- };
- window_actions.on_about = [&] {
- GUI::AboutDialog::show("Browser", Gfx::Bitmap::load_from_file("/res/icons/32x32/filetype-html.png"), window);
- };
- create_new_tab(default_url, true);
- window->show();
- return app.exec();
- }
|