mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:22:43 +00:00 
			
		
		
		
	 ca2c81251a
			
		
	
	
		ca2c81251a
		
	
	
	
	
		
			
			Most of the models were just calling did_update anyway, which is pointless since it can be unified to the base Model class. Instead, code calling update() will now call invalidate(), which functions identically and is more obvious in what it does. Additionally, a default implementation is provided, which removes the need to add empty implementations of update() for each model subclass. Co-Authored-By: Ali Mohammad Pur <ali.mpfard@gmail.com>
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			922 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			922 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "InboxModel.h"
 | |
| 
 | |
| InboxModel::InboxModel(Vector<InboxEntry> entries)
 | |
|     : m_entries(move(entries))
 | |
| {
 | |
| }
 | |
| 
 | |
| InboxModel::~InboxModel()
 | |
| {
 | |
| }
 | |
| 
 | |
| int InboxModel::row_count(GUI::ModelIndex const&) const
 | |
| {
 | |
|     return m_entries.size();
 | |
| }
 | |
| 
 | |
| String InboxModel::column_name(int column_index) const
 | |
| {
 | |
|     switch (column_index) {
 | |
|     case Column::From:
 | |
|         return "From";
 | |
|     case Subject:
 | |
|         return "Subject";
 | |
|     default:
 | |
|         VERIFY_NOT_REACHED();
 | |
|     }
 | |
| }
 | |
| 
 | |
| GUI::Variant InboxModel::data(GUI::ModelIndex const& index, GUI::ModelRole role) const
 | |
| {
 | |
|     auto& value = m_entries[index.row()];
 | |
|     if (role == GUI::ModelRole::Display) {
 | |
|         if (index.column() == Column::From)
 | |
|             return value.from;
 | |
|         if (index.column() == Column::Subject)
 | |
|             return value.subject;
 | |
|     }
 | |
|     return {};
 | |
| }
 |