mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
703f3717e2
Co-authored-by: LosFarmosCTL <80157503+LosFarmosCTL@users.noreply.github.com> Co-authored-by: Paweł <zneix@zneix.eu> Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
72 lines
1.5 KiB
C++
72 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "Application.hpp"
|
|
#include "common/Channel.hpp"
|
|
#include "widgets/BaseWindow.hpp"
|
|
|
|
#include <pajlada/signals/signal.hpp>
|
|
|
|
#include <QLabel>
|
|
#include <QRadioButton>
|
|
|
|
#include <QLineEdit>
|
|
|
|
namespace chatterino {
|
|
|
|
class Notebook;
|
|
class EditableModelView;
|
|
|
|
class SelectChannelDialog final : public BaseWindow
|
|
{
|
|
public:
|
|
SelectChannelDialog(QWidget *parent = nullptr);
|
|
|
|
void setSelectedChannel(IndirectChannel selectedChannel_);
|
|
IndirectChannel getSelectedChannel() const;
|
|
bool hasSeletedChannel() const;
|
|
|
|
pajlada::Signals::NoArgSignal closed;
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent *) override;
|
|
virtual void themeChangedEvent() override;
|
|
|
|
private:
|
|
class EventFilter : public QObject
|
|
{
|
|
public:
|
|
SelectChannelDialog *dialog;
|
|
|
|
protected:
|
|
virtual bool eventFilter(QObject *watched, QEvent *event) override;
|
|
};
|
|
|
|
struct {
|
|
Notebook *notebook;
|
|
struct {
|
|
QRadioButton *channel;
|
|
QLineEdit *channelName;
|
|
QRadioButton *whispers;
|
|
QRadioButton *mentions;
|
|
QRadioButton *watching;
|
|
QRadioButton *live;
|
|
} twitch;
|
|
struct {
|
|
QLineEdit *channel;
|
|
EditableModelView *servers;
|
|
} irc;
|
|
} ui_;
|
|
|
|
EventFilter tabFilter_;
|
|
|
|
ChannelPtr selectedChannel_;
|
|
bool hasSelectedChannel_ = false;
|
|
|
|
void ok();
|
|
friend class EventFilter;
|
|
|
|
void addShortcuts() override;
|
|
};
|
|
|
|
} // namespace chatterino
|