Forráskód Böngészése

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.
thankyouverycool 5 éve
szülő
commit
27109c3467

+ 4 - 3
Applications/Help/main.cpp

@@ -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();
 }

+ 2 - 2
Base/res/apps/Help.af

@@ -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

BIN
Base/res/icons/16x16/app-help.png


BIN
Base/res/icons/16x16/book-open.png


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