123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /*
- * Copyright (c) 2021, Matthew Olsson <mattco@serenityos.org>
- * Copyright (c) 2021, Mustafa Quraish <mustafa@cs.toronto.edu>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include "PDFViewerWidget.h"
- #include <LibCore/File.h>
- #include <LibFileSystemAccessClient/Client.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/BoxLayout.h>
- #include <LibGUI/FilePicker.h>
- #include <LibGUI/Label.h>
- #include <LibGUI/Menu.h>
- #include <LibGUI/Menubar.h>
- #include <LibGUI/MessageBox.h>
- #include <LibGUI/Splitter.h>
- #include <LibGUI/Toolbar.h>
- #include <LibGUI/ToolbarContainer.h>
- PDFViewerWidget::PDFViewerWidget()
- {
- set_fill_with_background_color(true);
- set_layout<GUI::VerticalBoxLayout>();
- create_toolbar();
- auto& splitter = add<GUI::HorizontalSplitter>();
- m_sidebar = splitter.add<SidebarWidget>();
- m_sidebar->set_fixed_width(0);
- m_viewer = splitter.add<PDFViewer>();
- m_viewer->on_page_change = [&](auto new_page) {
- m_page_text_box->set_current_number(new_page + 1);
- };
- }
- void PDFViewerWidget::initialize_menubar(GUI::Window& window)
- {
- auto& file_menu = window.add_menu("&File");
- file_menu.add_action(GUI::CommonActions::make_open_action([&](auto&) {
- auto response = FileSystemAccessClient::Client::the().open_file(window.window_id());
- if (response.error != 0) {
- if (response.error != -1)
- GUI::MessageBox::show_error(&window, String::formatted("Opening \"{}\" failed: {}", *response.chosen_file, strerror(response.error)));
- return;
- }
- open_file(*response.fd, *response.chosen_file);
- }));
- file_menu.add_separator();
- file_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) {
- GUI::Application::the()->quit();
- }));
- auto& help_menu = window.add_menu("&Help");
- help_menu.add_action(GUI::CommonActions::make_about_action("PDF Viewer", GUI::Icon::default_icon("app-pdf-viewer"), &window));
- }
- void PDFViewerWidget::create_toolbar()
- {
- auto& toolbar_container = add<GUI::ToolbarContainer>();
- auto& toolbar = toolbar_container.add<GUI::Toolbar>();
- auto open_outline_action = GUI::Action::create(
- "Open &Sidebar", { Mod_Ctrl, Key_O }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/sidebar.png"), [&](auto& action) {
- m_sidebar_open = !m_sidebar_open;
- m_sidebar->set_fixed_width(m_sidebar_open ? 0 : 200);
- action.set_text(m_sidebar_open ? "Open &Sidebar" : "Close &Sidebar");
- },
- nullptr);
- open_outline_action->set_enabled(false);
- m_toggle_sidebar_action = open_outline_action;
- toolbar.add_action(*open_outline_action);
- toolbar.add_separator();
- m_go_to_prev_page_action = GUI::Action::create("Go to &Previous Page", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/go-up.png"), [&](auto&) {
- VERIFY(m_viewer->current_page() > 0);
- m_page_text_box->set_current_number(m_viewer->current_page());
- });
- m_go_to_prev_page_action->set_enabled(false);
- m_go_to_next_page_action = GUI::Action::create("Go to &Next Page", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/go-down.png"), [&](auto&) {
- VERIFY(m_viewer->current_page() < m_viewer->document()->get_page_count() - 1);
- m_page_text_box->set_current_number(m_viewer->current_page() + 2);
- });
- m_go_to_next_page_action->set_enabled(false);
- toolbar.add_action(*m_go_to_prev_page_action);
- toolbar.add_action(*m_go_to_next_page_action);
- m_page_text_box = toolbar.add<NumericInput>();
- m_page_text_box->set_enabled(false);
- m_page_text_box->set_fixed_width(30);
- m_page_text_box->set_min_number(1);
- m_page_text_box->on_number_changed = [&](i32 number) {
- auto page_count = m_viewer->document()->get_page_count();
- auto new_page_number = static_cast<u32>(number);
- VERIFY(new_page_number >= 1 && new_page_number <= page_count);
- m_viewer->set_current_page(new_page_number - 1);
- m_viewer->update();
- m_go_to_prev_page_action->set_enabled(new_page_number > 1);
- m_go_to_next_page_action->set_enabled(new_page_number < page_count);
- };
- m_total_page_label = toolbar.add<GUI::Label>();
- }
- void PDFViewerWidget::open_file(int fd, String const& path)
- {
- auto file = Core::File::construct();
- if (!file->open(fd, Core::OpenMode::ReadOnly, Core::File::ShouldCloseFileDescriptor::Yes) && file->error() != ENOENT) {
- GUI::MessageBox::show(window(), String::formatted("Opening \"{}\" failed: {}", path, strerror(errno)), "Error", GUI::MessageBox::Type::Error);
- return;
- }
- window()->set_title(String::formatted("{} - PDF Viewer", path));
- m_buffer = file->read_all();
- auto document = PDF::Document::create(m_buffer);
- if (!document) {
- GUI::MessageBox::show_error(nullptr, String::formatted("Couldn't load PDF: {}", path));
- return;
- }
- m_viewer->set_document(document);
- m_total_page_label->set_text(String::formatted("of {}", document->get_page_count()));
- m_total_page_label->set_fixed_width(30);
- m_page_text_box->set_enabled(true);
- m_page_text_box->set_current_number(1, false);
- m_page_text_box->set_max_number(document->get_page_count());
- m_go_to_prev_page_action->set_enabled(false);
- m_go_to_next_page_action->set_enabled(document->get_page_count() > 1);
- m_toggle_sidebar_action->set_enabled(true);
- if (document->outline()) {
- auto outline = document->outline();
- m_sidebar->set_outline(outline.release_nonnull());
- m_sidebar->set_fixed_width(200);
- m_sidebar_open = true;
- } else {
- m_sidebar->set_outline({});
- m_sidebar->set_fixed_width(0);
- m_sidebar_open = false;
- }
- }
|