Base+Help: Add new Help app icons

This adds a new 32x32 Help application icon, a new open book icon,
copies the current book icon as Help's 16x16 icon, and updates
the Help application file to reflect these changes.
This commit is contained in:
thankyouverycool 2020-07-07 07:04:06 -04:00 committed by Andreas Kling
parent 92374fc942
commit 27109c3467
Notes: sideshowbarker 2024-07-19 05:02:50 +09:00
5 changed files with 6 additions and 5 deletions

View file

@ -75,7 +75,10 @@ int main(int argc, char* argv[])
unveil(nullptr, nullptr);
auto app_icon = GUI::Icon::default_icon("app-help");
auto window = GUI::Window::construct();
window->set_icon(app_icon.bitmap_for_size(16));
window->set_title("Help");
window->set_rect(300, 200, 570, 500);
@ -189,7 +192,7 @@ int main(int argc, char* argv[])
auto& app_menu = menubar->add_menu("Help");
app_menu.add_action(GUI::Action::create("About", [&](const GUI::Action&) {
GUI::AboutDialog::show("Help", Gfx::Bitmap::load_from_file("/res/icons/16x16/book.png"), window);
GUI::AboutDialog::show("Help", app_icon.bitmap_for_size(32), window);
}));
app_menu.add_separator();
app_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) {
@ -205,7 +208,5 @@ int main(int argc, char* argv[])
window->set_focused_widget(&tree_view);
window->show();
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/book.png"));
return app->exec();
}

View file

@ -4,5 +4,5 @@ Executable=/bin/Help
Category=Utilities
[Icons]
16x16=/res/icons/16x16/book.png
32x32=
16x16=/res/icons/16x16/app-help.png
32x32=/res/icons/32x32/app-help.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

BIN
Base/res/icons/32x32/app-help.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB