我有一个表单界面,其中包含大量水平下拉列表和GTKscrolledWindow中的文本框。表单必须水平对齐,因为窗口中有无限数量的表单(想想表单的表格)。
当操作员选中到屏幕右侧的下一个表格控件时,是否(可能/我如何)将GTKScrolledWindow自动滚动到右侧。
相关问题是如何检测聚焦元素(按钮等)是否在其父滚动窗口中可见。
感谢。
答案 0 :(得分:3)
我希望你不介意我在描述中使用GTK + C API,sollution可以很容易地转换为PyGTK,原则保持不变。
从第二个问题开始 - 如果您知道要测试哪个小部件,则可以通过调用gtk_widget_translate_coordinates(child, parent, 0, 0, &x, &y)
来获取子级相对于父级的位置来检测其可见性。通过gtk_widget_get_allocation()
,您可以获得父级和子级的大小,并且只需测试整个子矩形是否在滚动窗口中。
gboolean is_visible_in (GtkWidget *child, GtkWidget *scrolled)
{
gint x, y;
GtkAllocation child_alloc, scroll_alloc;
gtk_widget_translate_coordinates (child, scrolled, 0, 0, &x, &y);
gtk_widget_get_allocation(child, &child_alloc);
gtk_widget_get_allocation(scrolled, &scroll_alloc);
return (x >= 0 && y >= 0)
&& x + child_alloc.width <= scroll_alloc.width
&& y + child_alloc.height <= scroll_alloc.height;
}
您可以通过gtk_window_get_focus ()
在窗口中获取固定焦点小部件,也可以在焦点更改时检测到它。
在自动滚动问题中,您可以处理连接到可以聚焦的窗口小部件的"focus"
信号或连接到包含窗口小部件的容器的"set-focus-child"
事件。在信号处理程序中,您应该检查焦点窗口小部件是否可见。如果没有,请确定其位置并正确滚动。
为此,您必须在整个滚动区域内检测窗口小部件的位置。如果您使用的某个容器不支持滚动(例如GtkHBox
)iside GtkScrolledWindow
(由视口调整),您可以通过gtk_widget_translate_coordinates()
获取相对于容器的焦点窗口小部件的坐标再次 - 现在使用容器而不是滚动窗口。调整值,如果使用GtkViewport
,则调整值对应于滚动区域中的像素位置,因此将调整值设置为x相对坐标将进行滚动。所以处理程序的重要部分可能是
GtkWidget *scrolled = /* The scrolled window */
GtkWidget *container = /* The container in the scrolled window */
GtkWidget *focused = /* The focused widget */
GtkAdjustment *hadj = gtk_scrolled_window_get_hadjustment(
GTK_SCROLLED_WINDOW(scrolled));
gint x, y;
gtk_widget_translate_coordinates (focused, container, 0, 0, &x, &y);
gtk_adjustment_set_value(hadj, min(x, maximal adjustment value allowed);
允许的最大调整值是adjust.upper - adjustment.page_size。聚焦小部件作为两个信号的信号处理程序参数传递,在"set-focus-child"
信号的情况下,您也将容器作为参数。
答案 1 :(得分:1)
首先,第一个。 你如何发现焦点?您连接到 GtkWidget :: focus 信号。 在该回调中,您可以将窗口滚动到您喜欢的位置,如何执行此操作,您需要获取 GtkScrolledWindow 的 GtkAdjustment 并按顺序移动它以显示您想要的内容
答案 2 :(得分:1)
根据Michy的回答,这就是我的所作所为。
要使滚动窗口自动滚动,请在构造函数中运行:FocusScroll(scrolledwindow)。
class FocusScroll(object):
"""
Get a gtk.ScrolledWindow which contains a gtk.Viewport.
Attach event handlers which will scroll it to show the focused widget.
"""
def __init__(self, scrolledwindow):
self.scrolledwindow = scrolledwindow
self.viewport = scrolledwindow.get_child()
assert isinstance(self.viewport, gtk.Viewport)
self.main_widget = self.viewport.get_child()
self.vadj = scrolledwindow.get_vadjustment()
self.window = self.get_window(scrolledwindow)
self.viewport.connect('set-focus-child', self.on_viewport_set_focus_child)
def get_window(self, widget):
if isinstance(widget, gtk.Window):
return widget
else:
return self.get_window(widget.get_parent())
def is_child(self, widget, container):
"""
Go recursively over all children of container, to check if widget is
a child of it.
"""
for child in container.get_children():
if child is widget:
return True
elif isinstance(child, gtk.Container):
if self.is_child(widget, child):
return True
else:
return False
def on_viewport_set_focus_child(self, _viewport, _child):
idle_add(self.scroll_slide_viewport)
def scroll_slide_viewport(self):
"""Scroll the viewport if needed to see the current focused widget"""
widget = self.window.get_focus()
if not self.is_child(widget, self.main_widget):
return
_wleft, wtop = widget.translate_coordinates(self.main_widget, 0, 0)
wbottom = wtop + widget.get_allocation().height
top = self.vadj.value
bottom = top + self.vadj.page_size
if wtop < top:
self.vadj.value = wtop
elif wbottom > bottom:
self.vadj.value = wbottom - self.vadj.page_size