<bdo id='ktSvE'></bdo><ul id='ktSvE'></ul>

    <small id='ktSvE'></small><noframes id='ktSvE'>

    <tfoot id='ktSvE'></tfoot>
    1. <i id='ktSvE'><tr id='ktSvE'><dt id='ktSvE'><q id='ktSvE'><span id='ktSvE'><b id='ktSvE'><form id='ktSvE'><ins id='ktSvE'></ins><ul id='ktSvE'></ul><sub id='ktSvE'></sub></form><legend id='ktSvE'></legend><bdo id='ktSvE'><pre id='ktSvE'><center id='ktSvE'></center></pre></bdo></b><th id='ktSvE'></th></span></q></dt></tr></i><div id='ktSvE'><tfoot id='ktSvE'></tfoot><dl id='ktSvE'><fieldset id='ktSvE'></fieldset></dl></div>
      <legend id='ktSvE'><style id='ktSvE'><dir id='ktSvE'><q id='ktSvE'></q></dir></style></legend>

        我在哪里为 Qt 设计器的单个提升 QWidget 编写类

        时间:2023-08-06
      1. <legend id='WLS5K'><style id='WLS5K'><dir id='WLS5K'><q id='WLS5K'></q></dir></style></legend>

          1. <tfoot id='WLS5K'></tfoot>

              <bdo id='WLS5K'></bdo><ul id='WLS5K'></ul>

                  <tbody id='WLS5K'></tbody>

                <small id='WLS5K'></small><noframes id='WLS5K'>

                  <i id='WLS5K'><tr id='WLS5K'><dt id='WLS5K'><q id='WLS5K'><span id='WLS5K'><b id='WLS5K'><form id='WLS5K'><ins id='WLS5K'></ins><ul id='WLS5K'></ul><sub id='WLS5K'></sub></form><legend id='WLS5K'></legend><bdo id='WLS5K'><pre id='WLS5K'><center id='WLS5K'></center></pre></bdo></b><th id='WLS5K'></th></span></q></dt></tr></i><div id='WLS5K'><tfoot id='WLS5K'></tfoot><dl id='WLS5K'><fieldset id='WLS5K'></fieldset></dl></div>
                  本文介绍了我在哪里为 Qt 设计器的单个提升 QWidget 编写类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我阅读、测试和理解了很多 Qt 设计器的 QWidgets 使用示例,这些示例被提升为 PyQt5.尽管如此,我无法为自己处理一个简单的例子.

                  I read, test and understand a lot of examples for usage of QWidgets from Qt designer, which are promoted to PyQt5. Nevertheless I am not able to deal with a simple example for my own.

                  下面我展示了我的代码,它不起作用并尝试解释.

                  Beneath I show my code, which is not working and try to explain.

                  在 Qt 设计器中,我创建了一个简单的 QMainWindow,命名为标准化的 MainWindow

                  in Qt desginer i create a simple QMainWindow, named standardized as MainWindow

                  在我创建单个标签 QLabel.我将其提升为neuLabel"类并将其命名为 labelqt.带有 Add 、标题 neulabel.h 和提升的窗口 --> 一切都很好.

                  Within I create a single label QLabel. This I promote to class "neuLabel" and name it labelqt. The window with, Add , the header neulabel.h and promote --> everything is fine.

                  我明白,我必须为类 neuLabel 编写代码.但是:在哪里做呢?

                  I understand, that I have to write code for the class neuLabel. But: WHERE to do it?

                  通过非常简单的示例,我尝试了这样的:

                  With very simple example I tried it like this:

                  from PyQt5 import QtWidgets, uic
                  import sys
                  uifile_1 = 'testpromote.ui'
                  form_1, base_1 = uic.loadUiType(uifile_1)
                  class neuLabel(QLabel, QPixmap):
                      def __init__(self,title,pixmap,parent):
                      super().__init__(title,parent)
                      self.setAcceptDrops(True)
                  def mousePressEvent(self, e):
                      QLabel.mousePressEvent(self, e)
                      if e.button() == QtCore.Qt.LeftButton:
                          print('press')
                  class myApp(base_1, form_1):
                      def __init__(self):
                          super(base_1,self).__init__()
                          self.setupUi(self)
                  if __name__ == '__main__':
                      app = QApplication(sys.argv)
                      ex = myApp()   #Dialog()
                      ex.show()
                  sys.exit(app.exec_())
                  

                  错误是这样的

                  Traceback (most recent call last):
                    File "/home/jf/PycharmProjects/myMuhaInp/testpromote.py", line 5, in <module>
                      form_1, base_1 = uic.loadUiType(uifile_1)
                    File "/usr/lib/python3/dist-packages/PyQt5/uic/__init__.py", line 201, in loadUiType
                      exec(code_string.getvalue(), ui_globals)
                    File "<string>", line 37, in <module>
                  ModuleNotFoundError: No module named 'neulabel'
                  

                  我真的不明白,在哪里对类neulabel进行编码(我确实尝试了很多示例.(在没有示例中,我发现,是单个QWidget的推广)

                  I really don't understand, WHERE to code the class neulabel (and I really tried a lot of examples. (In no example, I found, is the promotion of a single QWidget)

                  推荐答案

                  在你所有的代码出现错误之前:为什么需要一个继承自 QLabel 和 QPixmap 的类?我不明白这一点,QLabel 使用 QPixmap(composition),QLabel is 不是 QPixmap(inherency).

                  Before all your code has an error: Why do you need a class that inherits from QLabel and QPixmap? I don't see the point, a QLabel uses a QPixmap(composition), a QLabel is not a QPixmap(inherency).

                  对于要提升的小部件,它必须具有以下规则(我在文档中没有找到它们):

                  For a widget to be promoted it must have the following rules (I did not find them in the docs):

                  • 小部件的构造函数必须有一个参数,并且必须是父级.

                  • The constructor of the widget must have a single parameter and must be the parent.

                  该类不能在使用它的同一文件中,因为它可以创建循环导入.

                  The class must not be in the same file where it is used since it can create a circular import.

                  小部件促销表单要求提供 2 个数据:

                  The widget promotion form asks for 2 data:

                  1. 提升的类名,必须是类名.
                  2. 头文件 必须是类所在文件的位置(在 C++ 中,根据自定义规则,文件名与类名相同,但使用小写字母,但在 python 中不符合).

                  1. Promoted class name which must be the name of the class.
                  2. Header file which must be the location of the file where the class is (in C++ by custom rule the name of the file is the same name of the class but with lowercase letters, but in python it does not comply).

                  例如,如果FooClass"被放置为Promoted class name并且a/b/c"或abc"被放置在头文件中,它将被翻译到 from abc import Foo 确认这是正确的.

                  For example if "FooClass" is placed as Promoted class name and "a/b/c" or "a.b.c" is placed in Header file it will be translated to from a.b.c import Foo so verify that this is correct.

                  示例:

                  考虑到上述情况,最简单的实现是创建一个.py,其中要提升的类是:

                  Considering the above, the simplest implementation is to create a .py where the class to be promoted is:

                  neulabel.py

                  from PyQt5 import QtCore, QtWidgets
                  
                  
                  class NeuLabel(QtWidgets.QLabel):
                      def __init__(self, parent=None):
                          super().__init__(parent)
                          self.setAcceptDrops(True)
                  
                      def mousePressEvent(self, e):
                          super().mousePressEvent(e)
                          if e.button() == QtCore.Qt.LeftButton:
                              print("press")
                  

                  然后在.ui中你必须在表格中填写以下内容,按添加"按钮,然后按推广"按钮

                  Then in the .ui you must fill in the following in the form, press the "Add" button and then the "Promote" button

                  生成以下 .ui:

                  <?xml version="1.0" encoding="UTF-8"?>
                  <ui version="4.0">
                   <class>MainWindow</class>
                   <widget class="QMainWindow" name="MainWindow">
                    <property name="geometry">
                     <rect>
                      <x>0</x>
                      <y>0</y>
                      <width>800</width>
                      <height>600</height>
                     </rect>
                    </property>
                    <property name="windowTitle">
                     <string>MainWindow</string>
                    </property>
                    <widget class="QWidget" name="centralwidget">
                     <widget class="NeuLabel" name="label">
                      <property name="geometry">
                       <rect>
                        <x>120</x>
                        <y>160</y>
                        <width>251</width>
                        <height>191</height>
                       </rect>
                      </property>
                      <property name="text">
                       <string>TextLabel</string>
                      </property>
                     </widget>
                    </widget>
                    <widget class="QMenuBar" name="menubar">
                     <property name="geometry">
                      <rect>
                       <x>0</x>
                       <y>0</y>
                       <width>800</width>
                       <height>26</height>
                      </rect>
                     </property>
                    </widget>
                    <widget class="QStatusBar" name="statusbar"/>
                   </widget>
                   <customwidgets>
                    <customwidget>
                     <class>NeuLabel</class>
                     <extends>QLabel</extends>
                     <header>neulabel</header>
                    </customwidget>
                   </customwidgets>
                   <resources/>
                   <connections/>
                  </ui>
                  

                  然后在主文件中使用:

                  import os
                  import sys
                  
                  from PyQt5 import QtWidgets, uic
                  
                  CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))
                  
                  uifile_1 = os.path.join(CURRENT_DIR, "testpromote.ui")
                  form_1, base_1 = uic.loadUiType(uifile_1)
                  
                  
                  class myApp(base_1, form_1):
                      def __init__(self):
                          super(base_1, self).__init__()
                          self.setupUi(self)
                  
                  
                  if __name__ == "__main__":
                      app = QtWidgets.QApplication(sys.argv)
                      ex = myApp()
                      ex.show()
                      sys.exit(app.exec_())
                  

                  ├── main.py
                  ├── neulabel.py
                  └── testpromote.ui
                  

                  这篇关于我在哪里为 Qt 设计器的单个提升 QWidget 编写类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:取消选中所有其他复选框的复选框 下一篇:窗口未在外部 url 链接上打开新窗口或选项卡单击

                  相关文章

                  最新文章

                  <small id='RHyV4'></small><noframes id='RHyV4'>

                  1. <i id='RHyV4'><tr id='RHyV4'><dt id='RHyV4'><q id='RHyV4'><span id='RHyV4'><b id='RHyV4'><form id='RHyV4'><ins id='RHyV4'></ins><ul id='RHyV4'></ul><sub id='RHyV4'></sub></form><legend id='RHyV4'></legend><bdo id='RHyV4'><pre id='RHyV4'><center id='RHyV4'></center></pre></bdo></b><th id='RHyV4'></th></span></q></dt></tr></i><div id='RHyV4'><tfoot id='RHyV4'></tfoot><dl id='RHyV4'><fieldset id='RHyV4'></fieldset></dl></div>
                  2. <legend id='RHyV4'><style id='RHyV4'><dir id='RHyV4'><q id='RHyV4'></q></dir></style></legend>
                      <bdo id='RHyV4'></bdo><ul id='RHyV4'></ul>
                    1. <tfoot id='RHyV4'></tfoot>