summaryrefslogtreecommitdiffstats
path: root/src/speeddialog.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2018-12-13 18:35:41 +0100
committerSlávek Banko <[email protected]>2018-12-13 18:42:05 +0100
commit0557917aa98c792eb316ce176c97849f3e7bdb3e (patch)
tree4ee596079b11ec246e6355a33563aa41d3e0e364 /src/speeddialog.h
parent63cec2ebf40be205347bd97b53ad2a77dbcdcb38 (diff)
downloadkcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.tar.gz
kcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.zip
Fix structure of directories
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/speeddialog.h')
-rw-r--r--src/speeddialog.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/speeddialog.h b/src/speeddialog.h
new file mode 100644
index 0000000..66b4380
--- /dev/null
+++ b/src/speeddialog.h
@@ -0,0 +1,50 @@
+
+/***************************************************************************
+ * *
+ * KCPULoad and KNetLoad are copyright (c) 1999-2000, Markus Gustavsson *
+ * (c) 2002, Ben Burton *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef __SPEEDDIALOG_H
+#define __SPEEDDIALOG_H
+
+#include <kdialogbase.h>
+
+/**
+ * A dialog used to select the update speed for a StatPopup.
+ */
+class SpeedDialog : public KDialogBase {
+ Q_OBJECT
+
+
+ public:
+ /**
+ * Constructor.
+ */
+ SpeedDialog(int defaultSpeed, TQWidget* parent);
+
+ /**
+ * Returns the speed currently selected in the dialog.
+ * This is valid after the dialog has closed.
+ */
+ int getSpeed() const;
+
+ private slots:
+ /**
+ * Updates the speed variable to reflect the latest changes in
+ * the speed combo box.
+ */
+ virtual void updateSpeed(const TQString&);
+
+ private:
+ int speed;
+ /**< The speed currently selected in the speed combo box. */
+};
+
+#endif