1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:27:34 +00:00

Taskbar: Use GUI::AppFile

This commit is contained in:
Linus Groh 2020-12-27 18:56:55 +01:00 committed by Andreas Kling
parent 00402686f3
commit 6f95a6ca27

View file

@ -29,10 +29,10 @@
#include <AK/SharedBuffer.h> #include <AK/SharedBuffer.h>
#include <LibCore/ConfigFile.h> #include <LibCore/ConfigFile.h>
#include <LibCore/StandardPaths.h> #include <LibCore/StandardPaths.h>
#include <LibGUI/AppFile.h>
#include <LibGUI/BoxLayout.h> #include <LibGUI/BoxLayout.h>
#include <LibGUI/Button.h> #include <LibGUI/Button.h>
#include <LibGUI/Desktop.h> #include <LibGUI/Desktop.h>
#include <LibGUI/FileIconProvider.h>
#include <LibGUI/Frame.h> #include <LibGUI/Frame.h>
#include <LibGUI/Icon.h> #include <LibGUI/Icon.h>
#include <LibGUI/Painter.h> #include <LibGUI/Painter.h>
@ -111,20 +111,17 @@ void TaskbarWindow::create_quick_launch_bar()
// FIXME: Core::ConfigFile does not keep the order of the entries. // FIXME: Core::ConfigFile does not keep the order of the entries.
for (auto& name : config->keys(quick_launch)) { for (auto& name : config->keys(quick_launch)) {
auto af_name = config->read_entry(quick_launch, name); auto af_name = config->read_entry(quick_launch, name);
ASSERT(!af_name.is_null()); auto af_path = String::formatted("{}/{}", GUI::AppFile::APP_FILES_DIRECTORY, af_name);
auto af_path = String::format("/res/apps/%s", af_name.characters()); auto af = GUI::AppFile::open(af_path);
auto af = Core::ConfigFile::open(af_path); if (!af->is_valid())
auto app_executable = af->read_entry("App", "Executable"); continue;
auto app_name = af->read_entry("App", "Name"); auto app_executable = af->executable();
auto app_icon = GUI::FileIconProvider::icon_for_path(app_executable).bitmap_for_size(16);
auto& button = quick_launch_bar.add<GUI::Button>(); auto& button = quick_launch_bar.add<GUI::Button>();
button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed); button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
button.set_preferred_size(24, 24); button.set_preferred_size(24, 24);
button.set_button_style(Gfx::ButtonStyle::CoolBar); button.set_button_style(Gfx::ButtonStyle::CoolBar);
button.set_icon(af->icon().bitmap_for_size(16));
button.set_icon(app_icon); button.set_tooltip(af->name());
button.set_tooltip(app_name);
button.on_click = [app_executable](auto) { button.on_click = [app_executable](auto) {
pid_t pid = fork(); pid_t pid = fork();
if (pid < 0) { if (pid < 0) {