mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:12:43 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			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;
 | |
| };
 | |
| }
 |