gpt4 book ai didi

c++ - 具有背景图像和其他透明背景的 QFrame

转载 作者:搜寻专家 更新时间:2023-10-30 23:55:39 24 4
gpt4 key购买 nike

我正在制作桌面轮播应用。我需要在那里显示图像小部件,其中可能还包含其他子小部件。为此,我使用了带有所需图像作为背景的 QFrame。这是我尝试使用的图像:image link .我想要的是只显示图像,不显示背景图像或任何其他内容,因此对于用户来说它看起来就像图像一样。这是我的代码:

setGeometry(QRect(100, 20, 325,400));
setFrameStyle(QFrame::StyledPanel);
setStyleSheet("QFrame#ImageFrame { background-color: transparent; background: url(:icon/ipad-skin); }");
setAutoFillBackground(false);

但是,我得到的结果是:

enter image description here

我也试过了(从 here 获得)(并删除了样式表):

void MyWidget::paintEvent(QPaintEvent *p)
{
QPainter* pPainter = new QPainter(this);
pPainter->drawPixmap(rect(), QPixmap(":icon/newskin.png"));
delete pPainter;
QWidget::paintEvent(p);
}

没什么不同,结果完全一样。背景的灰色仍然显示。

如何让 QFrame 的灰色背景只显示图像(我设置的尺寸与图像相同)?

P.S 我知道这里已经回答了类似的问题:QWidget transparent background (but not the children) ,这里:Frameless and transparent window qt5但这些并不能解决我的问题。最后一个解决方案使我的 QFrame 看起来像这样:

enter image description here

QFrame 现在带有一个标题栏,这与我最初想要的完全不同。

编辑 - 这个解决方案有效,但在我的用例中,我需要在 QFrame 内显示通过 GL 渲染的图像(具体来说,在 iPad 图像的视口(viewport)中我们可以看到这里)。在 Windows 中,设置 Qt::WA_TranslucentBackground 属性会使 GL 渲染的图像不可见。不过,它在 Mac 中运行良好。所以我正在寻找一种也适用于 Windows 的解决方案。

最佳答案

此代码适用于我(在 MacOS/X 10.10.3 下测试,使用 Qt 5.5.0-beta;我希望它能在任何 Qt 4.5.0 或更高版本下运行):

主要.h:

#ifndef main_h
#define main_h

#include <QFrame>
#include <QPixmap>

class MyFrame : public QFrame
{
public:
MyFrame(QWidget * parent);

virtual void paintEvent(QPaintEvent * e);

private:
QPixmap _pixmap;
};

#endif

主要.cpp:

#include <QApplication>
#include <QPainter>
#include "main.h"

MyFrame :: MyFrame(QWidget * parent) : QFrame(parent, Qt::Window|Qt::FramelessWindowHint)
{
setAttribute(Qt::WA_TranslucentBackground);

_pixmap.load("/Users/jaf/iPad_Vector.png");
resize(_pixmap.size());
}

void MyFrame :: paintEvent(QPaintEvent * /*e*/)
{
QPainter p(this);
p.drawPixmap(0,0,width(),height(), _pixmap);
}

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

MyFrame f(NULL);
f.show();

return app.exec();
}

屏幕截图(在我的桌面背景前显示应用程序的窗口):

screenshot

关于c++ - 具有背景图像和其他透明背景的 QFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30965022/

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