如何添加信号 tabMoved?
How do i add the signal tabMoved?
我想创建一个地图,其中创建的每个选项卡都以他的索引作为键存储在那里,问题是如果我移动选项卡的位置他的索引会改变,所以我只需要更新它选项卡已移动,我在文档中看到信号 tabMoved 但我找不到如何实现它,通常,在 qt creator 中我可以转到插槽并从那里添加,但我找不到它。
您必须为您的应用“订阅”信号:
void QTabWidget::currentChanged(int index)
This signal is emitted whenever the current page index changes. The parameter is the new current page index position, or -1 if there isn't a new one (for example, if there are no widgets in the QTabWidget)
那么只要用户 sort/change 标签顺序
你就可以更新
我想创建一个地图,其中创建的每个选项卡都以他的索引作为键存储在那里,问题是如果我移动选项卡的位置他的索引会改变,所以我只需要更新它选项卡已移动,我在文档中看到信号 tabMoved 但我找不到如何实现它,通常,在 qt creator 中我可以转到插槽并从那里添加,但我找不到它。
您必须为您的应用“订阅”信号:
void QTabWidget::currentChanged(int index)
This signal is emitted whenever the current page index changes. The parameter is the new current page index position, or -1 if there isn't a new one (for example, if there are no widgets in the QTabWidget)
那么只要用户 sort/change 标签顺序
你就可以更新