gpt4 book ai didi

qt - 如何使小部件溢出以使滚动条出现在 Qt 中?

转载 作者:行者123 更新时间:2023-12-04 13:14:04 24 4
gpt4 key购买 nike

我的小部件的结构是:

QWidget 自定义为带有圆形边框的面板。

要在边界内包含一个带有滚动条的区域并带有边距,然后我把它放在里面:

带有 QVBoxLayout 的 QScrollArea(垂直添加内容)

然后我在其中添加了一系列:

标题为 0 的 QGroupBox 和一个 QFormLayout

表单布局不像我想象的那样工作。里面的小部件是标签+旋转框,所有这些。

这是一张图片:

Image

第一的。他们没有居中。我不知道为什么。

第二。正如我告诉他们的,它们都被赋予了相同的固定尺寸,但无论如何它们都是堆积的,而不是压扁的,所以它们相互隐藏。为什么它不保持那个大小并且父 QScrollArea 显示外面的滚动条?这就是我想要的。

我不希望内容被压扁或拉伸(stretch)。我希望他们处于领先地位。如果屏幕很大,面板会很长,但内容会在最上面,总是一样的大小。

有人要了代码,所以我把它复制在这里,但是代码真的很大......我认为它更令人困惑。但是好吧,我会删除没有意义的线条。这是您在该框中看到的部分:

  // THE PANEL OUTSIDE (A QWIDGET) is mainParametersLayout_. This particular scroll bar inside
// is cameraModeParametersPanel_

cameraModeParametersPanel_ = new QScrollArea();
cameraModeParametersPanel_->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
cameraModeParametersPanel_->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
mainParametersLayout_->addWidget( cameraModeParametersPanel_ );

// HERE THERE ARE TWO MORE QGROUP BOXES. THE ONE THAT DOESN´T STAY THE WAY I SHOWED IS THIS.

QVBoxLayout* mainCameraLayout = new QVBoxLayout(cameraModeParametersPanel_);
mainCameraLayout->setSpacing(5);

// GROUP BOX
QGroupBox* activeCameraParametersGroup = new QGroupBox();
activeCameraParametersGroup->setObjectName( parametersContainerName );
activeCameraParametersGroup->setTitle(strings->cameraModeCameraParamsTitle);
mainCameraLayout->addWidget( activeCameraParametersGroup );

// LAYOUT
QFormLayout* paramLayout = new QFormLayout( activeCameraParametersGroup );
paramLayout->setRowWrapPolicy(QFormLayout::DontWrapRows);
paramLayout->setFormAlignment( Qt::AlignHCenter | Qt::AlignTop );
paramLayout->setLabelAlignment(Qt::AlignRight);


// Iso : Spin Integer
isoSpin = new SmartIntSpinButtons( control->getMinISO(), control->getMaxISO() );
isoSpin->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
paramLayout->addRow(strings->cameraISOCapString, isoSpin);

// FStop: Spin Double
fstopSpin = new SmartDoubleSpinButtons( control->getMinFStop(), control->getMaxFStop(), 2);
fstopSpin->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
paramLayout->addRow(strings->cameraFStopString, fstopSpin);



// some other spins here...



// Camera position: 3 Spin Double (X,Y,Z)
camPosSpinX = new SmartDoubleSpinButtons( control->getMinCamPos(), control->getMaxCamPos(), 1);
camPosSpinY = new SmartDoubleSpinButtons( control->getMinCamPos(), control->getMaxCamPos(), 1);
camPosSpinZ = new SmartDoubleSpinButtons( control->getMinCamPos(), control->getMaxCamPos(), 1);

camPosSpinX->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
camPosSpinY->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
camPosSpinZ->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);

paramLayout->addRow( new QLabel( strings->cameraPositionString ) );
QHBoxLayout* positionLy = new QHBoxLayout();
positionLy->addWidget( camPosSpinX );
positionLy->addWidget( camPosSpinY );
positionLy->addWidget( camPosSpinZ );
paramLayout->addRow( positionLy );

// Target Position: 3 Spin Double( X,Y,Z )
camTargetPosSpinX = new SmartDoubleSpinButtons( control->getMinCamTarget(), control->getMaxCamTarget(), 1);
camTargetPosSpinY = new SmartDoubleSpinButtons( control->getMinCamTarget(), control->getMaxCamTarget(), 1);
camTargetPosSpinZ = new SmartDoubleSpinButtons( control->getMinCamTarget(), control->getMaxCamTarget(), 1);

camTargetPosSpinX->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
camTargetPosSpinY->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
camTargetPosSpinZ->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);

paramLayout->addRow( new QLabel( strings->cameraTargetPositionString ));
QHBoxLayout* targetLy = new QHBoxLayout();
targetLy->addWidget( camTargetPosSpinX );
targetLy->addWidget( camTargetPosSpinY );
targetLy->addWidget( camTargetPosSpinZ );
paramLayout->addRow( targetLy );

// and the resoultion spins, which are the same style like the last one (but only X and Y).

现在是所有样式表:
/* THE PANEL THAT CONTAINS THE QSCROLLBAR OUTSIDE */

SmartPanel
{
background-image: url(:/resources/images/containers/panel_bg.png);
background-repeat: repeat-y;
background-position: left top;
background-color: white;
border: 1px solid #aaa;
border-radius: 10;
min-width: 20px;
padding: 5px;

}


QScrollArea#parametersPanelScrollArea
{
background: transparent;
border: none;
}


/* the qgroupbox */


QGroupBox#parametersContainer
{
background-color: white;
padding-top: 25px;
border-style: solid;
border-width: 1px;
border-color: #aaa;
border-radius: 10px;
}

QGroupBox#parametersContainer::title {
subcontrol-origin: margin;
subcontrol-position: top center;
border: 1px solid #aaa;
margin-top: -5px;
padding: 8px 5px 5px 5px;
font-size: 18px;
border-radius: 5px;
}


/* ------------------ SPINBOX WIDGET ------------------------------------------*/

QWidget#intSpin, QWidget#doubleSpin
{
min-height: 20px;
border: 1px solid #ccc;
padding: 0px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ddd, stop:1 #fff);
}

QPushButton#upSpinBtn,
QPushButton#downSpinBtn
{
border-radius: 0px;
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ddd, stop:1 #fff);*/
background-repeat: no-repeat;
background-position: center;
border: none;
}

QPushButton#upSpinBtn
{
background-image: url(:/resources/images/buttons/up_sm_arrow.png);
}

QPushButton#downSpinBtn
{
background-image: url(:/resources/images/buttons/down_sm_arrow.png);
}

最佳答案

QScrollArea 不是容器。 QScrollArea 是另一个小部件的“ ScrollView ”。你不应该在 QScrollArea 上设置布局。您应该创建小部件,用适当的布局填充它,然后使用 QScrollArea::setWidget(QWidget *)使其可滚动。

关于qt - 如何使小部件溢出以使滚动条出现在 Qt 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14254382/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com