29 lines
507 B
C++
29 lines
507 B
C++
// SPDX-FileCopyrightText: 2017 Contributors to Chatterino <https://chatterino.com>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "pajlada/signals/signalholder.hpp"
|
|
|
|
#include <QListWidget>
|
|
|
|
namespace chatterino {
|
|
|
|
class AccountSwitchWidget : public QListWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AccountSwitchWidget(QWidget *parent = nullptr);
|
|
|
|
void refresh();
|
|
|
|
private:
|
|
void refreshSelection();
|
|
|
|
pajlada::Signals::SignalHolder managedConnections_;
|
|
};
|
|
|
|
} // namespace chatterino
|