blob: 30109a7df4303e84580f728c09d6ac6341fa56f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
YahooInviteListImpl - conference invitation dialog
Copyright (c) 2004 by Duncan Mac-Vicar P. <duncan@kde.org>
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef YAHOO_INVITE_LIST_IMPL
#define YAHOO_INVITE_LIST_IMPL
#include <tqwidget.h>
#include "yahooinvitelistbase.h"
class YahooInviteListImpl : public YahooInviteListBase
{
Q_OBJECT
TQ_OBJECT
public:
YahooInviteListImpl(TQWidget *parent=0, const char *name=0);
~YahooInviteListImpl();
void fillFriendList( const TQStringList &buddies );
void addInvitees( const TQStringList &buddies );
void removeInvitees( const TQStringList &buddies );
void setRoom( const TQString &room );
void addParticipant( const TQString &participant );
private:
signals:
void readyToInvite( const TQString &room, const TQStringList &buddies, const TQStringList &participants, const TQString &msg );
protected slots:
public slots:
virtual void btnInvite_clicked();
virtual void btnCancel_clicked();
virtual void btnAddCustom_clicked();
virtual void btnRemove_clicked();
virtual void btnAdd_clicked();
private:
void updateListBoxes();
TQStringList m_buddyList;
TQStringList m_inviteeList;
TQStringList m_participants;
TQString m_room;
};
#endif
|