mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 11:24:59 +00:00

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>
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "IRCWindowListModel.h"
|
|
#include "IRCChannel.h"
|
|
#include "IRCClient.h"
|
|
|
|
IRCWindowListModel::IRCWindowListModel(IRCClient& client)
|
|
: m_client(client)
|
|
{
|
|
}
|
|
|
|
IRCWindowListModel::~IRCWindowListModel()
|
|
{
|
|
}
|
|
|
|
int IRCWindowListModel::row_count(const GUI::ModelIndex&) const
|
|
{
|
|
return m_client->window_count();
|
|
}
|
|
|
|
int IRCWindowListModel::column_count(const GUI::ModelIndex&) const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
String IRCWindowListModel::column_name(int column) const
|
|
{
|
|
switch (column) {
|
|
case Column::Name:
|
|
return "Name";
|
|
}
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
GUI::Variant IRCWindowListModel::data(const GUI::ModelIndex& index, GUI::ModelRole role) const
|
|
{
|
|
if (role == GUI::ModelRole::TextAlignment)
|
|
return Gfx::TextAlignment::CenterLeft;
|
|
if (role == GUI::ModelRole::Display) {
|
|
switch (index.column()) {
|
|
case Column::Name: {
|
|
auto& window = m_client->window_at(index.row());
|
|
if (window.unread_count())
|
|
return String::formatted("{} ({})", window.name(), window.unread_count());
|
|
return window.name();
|
|
}
|
|
}
|
|
}
|
|
if (role == GUI::ModelRole::ForegroundColor) {
|
|
switch (index.column()) {
|
|
case Column::Name: {
|
|
auto& window = m_client->window_at(index.row());
|
|
if (window.unread_count())
|
|
return Color(Color::Red);
|
|
if (!window.channel().is_open())
|
|
return Color(Color::WarmGray);
|
|
return Color(Color::Black);
|
|
}
|
|
}
|
|
}
|
|
return {};
|
|
}
|