pidgin/quail/quail

Make the Room List linked to the Join a chat
soc.2013.phil.quail
2013-06-23, Phil Hannent
5ac5337fc6a2
Make the Room List linked to the Join a chat
#ifndef JOINACHATWINDOW_H
#define JOINACHATWINDOW_H
#include <QDialog>
namespace Ui {
class JoinAChatWindow;
}
class RoomListWindow;
class JoinAChatWindow : public QDialog
{
Q_OBJECT
public:
explicit JoinAChatWindow(QWidget *parent = 0);
~JoinAChatWindow();
private slots:
void on_btnCancel_clicked();
void on_btnJoin_clicked();
void on_btnRoomList_clicked();
private:
Ui::JoinAChatWindow *ui;
RoomListWindow* m_roomListWindow;
};
#endif // JOINACHATWINDOW_H