mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03:00
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 :^)
43 lines
951 B
C++
43 lines
951 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();
|
|
}
|
|
|
|
DeprecatedString 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 {};
|
|
}
|