From 672a9a2ecd1132aadcf1043946e27339693145a4 Mon Sep 17 00:00:00 2001 From: tille Date: Sun, 25 May 2003 00:47:30 +0000 Subject: debug window gone --- (limited to 'noncore/settings') diff --git a/noncore/settings/networksettings/ppp/debug.cpp b/noncore/settings/networksettings/ppp/debug.cpp deleted file mode 100644 index 447ccf2..0000000 --- a/noncore/settings/networksettings/ppp/debug.cpp +++ b/dev/null @@ -1,141 +0,0 @@ -/* - * kPPP: A pppd front end for the KDE project - * - * $Id$ - * Copyright (C) 1997 Bernd Wuebben - * wuebben@math.cornel.edu - * - * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -#include "debug.h" -//#include "main.h" -#include "pppdata.h" -//#include -#define i18n QObject::tr -#include "kpppwidget.h" -#include - -extern KPPPWidget *p_kppp; - -myMultiEdit::myMultiEdit(QWidget *parent, const char *name) - : QMultiLineEdit(parent, name) -{ - setReadOnly(true); -} - -void myMultiEdit::insertChar(unsigned char c) { - QMultiLineEdit::insert(QChar(c)); -} - - -void myMultiEdit::newLine() { - QMultiLineEdit::newLine(); -} - - -DebugWidget::DebugWidget(QWidget *parent, const char *name) - : QDialog(parent, name, FALSE) -{ - setCaption(i18n("Login Script Debug Window")); - - text_window = new myMultiEdit(this,"debugwindow"); - text_window->setGeometry(2,5,400, 300); - // text_window->setReadOnly(FALSE); - - statuslabel = new QLabel("", this, "statuslabel"); - - statuslabel->setFrameStyle( QFrame::Panel | QFrame::Sunken ); - statuslabel->setAlignment( AlignLeft|AlignVCenter ); - statuslabel->setGeometry(2, 307, 400, 20); - //statusPageLabel->setFont( QFont("helvetica",12,QFont::Normal) ); - - dismiss = new QPushButton(this); - dismiss->setGeometry(330,340,70,30); - dismiss->setText(i18n("Close")); - dismiss->setFocus(); - connect(dismiss, SIGNAL(clicked()), SLOT(hide())); - - - /* fline = new QFrame(this,"line"); - fline->setFrameStyle(QFrame::HLine |QFrame::Sunken); - fline->setGeometry(2,332,398,5);*/ - adjustSize(); - setMinimumSize(width(),height()); - -} - -void DebugWidget::hideEvent(QHideEvent *) -{ - assert(p_kppp); -// p_kppp->con->debug->setOn(false); -} - -void DebugWidget::clear() { - text_window->clear(); -} - - -void DebugWidget::addChar(unsigned char c) { - QString stuff; - - if(c == '\r' || c == '\n') { - if(c == '\n') - text_window->newLine(); - } else - text_window->insertChar(c); -} - - -void DebugWidget::statusLabel(const QString &s) { - statuslabel->setText(s); -} - - -/* -void DebugWidget::keyPressEvent(QKeyEvent *k) { -} - -*/ -void DebugWidget::resizeEvent(QResizeEvent *e){ - int w = width() ; - int h = height(); - e = e; - - text_window->setGeometry(2,5,w - 2 ,h - 63); - statuslabel->setGeometry(2, h - 56 , w -2 , 20); - dismiss->setGeometry(w - 72 , h - 32, 70, 30); - // fline->setGeometry(2,h -70 ,w - 4,5); -} - - -void DebugWidget::enter() { - text_window->append("\r\n"); -} - - -void DebugWidget::toggleVisibility() { - if(isVisible()) - hide(); - else - show(); - - bool showlog = isVisible(); - PPPData::data()->set_show_log_window(showlog); -} - - - - diff --git a/noncore/settings/networksettings/ppp/debug.h b/noncore/settings/networksettings/ppp/debug.h deleted file mode 100644 index 3565cec..0000000 --- a/noncore/settings/networksettings/ppp/debug.h +++ b/dev/null @@ -1,70 +0,0 @@ -/* - * kPPP: A pppd front end for the KDE project - * - * $Id$ - * Copyright (C) 1997 Bernd Wuebben - * wuebben@math.cornel.edu - * - * - * 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., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -#ifndef _DEBUGWIDGET_ -#define _DEBUGWIDGET_ - -#include -#include -#include -#include -#include - - -class myMultiEdit : public QMultiLineEdit { -public: - - myMultiEdit(QWidget *parent=0, const char *name=0); - - void newLine(); - void insertChar(unsigned char c); -}; - - -class DebugWidget : public QDialog { - Q_OBJECT -public: - DebugWidget(QWidget *parent=0, const char *name=0); - - void clear(); - -public slots: - void statusLabel(const QString &); - void toggleVisibility(); - void addChar(unsigned char); - -protected: - virtual void hideEvent(QHideEvent *); - virtual void resizeEvent(QResizeEvent *e); - -private: - void enter(); - QFrame *fline; - QPushButton *dismiss; - myMultiEdit *text_window; - - QLabel *statuslabel; -}; - -#endif - diff --git a/noncore/settings/networksettings/ppp/kpppwidget.cpp b/noncore/settings/networksettings/ppp/kpppwidget.cpp index 8d70cd4..f8a8dc3 100644 --- a/noncore/settings/networksettings/ppp/kpppwidget.cpp +++ b/noncore/settings/networksettings/ppp/kpppwidget.cpp @@ -241,10 +241,6 @@ KPPPWidget::KPPPWidget( QWidget *parent, const char *name, bool modal, WFlags fl // statdlg = new PPPStatsDlg(0, "stats", this, stats); // statdlg->hide(); - debugwindow = new DebugWidget(0,"debugwindow"); - // KWin::setIcons(debugwindow->winId(), kapp->icon(), kapp->miniIcon()); - debugwindow->hide(); - // load up the accounts combo box // resetaccounts(); @@ -257,14 +253,6 @@ KPPPWidget::KPPPWidget( QWidget *parent, const char *name, bool modal, WFlags fl // con->setGeometry(desk.center().x()-175, desk.center().y()-55, 350,110); // connect the ConnectWidgets various signals -// connect(con, SIGNAL(closeDebugWindow()), -// debugwindow, SLOT(hide())); -// connect(con, SIGNAL(debugMessage(const QString &)), -// debugwindow, SLOT(statusLabel(const QString &))); -// connect(con, SIGNAL(toggleDebugWindow()), -// debugwindow, SLOT(toggleVisibility())); -// connect(con, SIGNAL(debugPutChar(unsigned char)), -// debugwindow, SLOT(addChar(unsigned char))); // // connect(con, SIGNAL(startAccounting()), // // this, SLOT(startAccounting())); // // connect(con, SIGNAL(stopAccounting()), @@ -274,11 +262,6 @@ KPPPWidget::KPPPWidget( QWidget *parent, const char *name, bool modal, WFlags fl // connect(qApp, SIGNAL(shutDown()), // this, SLOT(shutDown())); -// debugwindow->setGeometry(desk.center().x()+190, desk.center().y()-55, -// debugwindow->width(),debugwindow->height()); - -// move(desk.center().x()-width()/2, desk.center().y()-height()/2); - // KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); @@ -635,15 +618,6 @@ void KPPPWidget::beginConnect() { // con->show(); - bool show_debug = PPPData::data()->get_show_log_window(); -// con->debug->setOn(show_debug); // toggle button - debugwindow->clear(); - if (!show_debug) - debugwindow->hide(); - else { - debugwindow->show(); -// con->raise(); - } emit begin_connect(); } diff --git a/noncore/settings/networksettings/ppp/kpppwidget.h b/noncore/settings/networksettings/ppp/kpppwidget.h index 266d829..d7e74af 100644 --- a/noncore/settings/networksettings/ppp/kpppwidget.h +++ b/noncore/settings/networksettings/ppp/kpppwidget.h @@ -29,27 +29,12 @@ #include -//#include "accounting.h" #include "conwindow.h" #include "accounts.h" #include "connect.h" -#include "debug.h" -//#include "pppstatdlg.h" -//class GraphSetup; -//class AboutWidget; -//class PPPStats; -class QDialog; class QPushButton; -/* class SignalEvent : public QEvent { */ -/* public: */ -/* SignalEvent(int s) : QEvent(User), sig(s) { } */ -/* int sigType() const { return sig; } */ -/* private: */ -/* int sig; */ -/* }; */ - class KPPPWidget : public QDialog { Q_OBJECT @@ -59,19 +44,12 @@ public: ~KPPPWidget(); void setPW_Edit(const QString &); - // virtual bool eventFilter(QObject *, QEvent *); - void setQuitOnDisconnect (bool b); - // bool quitOnDisconnect () {return m_bQuitOnDisconnect;}; private slots: void newdefaultaccount(int); -// void expandbutton(); void beginConnect(); void quitbutton(); - // void helpbutton(); - // void setup(); - // void rulesetLoadError(); void usernameChanged(const QString &); void passwordChanged(const QString &); void enterPressedInID(); @@ -79,19 +57,10 @@ private slots: void saveMyself(); void shutDown(); -/* protected slots: */ -/* virtual void accept(); */ -/* virtual void reject(); */ public slots: - // void resetaccounts(); -/* void resetCosts(const QString &); */ -/* void resetVolume(const QString &); */ void disconnect(); void log_window_toggled(bool on); -/* void startAccounting(); */ -/* void stopAccounting(); */ -/* void showStats(); */ signals: void begin_connect(); @@ -100,7 +69,6 @@ signals: public: QCheckBox *log; bool connected; - DebugWidget *debugwindow; QString con_speed; // ConnectWidget *con; // ConWindow *con_win; @@ -119,7 +87,6 @@ private: QString ruleset_load_errmsg; - // QPushButton *help_b; QPushButton *setup_b; QFrame *fline; QFrame *fline1; @@ -137,16 +104,6 @@ private: QLabel *label6; QLabel *radio_label; - - // QTabWidget *tabWindow; - // AccountWidget *accounts; - // GeneralWidget *general; - // ModemWidget *modem1; - // ModemWidget2 *modem2; - // GraphSetup *graph; - // AboutWidget *about; - - /* QString m_strCmdlAccount; */ /* bool m_bQuitOnDisconnect; */ /* bool m_bCmdlAccount; */ diff --git a/noncore/settings/networksettings/ppp/ppp.pro b/noncore/settings/networksettings/ppp/ppp.pro index ebfc713..a2e0118 100644 --- a/noncore/settings/networksettings/ppp/ppp.pro +++ b/noncore/settings/networksettings/ppp/ppp.pro @@ -4,8 +4,8 @@ TEMPLATE = lib #CONFIG += qt warn_on release CONFIG += qt warn_on debug DESTDIR = $(OPIEDIR)/plugins/networksettings -HEADERS = pppmodule.h devices.h modem.h modeminfo.h pppdata.h kpppconfig.h pppdata.h runtests.h general.h modemcmds.h knuminput.h knumvalidator.h kpppwidget.h conwindow.h debug.h accounts.h connect.h edit.h scriptedit.h pppdargs.h iplined.h pwentry.h pppconfig.h -SOURCES = pppmodule.cpp modem.cpp modeminfo.cpp pppdata.cpp runtests.cpp general.cpp modemcmds.cpp knuminput.cpp knumvalidator.cpp kpppwidget.cpp conwindow.cpp debug.cpp accounts.cpp connect.cpp edit.cpp scriptedit.cpp pppdargs.cpp iplined.cpp pwentry.cpp pppconfig.cpp +HEADERS = pppmodule.h devices.h modem.h modeminfo.h pppdata.h kpppconfig.h pppdata.h runtests.h general.h modemcmds.h knuminput.h knumvalidator.h kpppwidget.h conwindow.h accounts.h connect.h edit.h scriptedit.h pppdargs.h iplined.h pwentry.h pppconfig.h +SOURCES = pppmodule.cpp modem.cpp modeminfo.cpp pppdata.cpp runtests.cpp general.cpp modemcmds.cpp knuminput.cpp knumvalidator.cpp kpppwidget.cpp conwindow.cpp accounts.cpp connect.cpp edit.cpp scriptedit.cpp pppdargs.cpp iplined.cpp pwentry.cpp pppconfig.cpp INCLUDEPATH += $(OPIEDIR)/include ../ ../interfaces/ DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -L../interfaces/ -linterfaces diff --git a/noncore/settings/networksettings/ppp/pppmodule.cpp b/noncore/settings/networksettings/ppp/pppmodule.cpp index e13f8c8..fb2f3e5 100644 --- a/noncore/settings/networksettings/ppp/pppmodule.cpp +++ b/noncore/settings/networksettings/ppp/pppmodule.cpp @@ -80,6 +80,7 @@ QWidget *PPPModule::information(Interface *i){ */ QList PPPModule::getInterfaces(){ // List all of the files in the peer directory + qDebug("PPPModule::getInterfaces"); return list; } -- cgit v0.9.0.2