mirror of https://github.com/cutefishos/calamares
Added WaitingWidget to libcalamaresui, wrapper for QtWaitingSpinner
parent
b14a715300
commit
382317dcaf
@ -0,0 +1,64 @@
|
|||||||
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
||||||
|
*
|
||||||
|
* Calamares 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.
|
||||||
|
*
|
||||||
|
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "WaitingWidget.h"
|
||||||
|
|
||||||
|
#include "utils/CalamaresUtilsGui.h"
|
||||||
|
#include "QtWaitingSpinner.h"
|
||||||
|
|
||||||
|
#include <QBoxLayout>
|
||||||
|
#include <QLabel>
|
||||||
|
|
||||||
|
WaitingWidget::WaitingWidget( const QString& text, QWidget* parent )
|
||||||
|
: QWidget( parent )
|
||||||
|
{
|
||||||
|
QBoxLayout* waitingLayout = new QVBoxLayout;
|
||||||
|
setLayout( waitingLayout );
|
||||||
|
waitingLayout->addStretch();
|
||||||
|
QBoxLayout* pbLayout = new QHBoxLayout;
|
||||||
|
waitingLayout->addLayout( pbLayout );
|
||||||
|
pbLayout->addStretch();
|
||||||
|
|
||||||
|
QtWaitingSpinner* spnr = new QtWaitingSpinner();
|
||||||
|
pbLayout->addWidget( spnr );
|
||||||
|
|
||||||
|
pbLayout->addStretch();
|
||||||
|
|
||||||
|
m_waitingLabel = new QLabel( text );
|
||||||
|
|
||||||
|
int spnrSize = m_waitingLabel->fontMetrics().height() * 4;
|
||||||
|
spnr->setFixedSize( spnrSize, spnrSize );
|
||||||
|
spnr->setRadius( spnrSize / 2 );
|
||||||
|
spnr->setLength( spnrSize / 2 );
|
||||||
|
spnr->setWidth( spnrSize / 8 );
|
||||||
|
spnr->start();
|
||||||
|
|
||||||
|
m_waitingLabel->setAlignment( Qt::AlignCenter );
|
||||||
|
waitingLayout->addSpacing( spnrSize / 2 );
|
||||||
|
waitingLayout->addWidget( m_waitingLabel );
|
||||||
|
waitingLayout->addStretch();
|
||||||
|
|
||||||
|
CalamaresUtils::unmarginLayout( waitingLayout );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
WaitingWidget::setText( const QString& text )
|
||||||
|
{
|
||||||
|
m_waitingLabel->setText( text );
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2014, Teo Mrnjavac <teo@kde.org>
|
||||||
|
*
|
||||||
|
* Calamares 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.
|
||||||
|
*
|
||||||
|
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef WAITINGWIDGET_H
|
||||||
|
#define WAITINGWIDGET_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
class QLabel;
|
||||||
|
|
||||||
|
class WaitingWidget : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit WaitingWidget( const QString& text, QWidget* parent = nullptr );
|
||||||
|
|
||||||
|
void setText( const QString& text );
|
||||||
|
|
||||||
|
private:
|
||||||
|
QLabel* m_waitingLabel;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // WAITINGWIDGET_H
|
Loading…
Reference in New Issue