summaryrefslogtreecommitdiffstats
path: root/kppp/accounts.h
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/accounts.h')
-rw-r--r--kppp/accounts.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/kppp/accounts.h b/kppp/accounts.h
new file mode 100644
index 00000000..fe290f85
--- /dev/null
+++ b/kppp/accounts.h
@@ -0,0 +1,109 @@
+/* -*- C++ -*-
+ * kPPP: A pppd front end for the KDE project
+ *
+ * $Id$
+ *
+ * Copyright (C) 1997 Bernd Johannes Wuebben
+ * wuebben@math.cornell.edu
+ *
+ * based on EzPPP:
+ * Copyright (C) 1997 Jay Painter
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _ACCOUNTS_H_
+#define _ACCOUNTS_H_
+
+#include <qwidget.h>
+#include <qpushbutton.h>
+#include <qlistbox.h>
+#include "acctselect.h"
+
+class KDialogBase;
+class QCheckBox;
+class QLineEdit;
+class QTabDialog;
+class DialWidget;
+class ScriptWidget;
+class IPWidget;
+class DNSWidget;
+class GatewayWidget;
+
+class AccountWidget : public QWidget {
+ Q_OBJECT
+public:
+ AccountWidget( QWidget *parent=0, const char *name=0 );
+ ~AccountWidget() {}
+
+private slots:
+ void editaccount();
+ void copyaccount();
+ void newaccount();
+ void deleteaccount();
+ void slotListBoxSelect(int);
+ void resetClicked();
+ void viewLogClicked();
+
+private:
+ int doTab();
+
+signals:
+ void resetaccounts();
+ void resetCosts(const QString &);
+ void resetVolume(const QString &);
+
+private:
+ QString prettyPrintVolume(unsigned int);
+
+ KDialogBase *tabWindow;
+ DialWidget *dial_w;
+ AccountingSelector *acct;
+ IPWidget *ip_w;
+ DNSWidget *dns_w;
+ GatewayWidget *gateway_w;
+ ScriptWidget *script_w;
+
+ QPushButton *reset;
+ QPushButton *log;
+ QLabel *costlabel;
+ QLineEdit *costedit;
+ QLabel *vollabel;
+ QLineEdit *voledit;
+
+ QListBox *accountlist_l;
+ QPushButton *edit_b;
+ QPushButton *copy_b;
+ QPushButton *new_b;
+ QPushButton *delete_b;
+};
+
+
+class QueryReset : public QDialog {
+ Q_OBJECT
+public:
+ QueryReset(QWidget *parent);
+
+ enum {COSTS=1, VOLUME=2};
+
+private slots:
+ void accepted();
+
+private:
+ QCheckBox *costs, *volume;
+};
+
+#endif
+