- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想编写自己的代理模型,通过映射索引将树状模型(即某些项目可能有子项目)“扁平化”为列表模型(即没有项目有子项目)。子类化 QtGui.QIdentityProxyModel
似乎是最好的方法:http://qt-project.org/doc/qt-4.8/qidentityproxymodel.html但我在使用 Qt 4.8(包括 QIdentityProxyModel
)构建的 PySide 1.2.1 中找不到它:http://seanfisk.github.io/pyside-docs/pyside/PySide/QtGui/index.html .
所以这似乎给我留下了两个选择:
子类 QAbstractProxyModel
或 QSortFilterProxyModel
想办法自己构建 PySide 以包含 QIdentityProxyModel
如有任何建议,我们将不胜感激。
最佳答案
我会选择 2),因为如果您有足够的时间完成它,这对后代也很有用。
首先,您需要构建并安装 shiboken,因为它是构建 pyside 的依赖项。您可以按如下方式完成:
* git clone git@gitorious.org:pyside/shiboken.git
* cd shiboken
* mkdir build
* cd build
* cmake -DCMAKE_INSTALL_PREFIX="/usr/local" ..
* n(make)
* n(make) install
一旦完成,您就可以开始在 pyside 上工作,如下所示:
* git clone git@gitorious.org:pyside/pyside.git
* edit the PySide/QtGui/typesystem_gui_common.xml file:
这是我的 git diff
输出:
diff --git a/PySide/QtGui/CMakeLists.txt b/PySide/QtGui/CMakeLists.txt
index 7625634..172f321 100644
--- a/PySide/QtGui/CMakeLists.txt
+++ b/PySide/QtGui/CMakeLists.txt
@@ -275,6 +275,7 @@ ${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qshowevent_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qsizepolicy_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qslider_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qsortfilterproxymodel_wrapper.cpp
+${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qidentityproxymodel_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qsound_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qspaceritem_wrapper.cpp
${CMAKE_CURRENT_BINARY_DIR}/PySide/QtGui/qspinbox_wrapper.cpp
diff --git a/PySide/QtGui/typesystem_gui_common.xml b/PySide/QtGui/typesystem_gui_common.xml
index 711d7cc..4980fa4 100644
--- a/PySide/QtGui/typesystem_gui_common.xml
+++ b/PySide/QtGui/typesystem_gui_common.xml
@@ -4571,6 +4571,16 @@
<modify-function signature="clear()" remove="all"/>
<modify-function signature="filterChanged()" remove="all"/>
<!--### End of obsolete section -->
+</object-type>
+ <object-type name="QIdentityProxyModel">
+ <extra-includes>
+ <include file-name="QItemSelection" location="global"/>
+ </extra-includes>
+ <modify-function signature="setSourceModel(QAbstractItemModel*)">
+ <modify-argument index="1">
+ <reference-count action="set"/>
+ </modify-argument>
+ </modify-function>
</object-type>
<object-type name="QSlider">
<enum-type name="TickPosition" />
在此之后,您需要按如下方式配置、构建和安装项目:
* mkdir build
* cd build
* cmake -DCMAKE_INSTALL_PREFIX="/usr/local" -DCMAKE_PREFIX_PATH="/usr/local" ..
* (n)make
* (n)make install
我为 Unix 提供这些命令,但也很容易适应其他操作系统,如 Windows。
我并不是说我的补丁是完美的,但这是您可以开始实验的地方。应该不会太难。
此外,不要忘记还有第三种选择,使用 PyQt 似乎支持此类:
关于python - PySide 中缺少 QtGui.QIdentityProxyModel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20822214/
我已经像这样实现了 QIdentityProxyModel: class ProxyModel : public QIdentityProxyModel { Q_OBJECT public:
我想编写自己的代理模型,通过映射索引将树状模型(即某些项目可能有子项目)“扁平化”为列表模型(即没有项目有子项目)。子类化 QtGui.QIdentityProxyModel 似乎是最好的方法:htt
我是一名优秀的程序员,十分优秀!