mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Taskbar: Use GUI::FileIconProvider for app icons
This commit is contained in:
parent
c670a2b52e
commit
0384eb41ae
Notes:
sideshowbarker
2024-07-19 00:38:08 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/0384eb41ae0 Pull-request: https://github.com/SerenityOS/serenity/pull/4521
1 changed files with 4 additions and 2 deletions
|
@ -32,7 +32,9 @@
|
|||
#include <LibGUI/BoxLayout.h>
|
||||
#include <LibGUI/Button.h>
|
||||
#include <LibGUI/Desktop.h>
|
||||
#include <LibGUI/FileIconProvider.h>
|
||||
#include <LibGUI/Frame.h>
|
||||
#include <LibGUI/Icon.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibGUI/Window.h>
|
||||
#include <LibGUI/WindowServerConnection.h>
|
||||
|
@ -114,14 +116,14 @@ void TaskbarWindow::create_quick_launch_bar()
|
|||
auto af = Core::ConfigFile::open(af_path);
|
||||
auto app_executable = af->read_entry("App", "Executable");
|
||||
auto app_name = af->read_entry("App", "Name");
|
||||
auto app_icon_path = af->read_entry("Icons", "16x16");
|
||||
auto app_icon = GUI::FileIconProvider::icon_for_path(app_executable).bitmap_for_size(16);
|
||||
|
||||
auto& button = quick_launch_bar.add<GUI::Button>();
|
||||
button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
|
||||
button.set_preferred_size(24, 24);
|
||||
button.set_button_style(Gfx::ButtonStyle::CoolBar);
|
||||
|
||||
button.set_icon(Gfx::Bitmap::load_from_file(app_icon_path));
|
||||
button.set_icon(app_icon);
|
||||
button.set_tooltip(app_name);
|
||||
button.on_click = [app_executable](auto) {
|
||||
pid_t pid = fork();
|
||||
|
|
Loading…
Reference in a new issue