很久以前Digia announced即將推出的Qt版本中的「下一代」項目視圖,名爲ItemViewsNG。 從版本5.2開始,它看起來像所有的模型/視圖控件仍然基於舊的QAbstractItemModel設計。具體而言,我在尋找類似QGraphicsListView的類,但我可以在網上找到的是舊的源代碼庫(如this one on Gitorious,自2010年以來沒有任何提交)。 Digia
我在我的應用程序中有一個QListView,並希望顯示一個帶有圖標的文件列表,如QT文檔中所示。 而QListView是在Icon mode 我有下面的代碼: - std::vector<std::string>::iterator it = result.begin() ; // got the results, now tie them to the StandardItemModel.