File indexing completed on 2024-04-28 05:31:34

0001 /*
0002     KSysGuard, the KDE System Guard
0003 
0004     SPDX-FileCopyrightText: 2008 John Tapsell <tapsell@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 
0008 */
0009 
0010 #ifndef _LsofSearchWidget_h_
0011 #define _LsofSearchWidget_h_
0012 
0013 #include <QDialog>
0014 
0015 class Ui_LsofSearchWidget;
0016 
0017 /**
0018  * This class creates and handles a simple dialog to change the scheduling
0019  * priority of a process.
0020  */
0021 class LsofSearchWidget : public QDialog
0022 {
0023     Q_OBJECT
0024 
0025 public:
0026     explicit LsofSearchWidget(QWidget *parent);
0027     ~LsofSearchWidget();
0028 
0029 private:
0030     Ui_LsofSearchWidget *ui;
0031 };
0032 
0033 #endif