forked from openlp/openlp
Update UI a bit to display columns
bzr-revno: 249
This commit is contained in:
parent
9e4fa53b0e
commit
76723fbc92
@ -105,7 +105,8 @@ class SongsPlugin(Plugin):
|
||||
self.SearchLayout.addWidget(self.SearchTextButton, 3, 2, 1, 1)
|
||||
# Add the song widget to the page layout
|
||||
self.MediaManagerItem.PageLayout.addWidget(self.SongWidget)
|
||||
self.SongListView = QtGui.QListWidget()
|
||||
self.SongListView = QtGui.QTableWidget()
|
||||
self.SongListView.setColumnCount(2)
|
||||
self.SongListView.setGeometry(QtCore.QRect(10, 100, 256, 591))
|
||||
self.SongListView.setObjectName("listView")
|
||||
self.MediaManagerItem.PageLayout.addWidget(self.SongListView)
|
||||
@ -219,6 +220,9 @@ class SongsPlugin(Plugin):
|
||||
|
||||
def _display_results(self):
|
||||
self.SongListView.clear() # clear the results
|
||||
print self.searchresults
|
||||
self.SongListView.setRowCount(0)
|
||||
for id, txt in self.searchresults:
|
||||
self.SongListView.addItem(str(txt))
|
||||
c = self.SongListView.rowCount()
|
||||
self.SongListView.setRowCount(c+1)
|
||||
twi = QtGui.QTableWidgetItem(str(txt))
|
||||
self.SongListView.setItem(c , 0, twi)
|
||||
|
Loading…
Reference in New Issue
Block a user