- 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.
129 lines
2.5 KiB
C++
129 lines
2.5 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "PrettyRadioButton.h"
|
|
|
|
#include "utils/CalamaresUtilsGui.h"
|
|
#include "widgets/ClickableLabel.h"
|
|
|
|
#include <QButtonGroup>
|
|
#include <QComboBox>
|
|
#include <QGridLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
|
|
namespace Calamares
|
|
{
|
|
|
|
PrettyRadioButton::PrettyRadioButton( QWidget* parent )
|
|
: QWidget( parent )
|
|
, m_label( new ClickableLabel )
|
|
, m_radio( new QRadioButton )
|
|
, m_mainLayout( new QGridLayout )
|
|
, m_optionsLayout( nullptr )
|
|
{
|
|
setLayout( m_mainLayout );
|
|
|
|
m_label->setBuddy( m_radio );
|
|
|
|
m_label->setWordWrap( true );
|
|
m_label->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
|
|
|
|
m_mainLayout->addWidget( m_radio, 0, 0 );
|
|
m_mainLayout->addWidget( m_label, 0, 1 );
|
|
m_mainLayout->setContentsMargins( 0, 0, 0, 0 );
|
|
|
|
connect( m_label, &ClickableLabel::clicked, m_radio, &QRadioButton::click );
|
|
connect( m_radio, &QRadioButton::toggled, this, &PrettyRadioButton::toggleOptions );
|
|
}
|
|
|
|
|
|
void
|
|
PrettyRadioButton::setText( const QString& text )
|
|
{
|
|
m_label->setText( text );
|
|
}
|
|
|
|
|
|
void
|
|
PrettyRadioButton::setIconSize( const QSize& size )
|
|
{
|
|
m_radio->setIconSize( size );
|
|
}
|
|
|
|
|
|
void
|
|
PrettyRadioButton::setIcon( const QIcon& icon )
|
|
{
|
|
m_radio->setIcon( icon );
|
|
}
|
|
|
|
|
|
QSize
|
|
PrettyRadioButton::iconSize() const
|
|
{
|
|
return m_radio->iconSize();
|
|
}
|
|
|
|
|
|
void
|
|
PrettyRadioButton::setChecked( bool checked )
|
|
{
|
|
m_radio->setChecked( checked );
|
|
}
|
|
|
|
|
|
bool
|
|
PrettyRadioButton::isChecked() const
|
|
{
|
|
return m_radio->isChecked();
|
|
}
|
|
|
|
void
|
|
PrettyRadioButton::addToGroup( QButtonGroup* group, int id )
|
|
{
|
|
group->addButton( m_radio, id );
|
|
}
|
|
|
|
|
|
void
|
|
PrettyRadioButton::addOptionsComboBox( QComboBox* box )
|
|
{
|
|
if ( !box )
|
|
{
|
|
return;
|
|
}
|
|
|
|
if ( !m_optionsLayout )
|
|
{
|
|
QWidget* w = new QWidget;
|
|
m_optionsLayout = new QHBoxLayout;
|
|
m_optionsLayout->setAlignment( Qt::AlignmentFlag::AlignLeft );
|
|
m_optionsLayout->addStretch( 1 );
|
|
|
|
w->setLayout( m_optionsLayout );
|
|
m_mainLayout->addWidget( w, 1, 1 );
|
|
|
|
toggleOptions( m_radio->isChecked() );
|
|
}
|
|
|
|
m_optionsLayout->insertWidget( m_optionsLayout->count() - 1, box );
|
|
}
|
|
|
|
void
|
|
PrettyRadioButton::toggleOptions( bool toggle )
|
|
{
|
|
if ( m_optionsLayout )
|
|
{
|
|
m_optionsLayout->parentWidget()->setVisible( toggle );
|
|
}
|
|
}
|
|
|
|
} // namespace Calamares
|