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 MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "../qpurple/qpurple.h"
namespace Ui {
class MainWindow;
}
class DebugWindow;
class AccountsWindow;
class JoinAChatWindow;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void slotShowDebug();
void slotShowAccounts();
void on_actionJoin_a_Chat_triggered();
private:
Ui::MainWindow *ui;
DebugWindow* m_debugWindow;
AccountsWindow* m_accountsWindow;
JoinAChatWindow* m_joinAChatWindow;
QPurple::QPurpleCore* qpCore;
};
#endif // MAINWINDOW_H