[partition] Improve presentation of swap options

This commit is contained in:
Adriaan de Groot 2018-09-12 09:20:44 -04:00
parent dc492b301c
commit c3f3276188
2 changed files with 41 additions and 9 deletions

View File

@ -23,28 +23,32 @@
#include <QComboBox>
#include <QGridLayout>
#include <QHBoxLayout>
#include <QLabel>
PrettyRadioButton::PrettyRadioButton( QWidget* parent )
: QWidget( parent )
, m_radio( new QRadioButton )
, m_label( new ClickableLabel )
, m_mainLayout( new QGridLayout )
, m_optionsLayout( nullptr )
{
m_mainLayout = new QGridLayout;
setLayout( m_mainLayout );
m_radio = new QRadioButton;
m_label = new ClickableLabel;
connect( m_label, &ClickableLabel::clicked,
m_radio, &QRadioButton::click );
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, -1, 1 ); // Row span to right edge
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 );
}
@ -85,6 +89,28 @@ PrettyRadioButton::buttonWidget() const
void
PrettyRadioButton::addOptionsComboBox( QComboBox* box )
{
int row = m_mainLayout->rowCount(); // Rows index from 0, count from 1
m_mainLayout->addWidget( box, row, 1 );
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 );
}

View File

@ -24,6 +24,7 @@
class ClickableLabel;
class QComboBox;
class QGridLayout;
class QHBoxLayout;
/** @brief A radio button with fancy label next to it.
*
@ -52,10 +53,15 @@ public:
/** @brief Add an options drop-down to this button. */
void addOptionsComboBox( QComboBox* );
protected slots:
/// Options are hidden when the radio button is off
void toggleOptions( bool checked );
protected:
ClickableLabel* m_label;
QRadioButton* m_radio;
QGridLayout* m_mainLayout;
QHBoxLayout* m_optionsLayout;
};
#endif // PRETTYRADIOBUTTON_H