mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-25 23:06:10 -05:00
c9d5c7b3cb
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8138 b45a01b8-16f6-495d-af2f-9b41ad6348cc
31 lines
602 B
C++
31 lines
602 B
C++
#ifndef CREATELOBBYDIALOG_H
|
|
#define CREATELOBBYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "ui_CreateLobbyDialog.h"
|
|
#include <retroshare/rstypes.h>
|
|
|
|
class CreateLobbyDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/*
|
|
*@param chanId The channel id to send request for
|
|
*/
|
|
CreateLobbyDialog(const std::set<RsPeerId>& 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
|