kde-workspace/kinfocenter/Modules/infosummary/progressboxwidget.cpp

93 lines
2.6 KiB
C++
Raw Normal View History

2014-11-13 19:30:51 +02:00
/*
* progressboxwidget.cpp
*
* Copyright (C) 2010 David Hubner <hubnerd@ntlworld.com>
*
* 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.
*
*/
#include "progressboxwidget.h"
ProgressBoxWidget::ProgressBoxWidget()
{
setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
setObjectName( QLatin1String("OuterFrame" ));
m_layout = new QGridLayout(this);
m_layout->setAlignment(Qt::AlignTop|Qt::AlignLeft);
m_layout->setSpacing(10);
setStyleSheet("QFrame#OuterFrame { border: 2px solid grey; border-radius: 10px; };");
createDisplay();
}
void ProgressBoxWidget::createDisplay()
{
m_iconWidget = new KPixmapWidget();
m_iconWidget->setAlignment(Qt::AlignCenter);
m_iconWidget->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
2014-11-13 19:30:51 +02:00
QFont bFont;
bFont.setBold(true);
m_info0Label = new QLabel();
m_info0Label->setTextInteractionFlags(Qt::TextSelectableByMouse);
m_info0Label->setFont(bFont);
m_info0NameLabel = new QLabel();
m_info0NameLabel->setTextInteractionFlags(Qt::TextSelectableByMouse);
m_info1Label = new QLabel();
m_info1Label->setTextInteractionFlags(Qt::TextSelectableByMouse);
m_info1Label->setFont(bFont);
m_progressBar = new QProgressBar();
m_layout->addWidget(m_iconWidget,1,1,2,1,Qt::AlignCenter);
2014-11-13 19:30:51 +02:00
m_layout->addWidget(m_info0Label,1,2,1,1);
m_layout->addWidget(m_info0NameLabel,1,3,1,1);
m_layout->addWidget(m_info1Label,2,2,1,1);
m_layout->addWidget(m_progressBar,2,3,1,1);
}
void ProgressBoxWidget::setLabelTitles(const QString &first, const QString &second)
{
m_info0Label->setText(first);
m_info1Label->setText(second);
}
void ProgressBoxWidget::setIcon(const KIcon &icon)
{
m_iconWidget->setPixmap(icon.pixmap(64));
2014-11-13 19:30:51 +02:00
}
void ProgressBoxWidget::setLabelOne(const QString &info)
{
m_info0NameLabel->setText(info);
}
void ProgressBoxWidget::setRange(int s, int e) const
{
m_progressBar->setRange(s,e);
}
void ProgressBoxWidget::setValue(int s) const
{
m_progressBar->setValue(s);
}