ladybird/Userland/Applications/Mail/InboxModel.cpp
Lenny Maiorani 160bda7228 Applications: Use default constructors/destructors
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."
2022-02-14 22:06:55 +00:00

42 lines
941 B
C++

/*
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "InboxModel.h"
InboxModel::InboxModel(Vector<InboxEntry> entries)
: m_entries(move(entries))
{
}
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 {};
}