1 //---------------------------------------------------------------------------
3 // kPPP: A pppd front end for the KDE project
5 //---------------------------------------------------------------------------
7 // (c) 1997-1998 Bernd Johannes Wuebben <wuebben@kde.org>
8 // (c) 1997-1999 Mario Weilguni <mweilguni@kde.org>
9 // (c) 1998-1999 Harri Porten <porten@kde.org>
11 // derived from Jay Painters "ezppp"
13 //---------------------------------------------------------------------------
17 //---------------------------------------------------------------------------
19 // This program is free software; you can redistribute it and-or
20 // modify it under the terms of the GNU Library General Public
21 // License as published by the Free Software Foundation; either
22 // version 2 of the License, or (at your option) any later version.
24 // This program is distributed in the hope that it will be useful,
25 // but WITHOUT ANY WARRANTY; without even the implied warranty of
26 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 // Library General Public License for more details.
29 // You should have received a copy of the GNU Library General Public
30 // License along with this program; if not, write to the Free
31 // Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
33 //---------------------------------------------------------------------------
45 class PDB_Intro
: public QWidget
{
48 PDB_Intro(QWidget
*parent
);
52 class PDB_Country
: public QWidget
{
55 PDB_Country(QWidget
*parent
);
61 void selectionChanged(int);
65 class PDB_Provider
: public QWidget
{
68 PDB_Provider(QWidget
*parent
);
70 void setDir(const QString
&d
);
76 void selectionChanged(int);
83 class PDB_UserInfo
: public QWidget
{
86 PDB_UserInfo(QWidget
*parent
);
92 void textChanged(const QString
&);
100 class PDB_DialPrefix
: public QWidget
{
103 PDB_DialPrefix(QWidget
*parent
);
112 class PDB_Finished
: public QWidget
{
115 PDB_Finished(QWidget
*parent
);
119 class ProviderDB
: public K3Wizard
{
122 ProviderDB(QWidget
*parent
);
124 static Q3Wizard
*wiz
;
131 void loadProviderInfo();
138 PDB_DialPrefix
*page5
;
143 // Decodes a (some sort of)URL-encoded filename to a human-readable name.
144 // This is used for the provider database
145 void urlDecode(QString
&);
147 // Encodes a (some sort of)URL-encoded filename from a human-readable name.
148 // This is used for the provider database
149 void urlEncode(QString
&);