mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 07:32:52 +00:00
LexicalPath is a 'heavier' object than a String that is mainly used for path parsing and validation, we don't actually need any of that in GitRepo and its related files, so let's move to String :^) I've also done some east-const conversion in the files that I was editing for the string change.
35 lines
928 B
C++
35 lines
928 B
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "GitRepo.h"
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibGUI/Model.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
class GitFilesModel final : public GUI::Model {
|
|
public:
|
|
static NonnullRefPtr<GitFilesModel> create(Vector<String>&& files);
|
|
|
|
virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return m_files.size(); }
|
|
virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return 1; }
|
|
|
|
virtual String column_name(int) const override
|
|
{
|
|
return "";
|
|
}
|
|
|
|
virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
|
|
|
|
virtual GUI::ModelIndex index(int row, int column, const GUI::ModelIndex&) const override;
|
|
|
|
private:
|
|
explicit GitFilesModel(Vector<String>&& files);
|
|
Vector<String> m_files;
|
|
};
|
|
}
|