/* KSysGuard, the KDE System Guard Copyright (c) 2006-2007 John Tapsell This library 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 library 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 _ReniceDlg_h_ #define _ReniceDlg_h_ #include class Ui_ReniceDlgUi; class QButtonGroup; /** * This class creates and handles a simple dialog to change the scheduling * priority of a process. */ class ReniceDlg : public KDialog { Q_OBJECT public: /** Let the user specify the new priorities of the @p processes given, using the given current values. * @p currentCpuSched The current Cpu Scheduler of the processes. Set to -1 to they have different schedulers * @p currentIoSched The current I/O Scheduler of the processes. Set to -1 to they have different schedulers. Leave as the default -2 if not supported */ ReniceDlg(QWidget* parent, const QStringList& processes, int currentCpuPrio, int currentCpuSched, int currentIoPrio=-2, int currentIoSched=-2); int newCPUPriority; int newIOPriority; int newCPUSched; int newIOSched; bool ioniceSupported; public Q_SLOTS: void slotOk(); void updateUi(); void cpuSliderChanged(int value); void ioSliderChanged(int value); void cpuSchedulerChanged(int value); private: void setSliderRange(); Ui_ReniceDlgUi *ui; QButtonGroup *cpuScheduler; QButtonGroup *ioScheduler; int previous_cpuscheduler; }; #endif