1 | /*
|
---|
2 | * adduserdlg.h - dialog for adding contacts
|
---|
3 | * Copyright (C) 2001, 2002 Justin Karneges
|
---|
4 | *
|
---|
5 | * This program is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU General Public License
|
---|
7 | * as published by the Free Software Foundation; either version 2
|
---|
8 | * of the License, or (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This program is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | * GNU General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU General Public License
|
---|
16 | * along with this library; if not, write to the Free Software
|
---|
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
18 | *
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef ADDUSERDLG_H
|
---|
22 | #define ADDUSERDLG_H
|
---|
23 |
|
---|
24 | #include"ui_adduser.h"
|
---|
25 | #include"xmpp.h"
|
---|
26 |
|
---|
27 | using namespace XMPP;
|
---|
28 |
|
---|
29 | class QString;
|
---|
30 | class QStringList;
|
---|
31 | class PsiAccount;
|
---|
32 |
|
---|
33 | class AddUserDlg : public AddUserUI
|
---|
34 | {
|
---|
35 | Q_OBJECT
|
---|
36 | public:
|
---|
37 | AddUserDlg(const QStringList &services, const QStringList &names, const QStringList &groups, PsiAccount *);
|
---|
38 | ~AddUserDlg();
|
---|
39 |
|
---|
40 | signals:
|
---|
41 | void add(const Jid &, const QString &, const QStringList &, bool authReq);
|
---|
42 |
|
---|
43 | private slots:
|
---|
44 | void ok();
|
---|
45 | void serviceActivated(int);
|
---|
46 | void getTransID();
|
---|
47 | void pa_updatedActivity();
|
---|
48 | void jt_getFinished();
|
---|
49 | void jt_setFinished();
|
---|
50 | void le_transPromptChanged(const QString &);
|
---|
51 |
|
---|
52 | void getVCardActivated();
|
---|
53 | void resolveNickActivated();
|
---|
54 | void resolveNickFinished();
|
---|
55 |
|
---|
56 | private:
|
---|
57 | class Private;
|
---|
58 | Private *d;
|
---|
59 |
|
---|
60 | void errorGateway(const QString &str, const QString &err);
|
---|
61 | };
|
---|
62 |
|
---|
63 | #endif
|
---|