- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图在 QVBoxLayout
中以适当的大小渲染图像,但我无法检索到正确的大小。该布局包含一个 QLabel
,它在设计器 View 中以合适的尺寸显示(参见图片)。目标是以最大可用尺寸显示图像。
这是我获取尺寸的尝试(全部失败):
VideoResourceWidget::VideoResourceWidget(VideoResource* resource, QWidget *parent) :
QWidget(parent),
ui(new Ui::VideoResourceForm),
m_videoResource(resource)
{
ui->setupUi(this);
// INFO: -> size = (670,463) // this seems to be too small
m_videoSize = this->geometry().size();
// first attempt -> size = (0,0)
m_videoSize = this->geometry().size();
m_videoSize.setHeight(m_videoSize.height() - ui->controllerLayout->geometry().height());
// second attempt -> size = (100,30) way too small
m_videoSize = ui->videoLayout->itemAt(ui->videoLayout->indexOf(ui->frameLabel))->geometry().size();
ui->videoLayout->activate(); // hint from another question
// forth attempt -> size = (145,428) better but not still too small
m_videoSize = ui->videoLayout->itemAt(ui->videoLayout->indexOf(ui->frameLabel))->geometry().size();
// third attempt -> size = (670,434) there is still a lot more room
m_videoSize = this->geometry().size();
m_videoSize.setHeight(m_videoSize.height() - ui->controllerLayout->geometry().height());
ui->videoLayout->setSpacing(1);
ui->frameLabel->setMargin(0);
ui->videoLayout->activate(); // hint from another question
// fifth attempt -> size = (145,428) same as before
m_videoSize = ui->videoLayout->itemAt(ui->videoLayout->indexOf(ui->frameLabel))->geometry().size();
// sixth attempt -> size = (670,434) same as before
m_videoSize = this->geometry().size();
m_videoSize.setHeight(m_videoSize.height() - ui->controllerLayout->geometry().height());
QImage frame = m_videoResource->firstFrame();
ui->frameLabel->setPixmap(QPixmap::fromImage(frame).scaled(m_videoSize, Qt::KeepAspectRatio, Qt::SmoothTransformation));
connect(ui->nextFrameButton, SIGNAL(clicked()), this, SLOT(nextFrame()));
}
这是第一次显示 VideoResourceWidget
后的 GUI。
虽然最终结果不一定很漂亮,但我很乐意有效地利用可用空间。
更新:我更新了屏幕截图以反射(reflect)我最近的尝试。
更新:最小示例:
主窗口.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>771</width>
<height>580</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QVBoxLayout" name="verticalLayout" stretch="1,0">
<item>
<layout class="QHBoxLayout" name="displayLayout" stretch="0,0,0">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="frameLabel">
<property name="text">
<string>TextLabel</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="controllerLayout" stretch="1,0">
<item>
<widget class="QScrollBar" name="horizontalScrollBar">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="nextButton">
<property name="text">
<string>PushButton</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>771</width>
<height>25</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>
主窗口.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void next();
private:
Ui::MainWindow *ui;
QSize m_imageSize;
QImage m_image;
};
#endif // MAINWINDOW_H
主窗口.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->layout()->activate();
connect(ui->nextButton, SIGNAL(clicked()), this, SLOT(next()));
// Goal: display the image centered using the maximally available space
m_image = QImage("/tmp/lena.jpg");
m_imageSize = ui->frameLabel->size();
ui->frameLabel->setPixmap(QPixmap::fromImage(m_image).scaled(m_imageSize, Qt::KeepAspectRatio, Qt::SmoothTransformation));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::next()
{
// just redraw
m_imageSize = ui->frameLabel->size();
ui->frameLabel->setPixmap(QPixmap::fromImage(m_image).scaled(m_imageSize, Qt::KeepAspectRatio, Qt::SmoothTransformation));
}
最佳答案
减小布局的边距和间距(尝试一下。我不确定哪个是什么)。这样,标签和您的图片都会获得更多空间。
我不确定您希望它看起来像什么,但第二个屏幕截图对我来说非常好。 (保持纵横比使其占据标签的高度)。它只是没有居中。
关于c++ - Qt4中获取QVBoxLayout的一个布局单元格的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5595532/
我正在尝试使用 Qt5.0.1 制作登录表单。我创建了 2 个小部件,并将我的标签和行编辑放在其中一个中,将我的按钮放在另一个中。然后我将这两个小部件放在一个 QVBoxLayout 中,但是布局中两
我正在尝试放置 QVBoxLayout在 QScrollArea 内以便它可以垂直滚动。但是项目似乎没有添加到它。 我看到一个建议,我应该创建一个 ScrollArea 使用的内部小部件并将布局放置在
我正在尝试实现问卷调查之类的东西。所以我有一些文本编辑器小部件和一些单选按钮(是/否)。我已将它们全部添加到 QVBoxLayout 中。此布局被添加到 QScrollArea 中,QScrollAr
我正在尝试将一些 QLabels 添加到 QVBoxLayout 中: QVBoxLayout *qVB = new QVBoxLayout(); QLabel *l1 = new QLabel("L
我有一个小部件,我正在使用 QVBoxLayout 和小部件来组织小部件行。第一个小部件是 QLabel,然后是多个 QPushButton 小部件。 每个小部件的宽度占宽度的 100%,但是第一个小
我有一个带有 QVBoxLayout 的窗口。布局有一些子部件(在 .ui 文件中定义)。在我的窗口类的构造函数中,我创建了一个菜单并将其分配给布局。小部件的位置应该向下移动,因为菜单占用了一些垂直空
我想让两个代码同时工作,但我不知道该怎么做。 self.botV.setAlignment(Qt.Aligntop) self.botV.setAlignment(Qt.AlignCenter) 它只
我已经设置了一个带有一些文本的图像按钮,但由于一些额外的边距,图像与文本不对齐。我怎样才能摆脱这些边距?我试过设置 setContentsMargins(0,0,0,0)和 setSpacing(0)
我插入了 QLabel用一个小句子,一个QLineEdit和 QPushButton ,按此顺序,变为 QVBoxLayout .我的主窗口是用户桌面的 70%。 我的问题是我的标签扩展到父窗口高度的
我有一个带有 QVBoxLayout 的容器小部件。 我在 VBoxLayout 中添加了大约 100 个小部件。他们都有相同的高度。在某些时候,需要调整其中一行的大小。我调整(newWidth,ne
我有一个带有 QVBoxLayout 的容器小部件。 我在 VBoxLayout 中添加了大约 100 个小部件。他们都有相同的高度。在某些时候,需要调整其中一行的大小。我调整(newWidth,ne
我有一个 QVBoxLayout,当容器水平调整大小时,它似乎会挤压它的内容。这就是窗口处于最小宽度时的样子。一切都很完美: 以下是水平调整窗口大小后发生的情况: 正如您所看到的(查看突出显示的帖子,
我已经了解了如何调整布局中小部件之间的空间: Space between widgets in QVBoxLayout 。但是,我想知道如何调整添加到布局的布局之间的空间。 例如: layout =
我是学习 Python/PyQt 的初学者。我正在尝试将 QLabel 和 QLineEdit 添加到 QVBoxLayout 但是所有小部件都会添加到屏幕底部。 我尝试过使用 vbox.setAli
如何向 PySide2 中的 QVBoxLayout 添加滚动条。 self.mainWidget = QtWidgets.QWidget() self.window.setCentralWidget
我有一个通过拖放部分创建的 QVBoxLayout。在运行时,我在里面用命令插入了一些小部件 ui->verticalLayout->insertWidget()//使用适当的选项。 我插入的所有小部
我正在尝试设置一个具有文本输入和组合框的窗口。目前,我只想查看相应小部件下显示的文本和选择。 我已经使用了 QVBoxLayout(),因为我稍后会添加更多东西,并且认为这将是一种布置窗口的简单方法。
我正在尝试使标签在 QVBoxLayout 中相互重叠,如下所示: this->layout = new QGridLayout; this->layout->addLayout(new QVBoxL
我在使用 QGridLayout 时遇到了一些问题。这是代码,后面是解释: for(int i =0; isetText(DocName); QLabel* DocIcon = new QLa
如何调整 QVBoxLayout 的大小以填充没有空格的表单? 有空间: http://0000.2.img98.net/out.php/i25106_with-space.png 没有空格: htt
我是一名优秀的程序员,十分优秀!