~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to src/servicesdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-14 16:33:49 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050914163349-3zacov4afysz5cw5
Tags: 0.9.3-2ubuntu1
* Sync with debian
* Applied patch to psi.desktop to start psi without gpg-agent use (known
  issue)
* Updated README.Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef SERVICESDLG_H
22
22
#define SERVICESDLG_H
23
23
 
24
 
#include"ui_services.h"
25
24
#include"ui_search.h"
26
25
#include"xmpp.h"
27
26
 
 
27
#include<qdialog.h>
 
28
 
28
29
using namespace XMPP;
29
30
 
30
31
class PsiAccount;
31
32
 
32
 
class ServicesDlg : public ServicesUI
33
 
{
34
 
        Q_OBJECT
35
 
public:
36
 
        ServicesDlg(const Jid &, PsiAccount *);
37
 
        ~ServicesDlg();
38
 
 
39
 
signals:
40
 
        void signalRegister(const Jid &);
41
 
        void signalSearch(const Jid &);
42
 
        void signalJoin(const Jid &);
43
 
 
44
 
public slots:
45
 
        void doBrowse(const QString &host = "");
46
 
 
47
 
private slots:
48
 
        void jt_gs_finished();
49
 
        void doubleClicked(QListBoxItem *i);
50
 
        void serviceSelected(int);
51
 
        void serviceRegister();
52
 
        void serviceSearch();
53
 
        void serviceJoin();
54
 
 
55
 
private:
56
 
        class Private;
57
 
        Private *d;
58
 
 
59
 
        void restoreWidgets();
60
 
};
61
 
 
62
33
class RegistrationDlg : public QDialog
63
34
{
64
35
        Q_OBJECT