在文件的.ui调用自定义类失败(Calling custom class in .ui file f

2019-07-03 11:02发布

当我尝试从参考我的自定义类我得到这个错误.ui文件。 这有什么错我做什么?

"QFormBuilder was unable to create a custom widget of the class 'TimelinePane'; defaulting to base class 'QWidget'." 

QWidget弹出用我指定布局.ui文件。 问题就是自定义类。

添加自定义类的描述,我修改.ui手动文件(加入整个<customwidgets>部分),这就是为什么我要打开一个新的问题,因为我还没有找到相同的Q尚未。 我怀疑在类路径.ui文件,但没有我想的选项(见我注释掉的部分)的工作。 我还猜想,使用python不应该在这里的事情,但我不能完全肯定。 没有尝试过C++呢。

from PySide import QtGui  
from PySide import QtCore
from PySide import QtUiTools

class MyWidget(QtGui.QMainWindow):
    def __init__(self, *args):  
       apply(QtGui.QMainWindow.__init__, (self,) + args)

       loader = QtUiTools.QUiLoader()
       file = QtCore.QFile('./src/prove_qt_ui_file/prove_main_widget.ui') 
       file.open(QtCore.QFile.ReadOnly)
       self.myWidget = loader.load(file, self)
       file.close()
       self.setCentralWidget(self.myWidget)

if __name__ == '__main__':  
   import sys  
   import os
   print("Running in " + os.getcwd() + " .\n")
   app = QtGui.QApplication(sys.argv)  
   win  = MyWidget()  
   win.show()
   app.exec_()

prove_main_widget.ui

<?xml version="1.0" encoding="UTF-8" ?>
<ui version="4.0">
 <class>MyWidget</class>
 <widget class="QWidget" name="MyWidget">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>687</width>
    <height>698</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Runtime Monitor</string>
  </property>
  <layout class="QVBoxLayout">
   <property name="spacing">
    <number>0</number>
   </property>
   <property name="margin">
    <number>0</number>
   </property>
   <item>
    <widget class="QSplitter" name="splitter">
     <property name="orientation">
      <enum>Qt::Vertical</enum>
     </property>
     <property name="handleWidth">
      <number>9</number>
     </property>
     <widget class="QTreeWidget" name="warn_tree">
      <attribute name="headerVisible">
       <bool>false</bool>
      </attribute>
      <column>
       <property name="text">
        <string notr="true">1</string>
       </property>
      </column>
     </widget>
     <widget class="QTreeWidget" name="tree_all_devices">
      <attribute name="headerVisible">
       <bool>false</bool>
      </attribute>
      <column>
       <property name="text">
        <string notr="true">1</string>
       </property>
      </column>
     </widget>
     <widget class="TimelinePane" name="timeline_pane" native="true">
      <property name="minimumSize">
       <size>
        <width>0</width>
        <height>80</height>
       </size>
      </property>
      <property name="whatsThis">
       <string extracomment="Timeline"/>
      </property>
     </widget>
    </widget>
   </item>
  </layout>
 </widget>
 <customwidgets>
  <customwidget>
   <class>TimelinePane</class>
   <extends>QWidget</extends>
<!--   <header>timeline_pane</header> --> <!-- NG -->
<!--   <header>prove_qt_ui_file.timeline_pane</header> --> <!-- NG -->
   <header>src.prove_qt_ui_file.timeline_pane</header>  <!-- NG -->
  </customwidget>
 </customwidgets>
 <resources/>
 <connections/>
</ui>

timeline_pane.py

from PySide.QtGui import QWidget, QGraphicsScene, QGraphicsView, QColor, QHBoxLayout, QPushButton
class TimelinePane(QWidget):
    def __init__(self, parent):
        super(TimelinePane, self).__init__()
        print '\tTimelinePane init 1' # This doesn't print.

(环境)的Ubuntu 12.04,蟒2.7.3

Answer 1:

从理论上讲,有您的自定义窗口小部件的工作,你应该只需要拨打:

loader.registerCustomWidget(TimelinePane)

调用Loader.load方法前()。 您需要添加相关的import语句,你的情况:

from timeline_pane import TimelinePane

不过,我只是用PySide 1.1.2在Ubuntu 12.04 x86_64的进行了测试,就引起了段错误。 因人而异,所以请测试。

我结束了实施这种解决方法: http://www.mail-archive.com/pyside@qt-project.org/msg00306.html

总之,覆盖QUiLoader的creteWidget()方法,如果小部件的CLASS_NAME不self.availableWidgets(),根据您已经添加了customWidgets实例变量自己的实例化。

顺便说一句,你还可以使用的鼠标右键单击“提升到”功能,在Qt设计的,而不是直接编辑UI文件。



文章来源: Calling custom class in .ui file fails