File: providerdb.h

package info (click to toggle)
kppp 4%3A17.08.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,176 kB
  • sloc: cpp: 13,825; tcl: 49; sh: 19; xml: 15; makefile: 5
file content (152 lines) | stat: -rw-r--r-- 3,297 bytes parent folder | download | duplicates (3)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
//---------------------------------------------------------------------------
//
//             kPPP: A pppd front end for the KDE project
//
//---------------------------------------------------------------------------
//
// (c) 1997-1998 Bernd Johannes Wuebben <wuebben@kde.org>
// (c) 1997-1999 Mario Weilguni <mweilguni@kde.org>
// (c) 1998-1999 Harri Porten <porten@kde.org>
//
// derived from Jay Painters "ezppp"
//
//---------------------------------------------------------------------------
//
//  $Id$
//
//---------------------------------------------------------------------------
//
//  This program is free software; you can redistribute it and-or
//  modify it under the terms of the GNU Library General Public
//  License as published by the Free Software Foundation; either
//  version 2 of the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//  Library General Public License for more details.
//
//  You should have received a copy of the GNU Library General Public
//  License along with this program; if not, write to the Free
//  Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
//---------------------------------------------------------------------------

#ifndef PROVIDER_DB
#define PROVIDER_DB

#include <k3wizard.h>
#include <qwidget.h>

class QLineEdit;
class Q3ListBox;
class KConfig;

class PDB_Intro : public QWidget {
  Q_OBJECT
public:
  PDB_Intro(QWidget *parent);
};


class PDB_Country : public QWidget {
  Q_OBJECT
public:
  PDB_Country(QWidget *parent);
  ~PDB_Country();
  Q3ListBox *lb;
  QStringList *list;

public slots:
  void selectionChanged(int);
};


class PDB_Provider : public QWidget {
  Q_OBJECT
public:
  PDB_Provider(QWidget *parent);

  void setDir(const QString &d);
  QString getDir();

  Q3ListBox *lb;

public slots:
  void selectionChanged(int);

private:
  QString dir;
};


class PDB_UserInfo : public QWidget {
  Q_OBJECT
public:
  PDB_UserInfo(QWidget *parent);
  QString username();
  QString password();
  void activate();

public slots:
  void textChanged(const QString &);

private:
  QLineEdit *_username;
  QLineEdit *_password;
};


class PDB_DialPrefix : public QWidget {
  Q_OBJECT
public:
  PDB_DialPrefix(QWidget *parent);
  QString prefix();
  void activate();

private:
  QLineEdit *_prefix;
};


class PDB_Finished : public QWidget {
  Q_OBJECT
public:
  PDB_Finished(QWidget *parent);
};


class ProviderDB : public K3Wizard {
  Q_OBJECT
public:
  ProviderDB(QWidget *parent);
  ~ProviderDB();
  static Q3Wizard *wiz;

public slots:
  void pageSelected();
  void accept();

private:
  void loadProviderInfo();
  KConfig *cfg;

  PDB_Intro *page1;
  PDB_Country *page2;
  PDB_Provider *page3;
  PDB_UserInfo *page4;
  PDB_DialPrefix *page5;
  PDB_Finished *page9;
};


// Decodes a (some sort of)URL-encoded filename to a human-readable name.
// This is used for the provider database
void urlDecode(QString &);

// Encodes a (some sort of)URL-encoded filename from a human-readable name.
// This is used for the provider database
void urlEncode(QString &);


#endif