获取 TreeViewColumn 的宽度(如果自动调整大小)

发布于 2024-09-28 08:59:41 字数 139 浏览 4 评论 0原文

如果大小调整模式设置为 gtk.TREE_VIEW_COLUMN_AUTOSIZE ,即使当前是这样,是否有办法获取 gtk.TreeViewColumn 想要的宽度(以像素为单位) gtk.TREE_VIEW_COLUMN_FIXED

Is there a way to get the width, in pixels, that a gtk.TreeViewColumn would want to be if the sizing mode was set as gtk.TREE_VIEW_COLUMN_AUTOSIZE, even if it's currently gtk.TREE_VIEW_COLUMN_FIXED?

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

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

发布评论

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

评论(1

梦在深巷 2024-10-05 08:59:41

我认为 gtk.TreeViewColumn。 cell_get_size() 会完成这项工作。

示例代码:

def show_size(treeview):
    col = treeview.get_column(0)
    cell = col.get_cell_renderers()[0]
    size = col.cell_get_position(cell)
    print 'current size: position=%s, width=%s' % size
    size = col.cell_get_size()
    print 'autosize: %s, x=%s, y=%s, w=%s, h=%s' % size

I think gtk.TreeViewColumn.cell_get_size() will do the job.

Sample code:

def show_size(treeview):
    col = treeview.get_column(0)
    cell = col.get_cell_renderers()[0]
    size = col.cell_get_position(cell)
    print 'current size: position=%s, width=%s' % size
    size = col.cell_get_size()
    print 'autosize: %s, x=%s, y=%s, w=%s, h=%s' % size
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文