blob: 7aa916b96eb172b6751d0f4b89071a463cde0172 [file] [log] [blame]
Yingdi Yu595aadc2013-10-21 15:01:40 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
Yingdi Yu348f5ea2014-03-01 14:47:25 -080011#ifndef START_CHAT_DIALOG_H
12#define START_CHAT_DIALOG_H
Yingdi Yu595aadc2013-10-21 15:01:40 -070013
14#include <QDialog>
15
16#ifndef Q_MOC_RUN
17#include <string>
18#endif
19
20namespace Ui {
21class StartChatDialog;
22}
23
24class StartChatDialog : public QDialog
25{
26 Q_OBJECT
27
28public:
29 explicit StartChatDialog(QWidget *parent = 0);
Yingdi Yufa4ce792014-02-06 18:09:22 -080030
Yingdi Yu595aadc2013-10-21 15:01:40 -070031 ~StartChatDialog();
32
33 void
Yingdi Yufa4ce792014-02-06 18:09:22 -080034 setChatroom(const std::string& chatroom);
Yingdi Yu595aadc2013-10-21 15:01:40 -070035
36signals:
37 void
Yingdi Yu348f5ea2014-03-01 14:47:25 -080038 startChatroom(const QString& chatroomName, bool secured);
Yingdi Yu595aadc2013-10-21 15:01:40 -070039
40private slots:
41 void
42 onOkClicked();
43
44 void
45 onCancelClicked();
46
47private:
48 Ui::StartChatDialog *ui;
Yingdi Yu595aadc2013-10-21 15:01:40 -070049};
50
Yingdi Yu348f5ea2014-03-01 14:47:25 -080051#endif // START_CHAT_DIALOG_H