summaryrefslogtreecommitdiffstats
path: root/src/knemod/interfacestatusdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/knemod/interfacestatusdialog.h')
-rw-r--r--src/knemod/interfacestatusdialog.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/knemod/interfacestatusdialog.h b/src/knemod/interfacestatusdialog.h
new file mode 100644
index 0000000..3b15362
--- /dev/null
+++ b/src/knemod/interfacestatusdialog.h
@@ -0,0 +1,89 @@
+/* This file is part of KNemo
+ Copyright (C) 2004, 2006 Percy Leonhardt <percy@eris23.de>
+
+ KNemo 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.
+
+ KNemo 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 library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef INTERFACESTATUSDIALOG_H
+#define INTERFACESTATUSDIALOG_H
+
+#include <qwidget.h>
+
+#include "interfacestatusdlg.h"
+
+class QTimer;
+class Interface;
+
+/**
+ * This class serves as the main window for KNemo. It handles the
+ * menus, toolbars, and status bars.
+ *
+ * @short Main window class
+ * @author Percy Leonhardt <percy@eris23.de>
+ */
+
+class InterfaceStatusDialog : public InterfaceStatusDlg
+{
+ Q_OBJECT
+public:
+ /**
+ * Default Constructor
+ */
+ InterfaceStatusDialog( Interface* interface,
+ QWidget* parent = 0L, const char* name = 0L );
+
+ /**
+ * Default Destructor
+ */
+ virtual ~InterfaceStatusDialog();
+
+ /**
+ * Implemented to store position.
+ */
+ void hide();
+ void show();
+
+ /**
+ * Enable or disable the statistics group when the user turned statistics on or off.
+ */
+ void setStatisticsGroupEnabled( bool enabled );
+
+public slots:
+ /**
+ * Enable the network groups when the interface is connected
+ */
+ void enableNetworkGroups( int );
+ /**
+ * Disable the network groups when the interface is not connected
+ */
+ void disableNetworkGroups( int );
+ /**
+ * Update the statistics tab when data changed
+ */
+ void statisticsChanged();
+
+private slots:
+ void updateDialog();
+
+private:
+ QPoint mPos;
+ bool mPosInitialized;
+
+ QTimer* mTimer;
+ Interface* mInterface;
+};
+
+#endif // INTERFACESTATUSDIALOG_H