RetroShare/retroshare-gui/src/gui/chat/CreateLobbyDialog.h

30 lines
570 B
C
Raw Normal View History

#ifndef CREATELOBBYDIALOG_H
#define CREATELOBBYDIALOG_H
#include <QDialog>
#include "ui_CreateLobbyDialog.h"
class CreateLobbyDialog : public QDialog {
Q_OBJECT
public:
/*
*@param chanId The channel id to send request for
*/
CreateLobbyDialog(const std::list<std::string>& friends_list, int privacyLevel = 0, QWidget *parent = 0);
~CreateLobbyDialog();
protected:
void changeEvent(QEvent *e);
private:
Ui::CreateLobbyDialog *ui;
private slots:
void createLobby();
void checkTextFields();
};
#endif // CREATELOBBYDIALOG_H