Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有预先存在的代码,它具有类似外观的树视图,但实际上并未使用 QTreeView(使用带有自定义绘制的 QListWidget)。
我的任务是在父对象和子对象之间添加缩进,但我无法找到如何从 QStyle 获取样式默认缩进宽度。该程序必须在各种操作系统上运行并允许使用自定义样式表。所以从 QStyle 获得这个选项很重要。
问候。
在 qt 来源中找到了这个
必须在小部件的过程 中使用 QStyle::pixelMetric 和 QStyle::PM_TreeViewIndentation
ident = style()->pixelMetric(QStyle::PM_TreeViewIndentation)