1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
Window::Window()
{
FlowLayout *flowLayout = new FlowLayout;
flowLayout->addWidget(new QPushButton(tr("Short")));
flowLayout->addWidget(new QPushButton(tr("Longer")));
flowLayout->addWidget(new QPushButton(tr("Different text")));
flowLayout->addWidget(new QPushButton(tr("More text")));
flowLayout->addWidget(new QPushButton(tr("Even longer button text")));
setWindowTitle(tr("Flow Layout"));
/* nécessaire si l'objet gère directement le flowLayout pour que le minimumSize soit pris en compte */
flowLayout->setSizeConstraint( QLayout::SetMinimumSize ) ;
// Ajout des boutons dans un QGroupBox
QGroupBox *gb = new QGroupBox ;
gb->setLayout( flowLayout ) ;
QHBoxLayout *lay = new QHBoxLayout( this ) ;
lay->addWidget( gb ) ;
/* nécessaire pour que le minimumSize soit pris en compte */
lay->setSizeConstraint( QLayout::SetMinimumSize ) ;
}
void Window::resizeEvent( QResizeEvent *event )
{
bool breaking ;
/* Si le layout de l'objet est un FlowLayout (cas : pas de QGroupBox utilisé dans le constructeur) */
breaking = this->force_old_size( this, event->oldSize() ) ;
if ( breaking == false )
{
foreach ( QObject *obj, this->children() )
{
breaking = this->force_old_size( qobject_cast<QWidget *>( obj ), event->oldSize() ) ;
if ( breaking == true )
break ;
}
}
if ( breaking == false )
QWidget::resizeEvent( event ) ;
}
bool Window::force_old_size( QWidget *widget, QSize old_size )
{
bool retour ;
retour = false ;
if ( widget != 0 && qobject_cast<FlowLayout *>( widget->layout() ) != 0 )
{
if ( widget->height() < widget->heightForWidth( widget->width() ) )
{
this->resize( old_size ) ;
retour = true ;
}
}
return retour ;
} |
Partager