~ubuntu-branches/ubuntu/jaunty/psi/jaunty

« back to all changes in this revision

Viewing changes to src/proxy.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef PROXYDLG_H
22
22
#define PROXYDLG_H
23
23
 
24
 
#include<qvaluelist.h>
25
 
#include<qgroupbox.h>
26
 
#include<qdom.h>
27
 
#include"ui_proxy.h"
 
24
#include <QList>
 
25
#include <q3groupbox.h>
 
26
 
 
27
#include "ui_proxy.h"
 
28
 
 
29
class QDomElement;
 
30
class QDomDocument;
28
31
 
29
32
class HostPortEdit : public QWidget
30
33
{
46
49
 
47
50
class ProxyItem;
48
51
class ProxyManager;
49
 
typedef QValueList<ProxyItem> ProxyItemList;
 
52
typedef QList<ProxyItem> ProxyItemList;
50
53
 
51
54
class ProxySettings
52
55
{
62
65
        bool fromXml(const QDomElement &);
63
66
};
64
67
 
65
 
class ProxyEdit : public QGroupBox
 
68
class ProxyEdit : public Q3GroupBox
66
69
{
67
70
        Q_OBJECT
68
71
public:
83
86
        Private *d;
84
87
};
85
88
 
86
 
class ProxyDlg : public ProxyUI
 
89
class ProxyDlg : public QDialog, public Ui::Proxy
87
90
{
88
91
        Q_OBJECT
89
92
public:
90
 
        ProxyDlg(const ProxyItemList &, const QStringList &, int def, QWidget *parent=0, const char *name=0);
 
93
        ProxyDlg(const ProxyItemList &, const QStringList &, int def, QWidget *parent=0);
91
94
        ~ProxyDlg();
92
95
 
93
96
signals: