Gtk3和Python - Box不会调整大小来填充窗口

时间:2014-07-25 11:32:57

标签: python gtk pygobject

我正在使用Gtk3和Python编写应用程序。我有一个选择内容的侧边栏和一个webkit webview来显示主要内容。当隐藏揭示者时,webview不会填满整个窗口空间,我不知道为什么。任何帮助将不胜感激。

from gi.repository import Gtk, Gio
from gi.repository import WebKit

HEIGHT = 500
WIDTH = 800

class MainWindow(Gtk.Window):

    def __init__(self):

        Gtk.Window.__init__(self, title="Resolution")
        self.set_border_width(0)
        self.set_default_size(WIDTH, HEIGHT)

        hb = Gtk.HeaderBar()
        hb.props.show_close_button = True
        hb.props.title = "Resolution"
        self.set_titlebar(hb)

        button = Gtk.Button()   
        icon = Gio.ThemedIcon(name="emblem-system-symbolic")
        image = Gtk.Image.new_from_gicon(icon, 1)
        button.add(image)
        button.connect("clicked", self.sidebarShowHide)
        button.set_focus_on_click(False)
        hb.pack_start(button)  

        sidebarbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0)
        toplevelbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=0)

        self.add(toplevelbox)

        self.sidebar = Gtk.Revealer()
        self.sidebar.set_transition_duration(0)
        self.sidebar.set_reveal_child(False)
        toplevelbox.pack_start(self.sidebar, False, False, 0)
        self.sidebar.add(sidebarbox)

        self.searchentry = Gtk.SearchEntry()
        self.searchentry.connect("search-changed", self.search_changed)
        sidebarbox.pack_start(self.searchentry, False, False, 0)

        label = Gtk.Label("Contents Selector")
        sidebarbox.pack_start(label, True, True, 0)

        scroller = Gtk.ScrolledWindow()
        content = WebKit.WebView()
        scroller.add(content)
        toplevelbox.pack_start(scroller, True, True, 0)

        content.open("/home/oliver/resolution/placeholder.html")

    def sidebarShowHide(self, button):
        if self.sidebar.get_reveal_child():
            self.sidebar.set_reveal_child(False)
        else:
            self.sidebar.set_reveal_child(True)

    def search_changed(self, searchentry):
        pass




win = MainWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()

2 个答案:

答案 0 :(得分:1)

好吧,几个月前我做了一些GtkRevealer,它确实有效。看到这段代码没有让我疯狂。

我再次打开我的项目并查看该部分所在的位置,结果是Gtk.Revealer所在的顶层容器,必须有Gtk.Orientation.VERTICAL ..如果你改变你的" toplevelbox&# 34;方向,它会工作,但它不会侧边栏。它将来自顶部或底部。如果你用GtkGrid改变GtkBox,它也是一样的。如果我猜测它取决于孩子的默认方向。

解决方法是使用小部件隐藏/显示机制(相信我,我搜索你的代码,它的工作原理)。

from gi.repository import Gtk, Gio
from gi.repository import WebKit

HEIGHT = 500
WIDTH = 800

class MainWindow(Gtk.Window):

 def __init__(self):

    Gtk.Window.__init__(self, title="Resolution")
    self.set_border_width(0)
    self.set_default_size(WIDTH, HEIGHT)

    hb = Gtk.HeaderBar()
    hb.props.show_close_button = True
    hb.props.title = "Resolution"
    self.set_titlebar(hb)

    button = Gtk.Button()   
    icon = Gio.ThemedIcon(name="emblem-system-symbolic")
    image = Gtk.Image.new_from_gicon(icon, 1)
    button.add(image)
    button.connect("clicked", self.sidebarShowHide)
    button.set_focus_on_click(False)
    hb.pack_start(button)  

    sidebarbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0)
    toplevelbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=0)

    self.add(toplevelbox)

    self.sidebar = Gtk.Box()     
    toplevelbox.pack_start(self.sidebar, False, False, 0)
    self.sidebar.add(sidebarbox)

    self.searchentry = Gtk.SearchEntry()
    self.searchentry.connect("search-changed", self.search_changed)
    sidebarbox.pack_start(self.searchentry, False, False, 0)

    label = Gtk.Label("Contents Selector")
    sidebarbox.pack_start(label, True, True, 0)

    scroller = Gtk.ScrolledWindow()
    content = WebKit.WebView()
    scroller.add(content)
    toplevelbox.pack_start(scroller, True, True, 0)

    content.open("/home/oliver/resolution/placeholder.html")

def sidebarShowHide(self, button):
    if self.sidebar.get_visible():
        self.sidebar.hide ()
    else:
        self.sidebar.show ()

def search_changed(self, searchentry):
    pass




win = MainWindow()
win.connect("delete-event", Gtk.main_quit)  
win.show_all()
Gtk.main()

答案 1 :(得分:0)

这闻起来像个臭虫。

作为解决方法,您可以使用

def sidebarShowHide(self, button):
    self.sidebarbox.set_visible(not self.sidebarbox.get_visible())

但这不会产生任何过渡动画,但确实会删除其分配的空间,暂时不可见。


实际上git repo中提供的C演示按预期调整大小,因此实际上这可能需要对子小部件首选方向做一些事情。