gpt4 book ai didi

c++ - 如何在调整窗口大小时锁定纵横比?

转载 作者:行者123 更新时间:2023-11-30 05:06:11 25 4
gpt4 key购买 nike

我有一个 qt 应用程序可以打开一个显示图像的窗口。我希望能够调整窗口大小并保持窗口的纵横比。窗口的原始尺寸为 480x640(宽 x 高)。我想要的效果是,当我改变宽度时,我会随之改变高度,当我改变高度时,我会随之改变宽度。如何检测我是否正在更改窗口的宽度或高度。

我实现了下面的代码,当我改变宽度时它确实保持了纵横比,但是我无法改变窗口的高度。我无法使高度变小或变大。

下面的代码创建了窗口。

#ifndef VideoWidget_h
#define VideoWidget_h

#include <iostream>

// Qt libraries
#include <QApplication>
#include <QtCore>
#include <QWidget>
#include <QGLWidget>

using namespace cv;
using namespace std;

class VideoWidget : public QGLWidget
{
Q_OBJECT

public:
VideoWidget()
{

}

protected:

void resizeGL(int width, int height)
{
const float ASPECT_RATIO = (float) WIDTH / (float) HEIGHT;
const float aspect_ratio = (float) width / (float) height;

if (aspect_ratio > ASPECT_RATIO) {
height = (1.f / ASPECT_RATIO) * width;
resize(width, height);
} else if (aspect_ratio < ASPECT_RATIO) {
height = ASPECT_RATIO * height;
resize(width, height);
}
}

private:
int WIDTH = 480;
int HEIGHT = 640;

};


#endif /* VideoWidget_h */

下面的代码是main函数。

#include <iostream>

// Qt libraries
#include <QApplication>
#include <QtCore>
#include <QWidget>
#include <QGLWidget>

#include "VideoWidget.h"

using namespace cv;
using namespace std;

int main(int argc, char **argv)
{
QApplication app (argc, argv);

VideoWidget v;
v.resize(480, 640);
v.show();

return app.exec();
}

最佳答案

How to lock the aspect ratio while resizing the window?

在这种情况下,我们可以利用 QWidget::resizeEvent 的重载。 :

void MyWidget::resizeEvent(QResizeEvent *event)
{
static const float ratioY2X = (float) HEIGHT / (float) WIDTH;

// QResizeEvent type has oldSize() and size()
// and size() has an actual new size for the widget
// so we can just take it and apply the ratio.

// first try to detect the direction of the widget resize
if (event->oldSize().width() != event->size().width())
this->resize(event->size().width(), // apply the correct ratio
event->size().width() * ratioY2X); // to either of width/height
else
this->resize(event->size().height() / ratioY2X, // apply the correct ratio
event->size().height()); // to either of width/height
event->accept(); // we've finished processing resize event here
}

请注意,此解决方案没有应用尺寸提示(默认)。

附言在实际尝试调试之后,我已经使用 if 运算符更正了这个解决方案。我们是否应该通过拖动小部件的角来调整小部件的大小,然后宽度是优先考虑的(需要选择一个,否则它还能如何工作?)

关于c++ - 如何在调整窗口大小时锁定纵横比?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48043469/

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