refactor: make chatter list its own widget (#6365)

This commit is contained in:
pajlada
2025-08-02 12:19:05 +02:00
committed by GitHub
parent a4478748f7
commit 4a14064425
7 changed files with 449 additions and 395 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include "widgets/BaseWindow.hpp"
#include <QString>
#include <QWidget>
namespace chatterino {
class TwitchChannel;
class ChatterListWidget : public BaseWindow
{
Q_OBJECT
public:
ChatterListWidget(const TwitchChannel *twitchChannel, QWidget *parent);
Q_SIGNAL void userClicked(QString userLogin);
};
} // namespace chatterino