mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
36 lines
705 B
C++
36 lines
705 B
C++
#pragma once
|
|
|
|
#include "basewindow.hpp"
|
|
|
|
#include <QComboBox>
|
|
#include <QDialogButtonBox>
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class QualityPopup : public BaseWindow
|
|
{
|
|
public:
|
|
QualityPopup(const QString &_channelName, QStringList options);
|
|
static void showDialog(const QString &_channelName, QStringList options);
|
|
|
|
private:
|
|
struct {
|
|
QVBoxLayout vbox;
|
|
QComboBox selector;
|
|
QDialogButtonBox buttonBox;
|
|
QPushButton okButton;
|
|
QPushButton cancelButton;
|
|
} ui;
|
|
|
|
QString channelName;
|
|
|
|
void okButtonClicked();
|
|
void cancelButtonClicked();
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|