69 lines
2.3 KiB
C++
Executable file
69 lines
2.3 KiB
C++
Executable file
// This file is part of RSS Guard.
|
|
//
|
|
// Copyright (C) 2011-2014 by Martin Rotter <rotter.martinos@gmail.com>
|
|
//
|
|
// RSS Guard 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.
|
|
//
|
|
// RSS Guard 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 RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "gui/statusbar.h"
|
|
|
|
#include "miscellaneous/iconfactory.h"
|
|
|
|
#include <QToolButton>
|
|
#include <QLabel>
|
|
#include <QProgressBar>
|
|
|
|
|
|
StatusBar::StatusBar(QWidget *parent) : QStatusBar(parent) {
|
|
setSizeGripEnabled(false);
|
|
setContentsMargins(0, 0, 0, 0);
|
|
|
|
// Initializations of widgets for status bar.
|
|
m_fullscreenSwitcher = new QToolButton(this);
|
|
m_fullscreenSwitcher->setAutoRaise(true);
|
|
m_fullscreenSwitcher->setCheckable(true);
|
|
m_fullscreenSwitcher->setIcon(qApp->icons()->fromTheme("view-fullscreen"));
|
|
m_fullscreenSwitcher->setText(tr("Fullscreen mode"));
|
|
m_fullscreenSwitcher->setToolTip(tr("Switch application between fulscreen/normal states right from this status bar icon."));
|
|
|
|
m_progressBar = new QProgressBar(this);
|
|
m_progressBar->setTextVisible(false);
|
|
m_progressBar->setFixedWidth(100);
|
|
m_progressBar->setVisible(false);
|
|
|
|
m_progressLabel = new QLabel(this);
|
|
m_progressLabel->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
|
|
m_progressLabel->setVisible(false);
|
|
|
|
// Add widgets.
|
|
addWidget(m_progressBar);
|
|
addWidget(m_progressLabel);
|
|
addPermanentWidget(m_fullscreenSwitcher);
|
|
}
|
|
|
|
StatusBar::~StatusBar() {
|
|
qDebug("Destroying StatusBar instance.");
|
|
}
|
|
|
|
void StatusBar::showProgress(int progress, const QString &label) {
|
|
m_progressLabel->setVisible(true);
|
|
m_progressBar->setVisible(true);
|
|
|
|
m_progressLabel->setText(label);
|
|
m_progressBar->setValue(progress);
|
|
}
|
|
|
|
void StatusBar::clearProgress() {
|
|
m_progressLabel->setVisible(false);
|
|
m_progressBar->setVisible(false);
|
|
}
|