File indexing completed on 2024-04-28 16:26:31

0001 /**************************************************************************
0002 *   Copyright (C) 2007 by Michel Ludwig (michel.ludwig@kdemail.net)       *
0003 ***************************************************************************/
0004 
0005 /**************************************************************************
0006 *                                                                         *
0007 *   This program is free software; you can redistribute it and/or modify  *
0008 *   it under the terms of the GNU General Public License as published by  *
0009 *   the Free Software Foundation; either version 2 of the License, or     *
0010 *   (at your option) any later version.                                   *
0011 *                                                                         *
0012 ***************************************************************************/
0013 
0014 #ifndef CONFIGCHECKERWIDGET_H
0015 #define CONFIGCHECKERWIDGET_H
0016 
0017 #include <QLabel>
0018 #include <QProgressBar>
0019 #include <QWidget>
0020 
0021 #include <QListWidget>
0022 
0023 #include "ui_configcheckerwidget.h"
0024 
0025 class ConfigCheckerWidget : public QWidget, public Ui::ConfigCheckerWidget
0026 {
0027     Q_OBJECT
0028 
0029 public:
0030     explicit ConfigCheckerWidget(QWidget *parent = 0);
0031     ~ConfigCheckerWidget();
0032 
0033     QProgressBar* progressBar();
0034     QLabel* label();
0035     QListWidget* listWidget();
0036 
0037 };
0038 
0039 #endif