1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

Applications: Add fullscreen for Office category

This commit is contained in:
Hugh Davenport 2024-01-05 10:12:06 +13:00 committed by Andrew Kaster
parent 4aca883d51
commit 8886324cbf
3 changed files with 15 additions and 0 deletions

View file

@ -241,6 +241,11 @@ ErrorOr<void> PDFViewerWidget::initialize_menubar(GUI::Window& window)
view_menu->add_action(*m_zoom_out_action);
view_menu->add_action(*m_reset_zoom_action);
view_menu->add_separator();
view_menu->add_action(GUI::CommonActions::make_fullscreen_action([&](auto&) {
window.set_fullscreen(!window.is_fullscreen());
}));
auto help_menu = window.add_menu("&Help"_string);
help_menu->add_action(GUI::CommonActions::make_command_palette_action(&window));
help_menu->add_action(GUI::CommonActions::make_about_action("PDF Viewer"_string, GUI::Icon::default_icon("app-pdf-viewer"sv), &window));