我正在用python编写音乐播放器,使用urwid使用cli。我打算将当前播放列表放在一个simpleListWalker中,由列表框包装,然后是列,一堆,最后是一个帧。
如何用其他内容替换此列表框(或simpleListWalker)的全部内容?
相关代码:
class mainDisplay(object):
...
def renderList(self):
songList = db.getListOfSongs()
songDictList = [item for item in songList if item['location'] in
commandSh.currentPlaylists[commandSh.plyr.currentList]]
self.currentSongWidgets = self.createList(songDictList)
self.mainListContent = urwid.SimpleListWalker([urwid.AttrMap(w, None,
'reveal focus') for w in self.currentSongWidgets])
def initFace(self):#this is the init function that creates the interface
#on startup
...
self.scanPlaylists()
self.renderList()
self.mainList = urwid.ListBox(self.mainListContent)
self.columns = urwid.Columns([self.mainList, self.secondaryList])
self.pile = urwid.Pile([self.columns,
("fixed", 1, self.statusDisplayOne),
("fixed", 1, self.statusDisplayTwo),
("fixed", 1, self.cmdShInterface)], 3)
self.topFrame = urwid.Frame(self.pile)
完整代码:http://github.com/ripdog/PyPlayer/tree/cli - 检查main.py是否有接口代码。
现在代码处于非常糟糕的状态,我只编程了两个月。我们非常感谢您对代码风格,布局或任何其他提示的任何建议。
答案 0 :(得分:5)
self.mainListContent[:] = [new, list, of, widgets]
应该替换整个小部件列表。
如果您想要更快的回复,下次将您的问题发布到邮件列表或IRC频道!