在诺基亚 Qt 应用程序中自定义列表视图项目

发布于 2024-11-02 21:00:42 字数 211 浏览 0 评论 0原文

我正在 Symbian^3 平台上使用诺基亚 Qt4.7 编写一个简单的文件浏览器应用程序。我可以使用 QFileSystemModel 在列表视图小部件中显示目录/文件列表。但我想自定义列表视图项。我正在使用 QItemDelegate 来实现覆盖 sizHint 和 Paint 函数的技巧。我想在每个项目的末尾(ListMode)或图标的右下角(IconMode)显示一个复选框。我该怎么做呢? 谢谢。

I am writing a simple file browser app with Nokia Qt4.7 on Symbian^3 platform. I can display the directory/file list in the listview widget using QFileSystemModel. But I want to customize the list view item. And I am using QItemDelegate to do the trick overriding sizHint and paint functions. I want to display a checkbox in the end of every item (ListMode) or in the right down corder of the icon(IconMode). How can I do it?
Thanks.

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

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

发布评论

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

评论(2

小嗲 2024-11-09 21:00:42

我建议您重新实现 QItemDelegate::paint 函数并使用 QStylePainter并使用 QStylePainter::drawControl 渲染复选框元素。根据模式的不同,您可以改变您的绘画。

I'd suggest you to reimplement QItemDelegate::paint function and use QStylePainter and use QStylePainter::drawControl to render checkbox element. Depending on the mode you can vary your painting.

软糖 2024-11-09 21:00:42

您还可以使用 QML 来完成此操作。在 QML 中设置行样式要容易得多。
更具体地说,您的模型仍然是 c++ 。只有列表可以位于 QML 中。

You can also do this using QML . Styling rows is much easier in QML.
To be more specific your Model will still be c++ . Only the list can be in QML.

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