我想在QGroupBox上保持16/9的宽高比(下面屏幕截图左侧的那个)。对于测试,我做了一个简单的程序,在垂直布局中有4个组框,所有这些都是水平布局:
的的main.cpp
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
MainWindow.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();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
MainWindow.cpp
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
qDebug() << "horizontalLayout->hasHeightForWidth: " << ui->horizontalLayout->hasHeightForWidth();
}
MainWindow::~MainWindow()
{
delete ui;
}
MainWindow.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>1000</width>
<height>703</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="GroupBoxHFW" name="groupBox_1">
<property name="title">
<string>GroupBox</string>
</property>
</widget>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="minimumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="title">
<string>GroupBox</string>
</property>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_3">
<property name="minimumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="title">
<string>GroupBox</string>
</property>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_4">
<property name="minimumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>485</width>
<height>204</height>
</size>
</property>
<property name="title">
<string>GroupBox</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1000</width>
<height>21</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<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"/>
<customwidgets>
<customwidget>
<class>GroupBoxHFW</class>
<extends>QGroupBox</extends>
<header>GroupBoxHFW.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
GroupBoxHFW.h
#ifndef GROUPBOXHFW_H
#define GROUPBOXHFW_H
#include <QGroupBox>
class GroupBoxHFW : public QGroupBox
{
public:
GroupBoxHFW(QWidget * parent = 0);
GroupBoxHFW(const QString & title, QWidget * parent = 0);
int heightForWidth(int w) const;
bool hasHeightForWidth() const;
};
#endif // GROUPBOXHFW_H
GroupBoxHFW.cpp
#include "GroupBoxHFW.h"
#include <QDebug>
GroupBoxHFW::GroupBoxHFW(QWidget * parent) : QGroupBox(parent)
{
QSizePolicy policy(this->sizePolicy());
policy.setHeightForWidth(true);
this->setSizePolicy(policy);
}
GroupBoxHFW::GroupBoxHFW(const QString & title, QWidget * parent) : QGroupBox(title, parent)
{
QSizePolicy policy(this->sizePolicy());
policy.setHeightForWidth(true);
this->setSizePolicy(policy);
}
int GroupBoxHFW::heightForWidth(int w) const
{
qDebug() << "GroupBoxHFW::heightForWidth called";
return 9.f / 16.f * w;
}
bool GroupBoxHFW::hasHeightForWidth() const
{
qDebug() << "GroupBoxHFW::hasHeightForWidth called";
return true;
}
如您所见,我重新实现了虚函数int heightForWidth(int w) const
和bool hasHeightForWidth() const
,希望我的QGroupBox自动调整为16/9宽高比。不幸的是,它不起作用。程序启动时只调用GroupBoxHFW::heightForWidth()
一次,它甚至不会调整窗口小部件的大小。
以下是该计划的输出:
GroupBoxHFW::hasHeightForWidth called
horizontalLayout->hasHeightForWidth: true
GroupBoxHFW::hasHeightForWidth called
GroupBoxHFW::heightForWidth called
GroupBoxHFW::hasHeightForWidth called
GroupBoxHFW::hasHeightForWidth called
GroupBoxHFW::hasHeightForWidth called
GroupBoxHFW::hasHeightForWidth called
甚至更奇怪的是,当我调整窗口大小时,上面没有任何函数(hasHeightForWidth()
和heightForWidth()
被调用,而QGroupBox被调整大小。
出了什么问题?
答案 0 :(得分:2)
如果此组框位于垂直布局内,则您的方法可以正常工作。
正如名字所说hasHeightForWidth
在高度取决于宽度(这是为文字包装而设计)时得到了很好的定义,而不是另一种方式(你的情况)。
你能做什么?试试这个(我为QGraphicsWidget
实现了类似的功能,并且运行得很好):
QSize GroupBoxHFW::sizeHint() const {
QSize s = size();
lastHeight = s.height();
s.setWidth((s.height()*16)/9);
s.setHeight(QGroupBox::sizeHint().height());
return s;
}
void GroupBoxHFW::resizeEvent(QResizeEvent * event) {
QGroupBox::resizeEvent(event);
if (lastHeight!=height()) {
updateGeometry(); // it is possible that this call should be scheduled to next iteration of event loop
}
}
小偏离主题:
如果我这样做,我会尝试通过子类QLayout
实现此功能,而不是作为某些QWidget
的子类。这样,它可以多次用于不同的小部件。