mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
35 lines
589 B
C++
35 lines
589 B
C++
#pragma once
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include "providers/irc/Irc2.hpp"
|
|
#include "widgets/BaseWindow.hpp"
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class IrcConnectionEditor;
|
|
}
|
|
|
|
namespace chatterino {
|
|
|
|
struct IrcServerData;
|
|
|
|
class IrcConnectionEditor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit IrcConnectionEditor(const IrcServerData &data, bool isAdd = false,
|
|
QWidget *parent = nullptr);
|
|
~IrcConnectionEditor();
|
|
|
|
IrcServerData data();
|
|
|
|
private:
|
|
Ui::IrcConnectionEditor *ui_;
|
|
IrcServerData data_;
|
|
};
|
|
|
|
} // namespace chatterino
|