mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05: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 :^)
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 {
|
|
DeprecatedString from;
|
|
DeprecatedString 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 DeprecatedString column_name(int) const override;
|
|
virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
|
|
|
|
private:
|
|
InboxModel(Vector<InboxEntry>);
|
|
|
|
Vector<InboxEntry> m_entries;
|
|
};
|