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 ACCOUNTSWINDOW_H
#define ACCOUNTSWINDOW_H
#include <QDialog>
namespace Ui {
class AccountsWindow;
}
class AccountWindow;
class AccountsWindow : public QDialog
{
Q_OBJECT
public:
explicit AccountsWindow(QWidget *parent = 0);
~AccountsWindow();
private slots:
void on_btnClose_clicked();
void on_btnAdd_clicked();
private:
Ui::AccountsWindow *ui;
AccountWindow* m_AccountWindow;
};
#endif // ACCOUNTSWINDOW_H