gpt4 book ai didi

c++ - Qt widget 推广 : whats difference btw these two codes?

转载 作者:太空狗 更新时间:2023-10-29 21:15:15 28 4
gpt4 key购买 nike

我尝试重新实现 mouseClickEvent,因为我需要区分右键单击和左键单击。我将我的QListView提升为WavList,并编写了以下代码,但出现了错误。

wavlist.h

#ifndef WAVLIST_H
#define WAVLIST_H

#include <QWidget>
#include <QListView>
#include <QMouseEvent>
#include <QDebug>

class WavList : public QListView
{
Q_OBJECT
public:
explicit WavList(QWidget *parent = 0);

protected:
void mousePressEvent(QMouseEvent* event);
};

#endif // WAVLIST_H

wavlist.cpp

#include "wavlist.h"

WavList::WavList(QWidget *parent) : QWidget(parent)
{
qDebug() << "lol";
}

void WavList::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::RightButton)
{
event->ignore();
}
else
{
QListView::mousePressEvent(event);
}
}

我收到以下错误:C2614:“WavList”:非法成员初始化:“QWidget”不是基础或成员

所以我像这样修复了我的代码。

WavList::WavList(QWidget *parent)
{
this->setParent(parent);
qDebug() << "lol";
}

这成功了!我的问题是,有什么区别?

最佳答案

错误应该很清楚:QWidget 不是WavList 的父级,QListView 是。您只能在构造函数初始化列表中有直接父代:

WavList::WavList(QWidget *parent) : QListView(parent)
{
...
}

另一个构造函数不使用构造函数初始化列表来设置小部件关系,而是使用特定函数。最终结果可能相同,但语义却大不相同。

关于c++ - Qt widget 推广 : whats difference btw these two codes?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38322963/

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