mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 00:24:57 +00:00

SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
36 lines
920 B
C++
36 lines
920 B
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/LexicalPath.h>
|
|
#include <LibGUI/ListView.h>
|
|
#include <LibGfx/Bitmap.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
// A "GitFileAction" is either the staging or the unstaging of a file.
|
|
typedef Function<void(const LexicalPath& file)> GitFileActionCallback;
|
|
|
|
class GitFilesView : public GUI::ListView {
|
|
C_OBJECT(GitFilesView)
|
|
public:
|
|
virtual ~GitFilesView() override;
|
|
|
|
protected:
|
|
GitFilesView(GitFileActionCallback, NonnullRefPtr<Gfx::Bitmap> action_icon);
|
|
|
|
private:
|
|
virtual void paint_list_item(GUI::Painter& painter, int row_index, int painted_item_index);
|
|
|
|
virtual void mousedown_event(GUI::MouseEvent&) override;
|
|
virtual Gfx::IntRect action_icon_rect(size_t painted_item_index);
|
|
|
|
GitFileActionCallback m_action_callback;
|
|
NonnullRefPtr<Gfx::Bitmap> m_action_icon;
|
|
};
|
|
|
|
}
|