def _build_stream_vbox(self):
title = Gtk.Label("Streaming server")
title.set_margin_top(6)
self.stream_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.stream_add_button)
self._make_scrolled_window(vbox)
return vbox
评论列表
文章目录