mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			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 *
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1,010 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1,010 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "GitRepo.h"
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <AK/NonnullRefPtr.h>
 | |
| #include <LibGUI/Model.h>
 | |
| 
 | |
| namespace HackStudio {
 | |
| 
 | |
| class GitFilesModel final : public GUI::Model {
 | |
| public:
 | |
|     static NonnullRefPtr<GitFilesModel> create(Vector<LexicalPath>&& 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 void update() override { }
 | |
|     virtual GUI::ModelIndex index(int row, int column, const GUI::ModelIndex&) const override;
 | |
| 
 | |
| private:
 | |
|     explicit GitFilesModel(Vector<LexicalPath>&& files);
 | |
|     Vector<LexicalPath> m_files;
 | |
| };
 | |
| }
 |