summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/connect.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/ppp/connect.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/connect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/ppp/connect.h b/noncore/settings/networksettings/ppp/connect.h
index e7ae5e0..b225ff5 100644
--- a/noncore/settings/networksettings/ppp/connect.h
+++ b/noncore/settings/networksettings/ppp/connect.h
@@ -17,136 +17,138 @@
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _CONNECT_H_
#define _CONNECT_H_
#include <qtimer.h>
#include <qpushbutton.h>
#include <qlabel.h>
#include <qevent.h>
#include "kpppconfig.h"
#include "pwentry.h"
#define MAXLOOPNEST (MAX_SCRIPT_ENTRIES/2)
class InterfacePPP;
class PPPData;
class ConnectWidget : public QWidget {
Q_OBJECT
public:
ConnectWidget(InterfacePPP*, QWidget *parent, const char *name);
~ConnectWidget();
public:
void set_con_speed_string();
void setMsg(const QString &);
void pppdDied();
protected:
void timerEvent(QTimerEvent *);
void closeEvent( QCloseEvent *e );
private slots:
void readChar(unsigned char);
void pause();
void if_waiting_slot();
+ void refresh();
public slots:
void init();
void preinit();
void script_timed_out();
void if_waiting_timed_out();
void cancelbutton();
signals:
void if_waiting_signal();
void debugMessage(const QString &);
void toggleDebugWindow();
void closeDebugWindow();
void debugPutChar(unsigned char);
void startAccounting();
void stopAccounting();
public:
QString myreadbuffer; // we want to keep every thing in order to fish for the
// connection speed later on
QPushButton *debug;
int main_timer_ID;
private:
int vmain;
int substate;
int scriptindex;
QString scriptCommand, scriptArgument;
QStringList *comlist, *arglist;
// static const int maxloopnest=(MAX_SCRIPT_ENTRIES/2);
int loopnest;
int loopstartindex[MAXLOOPNEST];
bool loopend;
QString loopstr[MAXLOOPNEST];
bool semaphore;
QTimer *inittimer;
QTimer *timeout_timer;
bool execppp();
void writeline(const QString &);
void checkBuffers();
void setExpect(const QString &);
bool expecting;
QString expectstr;
QString readbuffer;
void setScan(const QString &);
QString scanvar;
QString scanstr;
QString scanbuffer;
bool scanning;
bool pausing;
PWEntry *prompt;
// LoginTerm *termwindow;
int scriptTimeout;
QTimer *pausetimer;
QTimer *if_timer;
QTimer *if_timeout_timer;
+ QTimer *m_refreshTimer;
QLabel *messg;
QPushButton *cancel;
bool firstrunID;
bool firstrunPW;
unsigned int dialnumber; // the current number to dial
InterfacePPP *_ifaceppp;
};
// non-member function to kill&wait on the pppd child process
extern void killppp(PPPData*);
void adddns(InterfacePPP*);
void addpeerdns(InterfacePPP*);
void removedns(InterfacePPP*);
void add_domain(const QString & newdomain, InterfacePPP*);
void auto_hostname(InterfacePPP*);
#endif