如何在 QListView 中获取所选项目委托

发布于 2024-11-28 22:57:21 字数 53 浏览 0 评论 0原文

我想在我的 QListView 上实现拖放,所以我想获取所选项目委托。我怎样才能做到这一点?

I want to implement drag and drop on my QListView, so I would like to get the selected item delegate. How can I do that?

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

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

发布评论

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

评论(2

坏尐絯℡ 2024-12-05 22:57:21

我还没有亲自测试过这一点,但这是我通过阅读文档< /a>.

QListView 有一个 QList,其中包含所选项目。您可以使用QListView::selectedIndexes()访问此列表。

然后您可以为所选索引调用 QAbstractItemView::itemDelegate( const QModelIndex& index ) 。此函数返回一个 QAbstractItemDelegate*

I haven't tested this for myself, but this is what I found out by reading the documentation.

QListView has a QList<QModelIndex> which contains the selected items. You can access this list using QListView::selectedIndexes().

Then you can call QAbstractItemView::itemDelegate( const QModelIndex& index ) for your selected index. This function returns a QAbstractItemDelegate*.

℡寂寞咖啡 2024-12-05 22:57:21

我不确定这是否对您有帮助,但您可以使用此功能:

void QListView::currentChanged ( const QModelIndex & current, const QModelIndex & previous ) [virtual protected]

void QAbstractItemView::dataChanged ( const QModelIndex & topLeft, const QModelIndex & bottomRight ) [virtual protected slot]

参考 Qt QAbstractItemView 类文档

问候语
罗伯特

I'm not sure if this will help You, but You can use this functions:

void QListView::currentChanged ( const QModelIndex & current, const QModelIndex & previous ) [virtual protected]

and

void QAbstractItemView::dataChanged ( const QModelIndex & topLeft, const QModelIndex & bottomRight ) [virtual protected slot]

and refer to Qt QAbstractItemView class documentation

greetings
Robert

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