blob: 1d4d57713940f3562dc65fc06f55c4c8cc331628 (
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
|
/****************************************************************************
**
** Copyright (C) 1992-$THISYEAR$ $TROLLTECH$. All rights reserved.
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef PROXYSETTINGS_H
#define PROXYSETTINGS_H
#include <QDialog>
#include <QNetworkProxy>
#include "ui_proxysettings.h"
/**
*/
class ProxySettings : public QDialog, public Ui::ProxySettings
{
Q_OBJECT
public:
ProxySettings(QWidget * parent = 0);
~ProxySettings();
static QNetworkProxy httpProxy ();
static bool httpProxyInUse ();
public slots:
virtual void accept ();
};
#endif // PROXYSETTINGS_H
|