def _build_store_vbox(self):
title = Gtk.Label("Storing")
title.set_margin_top(6)
self.store_add_button = self._build_add_button(
callback=self.on_add_clicked)
separator = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
separator.set_margin_top(6)
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
vbox.set_margin_right(6)
_pack_widgets(vbox,
title,
self.settings_revealer,
separator,
self.store_add_button)
self._make_scrolled_window(vbox)
return vbox
评论列表
文章目录