kopete/kopete
chatmemberslistview.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef CHATMEMBERSLISTVIEW_H
00019 #define CHATMEMBERSLISTVIEW_H
00020
00021 #include <QListView>
00022
00023 #include <qmap.h>
00024
00025 namespace Kopete
00026 {
00027 class ChatSession;
00028 class Contact;
00029 class OnlineStatus;
00030 class PropertyContainer;
00031 }
00032
00036 class ChatMembersListView : public QListView
00037 {
00038 Q_OBJECT
00039 public:
00040 explicit ChatMembersListView( QWidget *parent = 0);
00041 virtual ~ChatMembersListView();
00042
00043 public slots:
00044 void slotContextMenuRequested( const QPoint & pos );
00045 private:
00046 };
00047
00048 #endif
00049
00050
00051