使用 on__;其中小部件有自己的类

发布于 2024-11-05 09:25:02 字数 393 浏览 0 评论 0原文

有没有办法使用标题中描述的命名约定来连接来自您自己的类的信号。

例如:

class MyTree : public QTreeWidget
{
    Q_OBJECT

private slots:
    void on_this_itemClicked(QTreeWidgetItem* item, int column);
};

我知道我可以像这样使用连接......

connect(this, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(myItemClicked(QTreeWidgetItem*, int)));

但我只是好奇它是否有效。

Is there a way to use the naming convention described in the title to connect a signal from your own class.

E.g:

class MyTree : public QTreeWidget
{
    Q_OBJECT

private slots:
    void on_this_itemClicked(QTreeWidgetItem* item, int column);
};

i understand i could use connect like this...

connect(this, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(myItemClicked(QTreeWidgetItem*, int)));

...but i was just curious as to if it works.

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

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

发布评论

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

评论(1

心清如水 2024-11-12 09:25:02

我非常确定 Qt 自动连接使用 objectName (QObject::setObjectName()),因此它不可能解析 this

I am quite sure Qt auto connection use the objectName (QObject::setObjectName()), so there is no chance it can resolve this.

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