mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
40 lines
824 B
C
40 lines
824 B
C
|
#ifndef QUALITYPOPUP_H
|
||
|
#define QUALITYPOPUP_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QVBoxLayout>
|
||
|
#include <QHBoxLayout>
|
||
|
#include <QComboBox>
|
||
|
#include <QDialogButtonBox>
|
||
|
#include <QPushButton>
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
namespace widgets {
|
||
|
|
||
|
class QualityPopup : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
QualityPopup(const QString &channel, const QString &path, QStringList options);
|
||
|
static void showDialog(const QString &channel, const QString &path, QStringList options);
|
||
|
private:
|
||
|
struct {
|
||
|
QVBoxLayout vbox;
|
||
|
QComboBox selector;
|
||
|
QDialogButtonBox buttonBox;
|
||
|
QPushButton okButton;
|
||
|
QPushButton cancelButton;
|
||
|
} ui;
|
||
|
|
||
|
QString channel;
|
||
|
QString path;
|
||
|
|
||
|
void okButtonClicked();
|
||
|
void cancelButtonClicked();
|
||
|
};
|
||
|
|
||
|
} // namespace widgets
|
||
|
} // namespace chatterino
|
||
|
|
||
|
#endif // QUALITYPOPUP_H
|