QWidget 中的 QML 小部件

发布于 2024-11-18 21:47:31 字数 1292 浏览 2 评论 0 原文

我有一个 QWidget 和一些简单的控件,如 Button、ProgressBar、TextEdit 等。这些都是用 QML 完成的,我是从 QML 示例中获取的。我正在阅读 http://doc.qt.io/archives/qt-4.7 /qtbinding.htmlhttp://doc.qt.io/archives/qt-4.7/qml-integration.html 目前我正在尝试 QDeclarativeView。

setAttribute(Qt::WA_TranslucentBackground);
layout = new QVBoxLayout(this);
QDeclarativeView* btnView = new QDeclarativeView;
btnView->setSource(QUrl::fromLocalFile("Button.qml"));
QObject* btnObj = btnView->rootObject();
btnObj->setProperty("width", 140);
btnObj->setProperty("height", 32);
btnObj->setProperty("text", "Close");
//progressBar = new QProgressBar(this);
button = new QPushButton("Click", this);
//layout->addWidget(progressBar);
layout->addWidget(button);
btnView->setGeometry(0, 0, 140, 32);
btnView->setBaseSize(140, 32);
layout->addWidget(btnView);
setLayout(layout);

屏幕截图 为什么我的 btnView 占用了这么多空间?它(QDeclarativeView)也是一个好方法吗?还是存在更好的解决方案?

使用 QDeclarativeComponent 时,我得到一个 QObject。但不是 QWidget 。这还是一个好的解决方案吗?在传统 QWidget 中拥有利润丰厚的简单小部件的最佳解决方案是什么?

I've a QWidget and I've some Simples Controlls like Button, ProgressBar, TextEdit etc.. done in QML which I am taking from QML Examples. I was reading http://doc.qt.io/archives/qt-4.7/qtbinding.html and http://doc.qt.io/archives/qt-4.7/qml-integration.html
at the moment I am trying QDeclarativeView.

setAttribute(Qt::WA_TranslucentBackground);
layout = new QVBoxLayout(this);
QDeclarativeView* btnView = new QDeclarativeView;
btnView->setSource(QUrl::fromLocalFile("Button.qml"));
QObject* btnObj = btnView->rootObject();
btnObj->setProperty("width", 140);
btnObj->setProperty("height", 32);
btnObj->setProperty("text", "Close");
//progressBar = new QProgressBar(this);
button = new QPushButton("Click", this);
//layout->addWidget(progressBar);
layout->addWidget(button);
btnView->setGeometry(0, 0, 140, 32);
btnView->setBaseSize(140, 32);
layout->addWidget(btnView);
setLayout(layout);

Screenshot
Why my btnView is taking this lot of Space ? and also is it (QDeclarativeView) a Good way of doing ? or there exists an even better solution ?

When using QDeclarativeComponent I get an QObject. But not a QWidget . and is this even a Good solution ? Whats the Best Solution to have lucrative Simple Widgets in Traditional QWidget ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦途 2024-11-25 21:47:31

您没有告诉布局如何调整小部件的大小。因此它将在其所有子级之间平均分配空间,在这种情况下,由于它只有 1 个子级,因此 QDeclarativeView 占据整个空间。使用 QLayout::setSizePolicy() 和 QWidget::setMaximumWidth() / QWidget::setMaximumHeight() 根据您的意愿调整大小。您还可以使用 QLayout::addSpacing();

QDeclarativeView 是向 QWidget 添加新 UI 元素的好方法。但它比使用 QWidgets 本身慢。

You didnt tell the layout how to size the widgets. So it will divide the space equally between all its children, in this case since it has only 1 child , the QDeclarativeView takes up the entire space. Use QLayout::setSizePolicy() and QWidget::setMaximumWidth() / QWidget::setMaximumHeight() to resize according to your wishes. You can also use QLayout::addSpacing();

QDeclarativeView is a decent way of adding new UI elements to QWidgets. But it is slower than using QWidgets themselves.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文