使用 on__;其中小部件有自己的类
有没有办法使用标题中描述的命名约定来连接来自您自己的类的信号。
例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我非常确定 Qt 自动连接使用
objectName
(QObject::setObjectName()
),因此它不可能解析this
。I am quite sure Qt auto connection use the
objectName
(QObject::setObjectName()
), so there is no chance it can resolvethis
.