mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +00:00
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."
42 lines
1 KiB
C++
42 lines
1 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>
|
|
|
|
struct InboxEntry {
|
|
String from;
|
|
String subject;
|
|
};
|
|
|
|
class InboxModel final : public GUI::Model {
|
|
public:
|
|
enum Column {
|
|
From,
|
|
Subject,
|
|
__Count
|
|
};
|
|
|
|
static NonnullRefPtr<InboxModel> create(Vector<InboxEntry> inbox_entries)
|
|
{
|
|
return adopt_ref(*new InboxModel(move(inbox_entries)));
|
|
}
|
|
|
|
virtual ~InboxModel() override = default;
|
|
|
|
virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
|
|
virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return Column::__Count; }
|
|
virtual String column_name(int) const override;
|
|
virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
|
|
|
|
private:
|
|
InboxModel(Vector<InboxEntry>);
|
|
|
|
Vector<InboxEntry> m_entries;
|
|
};
|