/************************************************************************* * Copyright (C) 2008 by Volker Lanz * * * * 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 3 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, see .* *************************************************************************/ #if !defined(APPLYPROGRESSDIALOGWIDGET_H) #define APPLYPROGRESSDIALOGWIDGET_H #include "ui_applyprogressdialogwidgetbase.h" /** Central widget for the ProgressDialog. @author Volker Lanz */ class ApplyProgressDialogWidget : public QWidget, public Ui::ApplyProgressDialogWidgetBase { public: explicit ApplyProgressDialogWidget(QWidget* parent); public: QTreeWidget& treeTasks() { Q_ASSERT(m_TreeTasks); return *m_TreeTasks; } QProgressBar& progressTotal() { Q_ASSERT(m_ProgressTotal); return *m_ProgressTotal; } QProgressBar& progressSub() { Q_ASSERT(m_ProgressSub); return *m_ProgressSub; } QLabel& status() { Q_ASSERT(m_LabelStatus); return *m_LabelStatus; } QLabel& totalTime() { Q_ASSERT(m_LabelTime); return *m_LabelTime; } }; #endif