自定义 QML QQuick彩绘项目成员锚点未在 qml 中设置为父级

Custom QML QQuickPainted Item Member anchors not set to parent in qml

本文关键字:qml 设置 QQuick QML 项目 成员 自定义      更新时间:2023-10-16

我在获取我创建的自定义 QQuickItem 的成员以锚定到其父级时遇到问题。我知道它正在加载并且构造函数正在运行,因为我放置了一些调试语句,但是由于某种原因,锚定到父对象不适用于子对象。

注意:这里发生了大量的代码缩短。我希望一切都是相关的,而不是压倒性的

QML 代码段

PDFDocument
{
id: pdfDocument
anchors.fill: parent
visible: false
pageView
{
dpi: 200
//this is not working and paint is not being called
//QML PDFPageView: Cannot anchor to an item that isn't a parent or sibling.
anchors.fill: parent        
}
}

C++ 代码片段

// PDFPageView.h
namespace TechnicalPublications
{
class PDFPageView : public QQuickPaintedItem
{
public:
Q_OBJECT
Q_PROPERTY( int dpi MEMBER m_dpi NOTIFY dpiChanged )
Q_SIGNALS:
void dpiChanged();
public:
PDFPageView( QQuickItem* parent = nullptr );
~PDFPageView();
void setPage( Poppler::Page* page_p );
void paint( QPainter* painter_p );
private:
Poppler::Page* m_page_p;
};
}
//PDFPage.cpp
namespace TechnicalPublications
{
PDFPageView::PDFPageView( QQuickItem* parent )
: QQuickPaintedItem( parent )
{
LOG_DEBUG( __FILE__, __LINE__ ) << "Page parent" << parent;
LOG_DEBUG( __FILE__, __LINE__ ) << "constructing PageView" << this;
}
void PDFPageView::setPage( Poppler::Page* page_p )
{
m_page_p = page_p;
update();
}
void PDFPageView::paint( QPainter* painter_p )
{
LOG_DEBUG( __FILE__, __LINE__ ) << "painting pdf page";
//deleted sections for spacing, point is paint is not called because size is 0
}
}
//PDFDocument.h
class PDFDocument : public QQuickItem
{
public:
Q_OBJECT
Q_PROPERTY( TechnicalPublications::PDFPageView* pageView READ getPageView )
PDFDocument( QQuickItem* parent = nullptr );
~PDFDocument();
PDFPageView* getPageView() { return &m_pageView; }
private:
PDFPageView m_pageView;
};
}
#endif // PDFDOCUMENT_H
//PDFDocument.cpp
namespace TechnicalPublications
{
PDFDocument::PDFDocument( QQuickItem* parent /*= nullptr*/ )
: QQuickItem( parent ),
m_pageView( this )
{
LOG_DEBUG( __FILE__, __LINE__ ) << "Document parent " << parent;
LOG_DEBUG( __FILE__, __LINE__ ) << "constructing Document " << this;
}
PDFDocument::~PDFDocument()
{
}
}

我什至很乐意将锚点设置为始终在 c++ 中采用父级是可能的,但我知道这样的视觉设置应该专门在 QML 中处理。关于为什么这是一个问题的任何想法?

这是因为分组属性(只是一个嵌套的 QObject* 属性(的范围与父对象相同。

因此,当您这样做时:

PDFDocument {
id: pdfDocument
pageView {
anchors.fill: parent        
}
}

parent指的是pdfDocument的父级。 你想做anchors.fill: pdfDocument.

或者,如果总是需要这样做,将其锚定在 c++ 中并避免在 QML 中执行此操作可能是有意义的。