summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-12-07 22:58:44 +0900
committerMichele Calgaro <[email protected]>2020-12-07 22:58:44 +0900
commit145abc15d57fb29701a12e8a14dcb9c1fd72e9be (patch)
treefbb4f2f737ec6f4e8a85bea5f2ca2257d20d7e22 /ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp
parentd95494d97233919fa0b2eebf60759537b793e05b (diff)
downloadtdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.tar.gz
tdebase-145abc15d57fb29701a12e8a14dcb9c1fd72e9be.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp')
-rw-r--r--ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp b/ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp
new file mode 100644
index 000000000..e71c6e0a0
--- /dev/null
+++ b/ksysguard/gui/SensorDisplayLib/ReniceDlg.cpp
@@ -0,0 +1,70 @@
+/*
+ KSysGuard, the KDE System Guard
+
+ Copyright (c) 1999 Chris Schlaeger <[email protected]>
+
+ 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.
+
+ 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+ KSysGuard is currently maintained by Chris Schlaeger <[email protected]>. Please do
+ not commit any changes without consulting me first. Thanks!
+
+*/
+
+#include <tdelocale.h>
+#include <knuminput.h>
+
+#include "ReniceDlg.moc"
+
+ReniceDlg::ReniceDlg(TQWidget* parent, const char* name, int currentPPrio,
+ int pid)
+ : KDialogBase( parent, name, true, i18n("Renice Process"),
+ KDialogBase::Ok|KDialogBase::Cancel, KDialogBase::Ok, true )
+{
+ TQWidget *page = new TQWidget( this );
+ setMainWidget(page);
+ vLay = new TQVBoxLayout(page, 20, -1, "ReniceLayout");
+
+ TQString msg;
+ msg = i18n("You are about to change the scheduling priority of\n"
+ "process %1. Be aware that only the Superuser (root)\n"
+ "can decrease the nice level of a process. The lower\n"
+ "the number is the higher the priority.\n\n"
+ "Please enter the desired nice level:").arg(pid);
+ message = new TQLabel(msg, page);
+ message->setMinimumSize(message->sizeHint());
+ vLay->addWidget(message);
+
+ /*
+ * Create a slider with an LCD display to the right using a horizontal
+ * layout. The slider and the LCD are kept in sync through signals
+ */
+ input = new KIntNumInput(currentPPrio, page, 10);
+ input->setRange(-20, 19);
+ vLay->addWidget(input);
+}
+
+ReniceDlg::~ReniceDlg() {
+ //
+}
+
+void ReniceDlg::slotOk()
+{
+ done(input->value());
+}
+
+void ReniceDlg::slotCancel()
+{
+ done(40);
+}