def __init__(self, app, parent=None): super().__init__(parent) self._app = app self.header = LP_GroupHeader(self._app, '歌单') self._layout = QVBoxLayout(self) self.setObjectName('lp_playlists_panel') self.set_theme_style() self.setup_ui()
def __init__(self, app, parent=None): super().__init__(parent) self._app = app self.header = LP_GroupHeader(self._app, '我的音乐') self.current_playlist_item = LP_GroupItem(self._app, '当前播放列表') self.current_playlist_item.set_img_text('❂') self._layout = QVBoxLayout(self) self.setObjectName('lp_library_panel') self.set_theme_style() self.setup_ui()