mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 22:22:55 +00:00
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
35 lines
968 B
C++
35 lines
968 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<DeprecatedString>&& 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 DeprecatedString 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<DeprecatedString>&& files);
|
|
Vector<DeprecatedString> m_files;
|
|
};
|
|
}
|