mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
ca2c81251a
Most of the models were just calling did_update anyway, which is pointless since it can be unified to the base Model class. Instead, code calling update() will now call invalidate(), which functions identically and is more obvious in what it does. Additionally, a default implementation is provided, which removes the need to add empty implementations of update() for each model subclass. Co-Authored-By: Ali Mohammad Pur <ali.mpfard@gmail.com>
42 lines
982 B
C++
42 lines
982 B
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* 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;
|
|
|
|
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;
|
|
};
|