mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-18 13:54:07 -05:00
![thunder2](/assets/img/avatar_default.png)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4866 b45a01b8-16f6-495d-af2f-9b41ad6348cc
31 lines
609 B
C++
31 lines
609 B
C++
#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, Qt::WFlags flags = 0);
|
|
~CreateLobbyDialog();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private:
|
|
Ui::CreateLobbyDialog *ui;
|
|
|
|
private slots:
|
|
void createLobby();
|
|
void checkTextFields();
|
|
void cancel();
|
|
};
|
|
|
|
#endif // CREATELOBBYDIALOG_H
|