拉伸因子在 Qt 中是如何工作的?
Posted
技术标签:
【中文标题】拉伸因子在 Qt 中是如何工作的?【英文标题】:How does stretch factor work in Qt? 【发布时间】:2018-08-29 06:52:42 【问题描述】:我正在使用 pyqt5 开发一个 GUI 应用程序。在某个对话框中,我需要许多组件,其中一个是 QWebEngineView 作为绘制数据的画布,即使在创建对话框时图表还没有准备好,它也应该占用大部分可用空间。
我希望它看起来像这样:
我调查并发现了拉伸因子。我看到 QSizePolicy 仅适用于小部件而不适用于布局,as shown in this SO answer。但后来我看到 addWidget 和 addLayout 方法允许我在 QBoxLayout 的方向上设置拉伸因子,这对我的意图来说似乎很理想。
所以我尝试了:
from PyQt5.QtWidgets import QWidget, QLabel, QVBoxLayout, QHBoxLayout
from strategy_table import StrategyTable
layout = QVBoxLayout()
layout.addWidget(QLabel("Strategy components"))
# Upper layout for a table. Using a 30% of vertical space
upper_layout = QHBoxLayout() # I'm using a HBox because I also want a small button at the right side of the table
self.table = StrategyTable(self) # Own class derived from QTableWidget
upper_layout.addWidget(self.table)
add_button = QPushButton('Add')
add_button.clicked.connect(self._show_add_dialog)
upper_layout.addWidget(add_button)
layout.addLayout(upper_layout, 3) # Setting 20% of size with the stretch factor
# Then the plot area, using 60% of vertical space
layout.addWidget(QLabel("Plot area"))
canvas = QWebEngineView()
layout.addWidget(self.canvas, 6)
# Finally, a small are of 10% of vertical size to show numerical results
layout.addWidget(QLabel("Results"))
params_layout = self._create_results_labels() # A column with several QLabel-QTextArea pairs, returned as a QHBoxLayout
layout.addLayout(params_layout, 1)
self.setLayout(layout)
但它看起来和以前完全一样:
在底部添加结果布局之前看起来还不错,我猜是因为上面的表格一开始是空的,因此占用的空间很小,剩下的就留给画布了。
无论如何,似乎拉伸因子被忽略了,所以我不知道我是否在这里遗漏了什么,或者我没有完全理解拉伸因子。
顺便说一句,我知道我会使用 QtEditor 来设计 GUI,但我更喜欢手动做这些事情。
【问题讨论】:
如果您放置一个空的结果窗格会发生什么?我认为这不像您想要的那样,因为文本框“需要”更多空间 @Amfasis 如果将一个空的 QHBoxLayout 设置为结果窗格,那么它看起来完全符合预期。这是为什么呢? 【参考方案1】:问题很简单,布局处理小部件的位置和大小,但它有限制,其中小部件的最小大小,在你的情况下,最后一个元素的高度高于 10%,所以在物理上是不可能的。我们可以通过删除内容或使用 QScrollArea 来查看:
import sys
from PyQt5 import QtCore, QtGui, QtWidgets, QtWebEngineWidgets
class StrategyTable(QtWidgets.QTableWidget):
pass
class Widget(QtWidgets.QWidget):
def __init__(self, parent=None):
super(Widget, self).__init__(parent)
lay = QtWidgets.QVBoxLayout(self)
table = StrategyTable()
button = QtWidgets.QPushButton("Add")
hlay = QtWidgets.QHBoxLayout()
hlay.addWidget(table)
hlay.addWidget(button)
canvas = QtWebEngineWidgets.QWebEngineView()
canvas.setUrl(QtCore.QUrl("http://www.google.com/"))
scroll = QtWidgets.QScrollArea()
content_widget = QtWidgets.QWidget()
scroll.setWidgetResizable(True)
scroll.setWidget(content_widget)
vlay = QtWidgets.QVBoxLayout()
vlay.addWidget(QtWidgets.QLabel("Results:"))
params_layout = self._create_results_labels()
content_widget.setLayout(params_layout)
vlay.addWidget(scroll)
lay.addLayout(hlay, 3)
lay.addWidget(canvas, 6)
lay.addLayout(vlay, 1)
def _create_results_labels(self):
flay = QtWidgets.QFormLayout()
for text in ("Delta", "Gamma", "Rho", "Theta", "Vega"):
flay.addRow(text, QtWidgets.QTextEdit())
return flay
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
w = Widget()
w.show()
sys.exit(app.exec_())
【讨论】:
【参考方案2】:希望这将有助于理解布局以及拉伸因子
Sample Layout based on percentages (CPP)
QVBoxLayout *topMostVerticalLayout = new QVBoxLayout(this);
QHBoxLayout *upperHorznLayout = new QHBoxLayout();
QHBoxLayout *bottomHorznLayout = new QHBoxLayout();
QVBoxLayout *InnerVerticalLayout1 = new QVBoxLayout(this);
QVBoxLayout *InnerVerticalLayout2 = new QVBoxLayout(this);
QVBoxLayout *InnerVerticalLayout3 = new QVBoxLayout(this);
QVBoxLayout *InnerVerticalLayout4 = new QVBoxLayout(this);
QVBoxLayout *InnerVerticalLayout5 = new QVBoxLayout(this);
bottomHorznLayout->addLayout(InnerVerticalLayout1,15); //(15% stretch)
bottomHorznLayout->addLayout(InnerVerticalLayout2,15); //(15% stretch)
bottomHorznLayout->addLayout(InnerVerticalLayout3,15); //(15% stretch)
bottomHorznLayout->addLayout(InnerVerticalLayout4,15); //(15% stretch)
bottomHorznLayout->addLayout(InnerVerticalLayout5,40); //(40% stretch)
topMostVerticalLayout->addLayout(upperHorznLayout,3); //(30% stretch)
topMostVerticalLayout->addLayout(bottomHorznLayout,7); //(70% stretch)
this->setLayout(topMostVerticalLayout);
【讨论】:
以上是关于拉伸因子在 Qt 中是如何工作的?的主要内容,如果未能解决你的问题,请参考以下文章