summaryrefslogtreecommitdiff
path: root/Userland/Applications/IRCClient/IRCWindowListModel.h
blob: fce8f8e3c6ff8cb1bfc679f9e5c826e77be0d027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Function.h>
#include <LibGUI/Model.h>

class IRCClient;
class IRCWindow;

class IRCWindowListModel final : public GUI::Model {
public:
    enum Column {
        Name,
    };

    static NonnullRefPtr<IRCWindowListModel> create(IRCClient& client) { return adopt_ref(*new IRCWindowListModel(client)); }
    virtual ~IRCWindowListModel() override;

    virtual int row_count(const GUI::ModelIndex&) const override;
    virtual int column_count(const GUI::ModelIndex&) const override;
    virtual String column_name(int column) const override;
    virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
    virtual void update() override;

private:
    explicit IRCWindowListModel(IRCClient&);

    NonnullRefPtr<IRCClient> m_client;
};