1cd9b93a22
- point to main Calamares site in the 'part of' headers instead of to github (this is the "this file is part of Calamares" opening line for most files). - remove boilerplate from all source files, CMake modules and completions, this is the 3-paragraph summary of the GPL-3.0-or-later, which has a meaning entirely covered by the SPDX tag.
168 lines
4.1 KiB
C++
168 lines
4.1 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2016 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
|
|
#include "EncryptWidget.h"
|
|
|
|
#include "ui_EncryptWidget.h"
|
|
|
|
#include "utils/CalamaresUtilsGui.h"
|
|
#include "utils/Retranslator.h"
|
|
|
|
EncryptWidget::EncryptWidget( QWidget* parent )
|
|
: QWidget( parent )
|
|
, m_ui( new Ui::EncryptWidget )
|
|
, m_state( Encryption::Disabled )
|
|
{
|
|
m_ui->setupUi( this );
|
|
|
|
m_ui->m_iconLabel->setFixedWidth( m_ui->m_iconLabel->height() );
|
|
m_ui->m_passphraseLineEdit->hide();
|
|
m_ui->m_confirmLineEdit->hide();
|
|
m_ui->m_iconLabel->hide();
|
|
|
|
connect( m_ui->m_encryptCheckBox, &QCheckBox::stateChanged, this, &EncryptWidget::onCheckBoxStateChanged );
|
|
connect( m_ui->m_passphraseLineEdit, &QLineEdit::textEdited, this, &EncryptWidget::onPassphraseEdited );
|
|
connect( m_ui->m_confirmLineEdit, &QLineEdit::textEdited, this, &EncryptWidget::onPassphraseEdited );
|
|
|
|
setFixedHeight( m_ui->m_passphraseLineEdit->height() ); // Avoid jumping up and down
|
|
updateState();
|
|
|
|
CALAMARES_RETRANSLATE_SLOT( &EncryptWidget::retranslate )
|
|
}
|
|
|
|
|
|
void
|
|
EncryptWidget::reset()
|
|
{
|
|
m_ui->m_passphraseLineEdit->clear();
|
|
m_ui->m_confirmLineEdit->clear();
|
|
|
|
m_ui->m_encryptCheckBox->setChecked( false );
|
|
}
|
|
|
|
|
|
EncryptWidget::Encryption
|
|
EncryptWidget::state() const
|
|
{
|
|
return m_state;
|
|
}
|
|
|
|
|
|
void
|
|
EncryptWidget::setText( const QString& text )
|
|
{
|
|
m_ui->m_encryptCheckBox->setText( text );
|
|
}
|
|
|
|
|
|
QString
|
|
EncryptWidget::passphrase() const
|
|
{
|
|
if ( m_state == Encryption::Confirmed )
|
|
{
|
|
return m_ui->m_passphraseLineEdit->text();
|
|
}
|
|
return QString();
|
|
}
|
|
|
|
|
|
void
|
|
EncryptWidget::retranslate()
|
|
{
|
|
m_ui->retranslateUi( this );
|
|
onPassphraseEdited(); // For the tooltip
|
|
}
|
|
|
|
|
|
///@brief Give @p label the @p pixmap from the standard-pixmaps
|
|
static void
|
|
applyPixmap( QLabel* label, CalamaresUtils::ImageType pixmap )
|
|
{
|
|
label->setFixedWidth( label->height() );
|
|
label->setPixmap( CalamaresUtils::defaultPixmap( pixmap, CalamaresUtils::Original, label->size() ) );
|
|
}
|
|
|
|
void
|
|
EncryptWidget::updateState()
|
|
{
|
|
if ( m_ui->m_passphraseLineEdit->isVisible() )
|
|
{
|
|
QString p1 = m_ui->m_passphraseLineEdit->text();
|
|
QString p2 = m_ui->m_confirmLineEdit->text();
|
|
|
|
if ( p1.isEmpty() && p2.isEmpty() )
|
|
{
|
|
applyPixmap( m_ui->m_iconLabel, CalamaresUtils::StatusWarning );
|
|
m_ui->m_iconLabel->setToolTip( tr( "Please enter the same passphrase in both boxes." ) );
|
|
}
|
|
else if ( p1 == p2 )
|
|
{
|
|
applyPixmap( m_ui->m_iconLabel, CalamaresUtils::StatusOk );
|
|
m_ui->m_iconLabel->setToolTip( QString() );
|
|
}
|
|
else
|
|
{
|
|
applyPixmap( m_ui->m_iconLabel, CalamaresUtils::StatusError );
|
|
m_ui->m_iconLabel->setToolTip( tr( "Please enter the same passphrase in both boxes." ) );
|
|
}
|
|
}
|
|
|
|
Encryption newState;
|
|
if ( m_ui->m_encryptCheckBox->isChecked() )
|
|
{
|
|
if ( !m_ui->m_passphraseLineEdit->text().isEmpty()
|
|
&& m_ui->m_passphraseLineEdit->text() == m_ui->m_confirmLineEdit->text() )
|
|
{
|
|
newState = Encryption::Confirmed;
|
|
}
|
|
else
|
|
{
|
|
newState = Encryption::Unconfirmed;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
newState = Encryption::Disabled;
|
|
}
|
|
|
|
if ( newState != m_state )
|
|
{
|
|
m_state = newState;
|
|
emit stateChanged( m_state );
|
|
}
|
|
}
|
|
|
|
void
|
|
EncryptWidget::onPassphraseEdited()
|
|
{
|
|
if ( !m_ui->m_iconLabel->isVisible() )
|
|
{
|
|
m_ui->m_iconLabel->show();
|
|
}
|
|
|
|
updateState();
|
|
}
|
|
|
|
|
|
void
|
|
EncryptWidget::onCheckBoxStateChanged( int checked )
|
|
{
|
|
// @p checked is a Qt::CheckState, 0 is "unchecked" and 2 is "checked"
|
|
m_ui->m_passphraseLineEdit->setVisible( checked );
|
|
m_ui->m_confirmLineEdit->setVisible( checked );
|
|
m_ui->m_iconLabel->setVisible( checked );
|
|
m_ui->m_passphraseLineEdit->clear();
|
|
m_ui->m_confirmLineEdit->clear();
|
|
m_ui->m_iconLabel->clear();
|
|
|
|
updateState();
|
|
}
|