mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:42:44 +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 :^)
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "BasicModel.h"
 | |
| 
 | |
| GUI::Variant BasicModel::data(GUI::ModelIndex const& index, GUI::ModelRole role) const
 | |
| {
 | |
|     if (role != GUI::ModelRole::Display)
 | |
|         return {};
 | |
|     if (!is_within_range(index))
 | |
|         return {};
 | |
| 
 | |
|     return m_items.at(index.row());
 | |
| }
 | |
| 
 | |
| TriState BasicModel::data_matches(GUI::ModelIndex const& index, GUI::Variant const& data) const
 | |
| {
 | |
|     if (!is_within_range(index))
 | |
|         return TriState::False;
 | |
|     if (!data.is_string())
 | |
|         return TriState::False;
 | |
| 
 | |
|     auto& value = m_items.at(index.row());
 | |
|     return value.contains(data.as_string()) ? TriState::True : TriState::False;
 | |
| }
 | |
| 
 | |
| void BasicModel::invalidate()
 | |
| {
 | |
|     Model::invalidate();
 | |
|     if (on_invalidate)
 | |
|         on_invalidate();
 | |
| }
 | |
| 
 | |
| GUI::ModelIndex BasicModel::index(int row, int column, GUI::ModelIndex const& parent) const
 | |
| {
 | |
|     if (column != 0)
 | |
|         return {};
 | |
|     if (parent.is_valid())
 | |
|         return {};
 | |
|     if (row < 0 || row >= static_cast<int>(m_items.size()))
 | |
|         return {};
 | |
| 
 | |
|     return create_index(row, column);
 | |
| }
 | |
| 
 | |
| void BasicModel::add_item(DeprecatedString const& item)
 | |
| {
 | |
|     begin_insert_rows({}, m_items.size(), m_items.size());
 | |
|     m_items.append(item);
 | |
|     end_insert_rows();
 | |
| 
 | |
|     did_update(UpdateFlag::DontInvalidateIndices);
 | |
| }
 | |
| 
 | |
| void BasicModel::remove_item(GUI::ModelIndex const& index)
 | |
| {
 | |
|     if (!index.is_valid() || !is_within_range(index))
 | |
|         return;
 | |
| 
 | |
|     begin_delete_rows({}, index.row(), index.row());
 | |
|     m_items.remove(index.row());
 | |
|     end_delete_rows();
 | |
| 
 | |
|     did_update(UpdateFlag::DontInvalidateIndices);
 | |
| }
 |