mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:12:44 +00:00 
			
		
		
		
	 160bda7228
			
		
	
	
		160bda7228
		
	
	
	
	
		
			
			https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGUI/Model.h>
 | |
| #include <LibIMAP/Objects.h>
 | |
| 
 | |
| class AccountHolder;
 | |
| 
 | |
| class MailboxTreeModel final : public GUI::Model {
 | |
| public:
 | |
|     static NonnullRefPtr<MailboxTreeModel> create(AccountHolder const& account_holder)
 | |
|     {
 | |
|         return adopt_ref(*new MailboxTreeModel(account_holder));
 | |
|     }
 | |
| 
 | |
|     virtual ~MailboxTreeModel() override = default;
 | |
| 
 | |
|     virtual int row_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override;
 | |
|     virtual int column_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override;
 | |
|     virtual GUI::Variant data(GUI::ModelIndex const&, GUI::ModelRole) const override;
 | |
|     virtual GUI::ModelIndex index(int row, int column, GUI::ModelIndex const& parent = GUI::ModelIndex()) const override;
 | |
|     virtual GUI::ModelIndex parent_index(GUI::ModelIndex const&) const override;
 | |
| 
 | |
| private:
 | |
|     explicit MailboxTreeModel(AccountHolder const&);
 | |
| 
 | |
|     AccountHolder const& m_account_holder;
 | |
| 
 | |
|     GUI::Icon m_mail_icon;
 | |
|     GUI::Icon m_folder_icon;
 | |
|     GUI::Icon m_account_icon;
 | |
| };
 |