小部件的宽度

发布于 2024-09-11 21:12:57 字数 105 浏览 5 评论 0原文

在 PyGTK 中计算小部件尺寸的最简单方法是什么?我知道使用 gtk.Window 对象很容易做到,但我在参考手册中找不到任何获取其他对象尺寸的方法。

非常感谢任何帮助,谢谢:D

In PyGTK what is the easiest way to figure out the dimensions of a widget? I know that it is easy to do with the gtk.Window object, but I can't find in the reference manual any way to get dimensions for the other objects.

Any help is greatly appreciated thanks :D

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

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

发布评论

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

评论(1

菩提树下叶撕阳。 2024-09-18 21:12:57

您可能正在寻找 get_allocation 方法:

get_allocation() 方法返回一个
gtk.gdk.矩形包含
小部件分配的边界。

size_request

size_request() 方法返回
作为元组的小部件的首选大小
包含其所需的宽度和
高度。该方法通常用于
实现 gtk.Container 时
子类来安排容器的
子部件并决定大小
拨款给他们
size_allocate() 方法。获得一个
尺寸请求要求小部件
与屏幕相关联,因为
可能需要字体信息。

还要记住,尺寸请求是
不一定是小部件的大小
实际分配。

后者是小部件希望拥有的大小(给定字体信息),前者是在布局小部件时由其容器实际给出的大小。

You may be looking for the get_allocation method:

The get_allocation() method returns a
gtk.gdk.Rectangle containing the
bounds of the widget's allocation.

or size_request:

The size_request() method returns the
preferred size of a widget as a tuple
containing its required width and
height. This method is typically used
when implementing a gtk.Container
subclass to arrange the container's
child widgets and decide what size
allocations to give them with the
size_allocate() method. Obtaining a
size request requires that the widget
be associated with a screen, because
font information may be needed.

Also remember that the size request is
not necessarily the size a widget will
actually be allocated.

The latter is what the widget would like to have as its size (given font information), the former what it's actually given by its container when it lays out the widgets.

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