我有一個QtreeView作爲QComboBox中的視圖。在我的應用程序中,根項目是類別標籤,不能被選中。當我創建視圖,我想預先選擇其中一個子項目(第一個根項目是默認選中),但我無法弄清楚如何。這方面的例子(特別是蟒蛇)在地面上很薄。如何在QComboBox中的QTreeView中選擇項目
這裏是我的簡單的例子:
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
data = [ (("Cat A",False), [(("Thing 1",True), []),(("Thing 2",True), [])]),
(("Cat B",False), [(("Thing 3",True), []), (("Thing 4",True), [])])]
class MyComboBox(QComboBox):
def __init__(self):
super(QComboBox,self).__init__()
self.setView(QTreeView())
self.view().setHeaderHidden(True)
self.view().setItemsExpandable(False)
self.view().setRootIsDecorated(False)
def showPopup(self):
self.view().expandAll()
QComboBox.showPopup(self)
class Window(QWidget):
def __init__(self):
QWidget.__init__(self)
self.model = QStandardItemModel()
self.addItems(self.model, data)
self.combo = MyComboBox()
self.combo.setModel(self.model)
layout = QVBoxLayout()
layout.addWidget(self.combo)
self.setLayout(layout)
# I can choose which combobox item to select here, but I am unable to
#choose child items
#self.combo.setCurrentIndex(1)
def addItems(self, parent, elements):
for text, children in elements:
item = QStandardItem(text[0])
# root items are not selectable, users pick from child items
item.setSelectable(text[1])
parent.appendRow(item)
if children:
self.addItems(item, children)
if __name__ == "__main__":
app = QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec_())
的問題已經非常有人問before,而不是蟒蛇,和解決方案發布沒有按不爲我工作。
多數民衆贊成在很好,適合我更好。感謝(兩者)花時間! (感謝超級筆記) – tom 2012-03-13 09:22:33