无法获取小部件的高度/宽度 - gtkmm
我正在使用 gtkmm 编写一个应用程序。
我编写了一个简单的小部件类,我只想在某些情况下在应用程序的主窗口中显示它。否则,我希望标签“已禁用”可见。
为了实现这一点,我将小部件和标签打包到一个 VBox 中,并通过 show() 和 hide() 来交换它们。
但是,自定义小部件比标签大得多,因此我需要稍微调整标签的大小。
我知道我可以使用 label.set_size_request(x,y),并且当我手动输入尺寸时它可以工作。但我知道,小部件的大小可能会有所不同,具体取决于使用的 Gtk 主题等。
我喜欢设置标签 大小完全相同< /em> *与小部件一样。但是,使用 widget.get_height()* 不起作用 - 它总是返回 1。
也许一个线索是我从内部执行此操作主窗口的构造函数。
I'm writing an application using gtkmm.
I wrote a simple widget class, that I want to display in the application's main window only in some cases. Otherwise, I would like a Label "disabled" to be visible.
To achieve that I packed both the widget and the label into one VBox, and I show() and hide() them in order to swap them.
However, the custom widget is far larger than the label, so I need to resize the label a bit.
I know I can use label.set_size_request(x,y), and it works, when I type the dimensions manually. But I am aware, that the widget may differ in size a bit, depending on the Gtk theme one uses, etc.
I'd love to set label exactly the same size *as the widget has. However, using widget.get_height()* does not work - it always returns 1.
Maybe a clue will be that I do this from within the main window's constructor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 gtkmm 方面没有做太多事情,更多的是在 pygtk 方面。但我认为要从
get_width
/get_height
获取有意义的值,必须实现一个小部件,这是 X-window 的可视化。我猜你的小部件在窗口构造函数中还不可见。我建议您改用 gtk.Notebook,并隐藏其选项卡。然后 gtk.Notebook 将控制标签和自定义小部件的大小。
I haven't done much in gtkmm, more in pygtk. But I think to get meaningful values from
get_width
/get_height
, a widget must be realized, which is an X-window speak for visible. And I guess your widgets are not yet visible in window constructor.I'd propose you to use a gtk.Notebook instead, with its tabs hidden. Then gtk.Notebook will control size of both your label and your custom widget.