You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
//
|
|
// C++ Interface:
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2005
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
|
|
#ifndef DLGJABBERCHATROOMSLIST_H
|
|
#define DLGJABBERCHATROOMSLIST_H
|
|
|
|
#include "jabberaccount.h"
|
|
#include "xmpp_tasks.h"
|
|
|
|
#include "dlgchatroomslist.h"
|
|
|
|
class dlgJabberChatRoomsList : public dlgChatRoomsList
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
dlgJabberChatRoomsList(JabberAccount* account, const TQString& server = TQString(), const TQString& nick = TQString(), TQWidget* parent = 0, const char* name = 0);
|
|
~dlgJabberChatRoomsList();
|
|
/*$PUBLIC_FUNCTIONS$*/
|
|
|
|
public slots:
|
|
/*$PUBLIC_SLOTS$*/
|
|
virtual void slotJoin();
|
|
virtual void slotQuery();
|
|
virtual void slotDoubleClick(int row, int col, int button, const TQPoint& mousePos);
|
|
virtual void slotClick(int row, int col, int button, const TQPoint& mousePos);
|
|
|
|
protected:
|
|
/*$PROTECTED_FUNCTIONS$*/
|
|
|
|
protected slots:
|
|
/*$PROTECTED_SLOTS$*/
|
|
|
|
void slotQueryFinished();
|
|
|
|
private:
|
|
|
|
JabberAccount *m_account;
|
|
int m_selectedRow;
|
|
TQString m_chatServer;
|
|
TQString m_nick;
|
|
};
|
|
|
|
#endif
|
|
|