mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:02:45 +00:00 
			
		
		
		
	 5e1499d104
			
		
	
	
		5e1499d104
		
	
	
	
	
		
			
			This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			160 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			160 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Fabian Blatz <fabianblatz@gmail.com>
 | |
|  * Copyright (c) 2023, David Ganz <david.g.ganz@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Error.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <LibConfig/Listener.h>
 | |
| #include <LibCore/FileWatcher.h>
 | |
| #include <LibDesktop/AppFile.h>
 | |
| #include <LibGUI/Button.h>
 | |
| #include <LibGUI/Frame.h>
 | |
| #include <LibGfx/Rect.h>
 | |
| 
 | |
| namespace Taskbar {
 | |
| 
 | |
| class QuickLaunchEntry {
 | |
| public:
 | |
|     static OwnPtr<QuickLaunchEntry> create_from_path(StringView path);
 | |
| 
 | |
|     virtual ~QuickLaunchEntry() = default;
 | |
|     virtual ErrorOr<void> launch() const = 0;
 | |
|     virtual GUI::Icon icon() const = 0;
 | |
|     virtual ByteString name() const = 0;
 | |
|     virtual ByteString file_name_to_watch() const = 0;
 | |
| 
 | |
|     virtual ByteString path() = 0;
 | |
| 
 | |
|     bool is_hovered() const { return m_hovered; }
 | |
|     void set_hovered(bool hovered) { m_hovered = hovered; }
 | |
| 
 | |
|     void set_pressed(bool pressed) { m_pressed = pressed; }
 | |
|     bool is_pressed() const { return m_pressed; }
 | |
| 
 | |
| private:
 | |
|     bool m_hovered { false };
 | |
|     bool m_pressed { false };
 | |
| };
 | |
| 
 | |
| class QuickLaunchEntryAppFile : public QuickLaunchEntry {
 | |
| public:
 | |
|     explicit QuickLaunchEntryAppFile(NonnullRefPtr<Desktop::AppFile> file)
 | |
|         : m_app_file(move(file))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     virtual ErrorOr<void> launch() const override;
 | |
|     virtual GUI::Icon icon() const override { return m_app_file->icon(); }
 | |
|     virtual ByteString name() const override { return m_app_file->name(); }
 | |
|     virtual ByteString file_name_to_watch() const override { return {}; }
 | |
| 
 | |
|     virtual ByteString path() override { return m_app_file->filename(); }
 | |
| 
 | |
| private:
 | |
|     NonnullRefPtr<Desktop::AppFile> m_app_file;
 | |
| };
 | |
| 
 | |
| class QuickLaunchEntryExecutable : public QuickLaunchEntry {
 | |
| public:
 | |
|     explicit QuickLaunchEntryExecutable(ByteString path)
 | |
|         : m_path(move(path))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     virtual ErrorOr<void> launch() const override;
 | |
|     virtual GUI::Icon icon() const override;
 | |
|     virtual ByteString name() const override;
 | |
|     virtual ByteString file_name_to_watch() const override { return m_path; }
 | |
| 
 | |
|     virtual ByteString path() override { return m_path; }
 | |
| 
 | |
| private:
 | |
|     ByteString m_path;
 | |
| };
 | |
| class QuickLaunchEntryFile : public QuickLaunchEntry {
 | |
| public:
 | |
|     explicit QuickLaunchEntryFile(ByteString path)
 | |
|         : m_path(move(path))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     virtual ErrorOr<void> launch() const override;
 | |
|     virtual GUI::Icon icon() const override;
 | |
|     virtual ByteString name() const override { return m_path; }
 | |
|     virtual ByteString file_name_to_watch() const override { return m_path; }
 | |
| 
 | |
|     virtual ByteString path() override { return m_path; }
 | |
| 
 | |
| private:
 | |
|     ByteString m_path;
 | |
| };
 | |
| 
 | |
| class QuickLaunchWidget : public GUI::Frame
 | |
|     , public Config::Listener {
 | |
|     C_OBJECT(QuickLaunchWidget);
 | |
| 
 | |
| public:
 | |
|     static ErrorOr<NonnullRefPtr<QuickLaunchWidget>> create();
 | |
|     virtual ~QuickLaunchWidget() override = default;
 | |
| 
 | |
|     ErrorOr<bool> add_from_pid(pid_t pid);
 | |
| 
 | |
| protected:
 | |
|     virtual void config_key_was_removed(StringView, StringView, StringView) override;
 | |
|     virtual void config_string_did_change(StringView, StringView, StringView, StringView) override;
 | |
| 
 | |
|     virtual void drag_enter_event(GUI::DragEvent&) override;
 | |
|     virtual void drop_event(GUI::DropEvent&) override;
 | |
| 
 | |
|     virtual void mousedown_event(GUI::MouseEvent&) override;
 | |
|     virtual void mousemove_event(GUI::MouseEvent&) override;
 | |
|     virtual void mouseup_event(GUI::MouseEvent&) override;
 | |
|     virtual void context_menu_event(GUI::ContextMenuEvent&) override;
 | |
| 
 | |
|     virtual void leave_event(Core::Event&) override;
 | |
| 
 | |
|     virtual void paint_event(GUI::PaintEvent&) override;
 | |
| 
 | |
| private:
 | |
|     static constexpr StringView CONFIG_DOMAIN = "Taskbar"sv;
 | |
|     static constexpr StringView CONFIG_GROUP_ENTRIES = "QuickLaunch_Entries"sv;
 | |
|     static constexpr StringView OLD_CONFIG_GROUP_ENTRIES = "QuickLaunch"sv;
 | |
|     static constexpr int BUTTON_SIZE = 24;
 | |
| 
 | |
|     explicit QuickLaunchWidget();
 | |
| 
 | |
|     ErrorOr<void> create_context_menu();
 | |
| 
 | |
|     void load_entries(bool save = true);
 | |
|     ErrorOr<void> update_entry(ByteString const&, NonnullOwnPtr<QuickLaunchEntry>, bool save = true);
 | |
|     void add_entries(Vector<NonnullOwnPtr<QuickLaunchEntry>> entries, bool save = true);
 | |
| 
 | |
|     template<typename Callback>
 | |
|     void for_each_entry(Callback);
 | |
| 
 | |
|     void resize();
 | |
| 
 | |
|     void repaint();
 | |
| 
 | |
|     void set_or_insert_entry(NonnullOwnPtr<QuickLaunchEntry>, bool save = true);
 | |
|     void remove_entry(ByteString const&, bool save = true);
 | |
|     void recalculate_order();
 | |
| 
 | |
|     bool m_dragging { false };
 | |
|     Gfx::IntPoint m_mouse_pos;
 | |
|     int m_grab_offset { 0 };
 | |
| 
 | |
|     RefPtr<GUI::Menu> m_context_menu;
 | |
|     RefPtr<GUI::Action> m_context_menu_default_action;
 | |
|     ByteString m_context_menu_app_name;
 | |
|     RefPtr<Core::FileWatcher> m_watcher;
 | |
| 
 | |
|     Vector<NonnullOwnPtr<QuickLaunchEntry>> m_entries;
 | |
| };
 | |
| 
 | |
| }
 |