def _init_components(self): # init gui _desc = self.build_spec['program_description'] self.head_panel = header.FrameHeader(heading=i18n._("settings_title"), subheading=_desc or '', parent=self) self.runtime_display = RuntimeDisplay(self, self.build_spec) self.foot_panel = footer.Footer(self) self.panels = [self.head_panel, self.config_panel, self.foot_panel]
def _init_components(self): self.runtime_display = RuntimeDisplay(self) self.head_panel = header.FrameHeader(parent=self) self.foot_panel = footer.Footer(self) self.panels = [self.head_panel, self.config_panel, self.foot_panel]