3

pyuic4 似乎基于来自 Qt Designer 的 .ui 文件生成了错误的布局。用户界面文件在这里:

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Dialog</class>
 <widget class="QDialog" name="Dialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>348</width>
    <height>267</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Dialog</string>
  </property>
  <layout class="QVBoxLayout" name="verticalLayout_2">
   <item>
    <layout class="QVBoxLayout" name="verticalLayout">
     <item alignment="Qt::AlignTop">
      <widget class="QLabel" name="label">
       <property name="sizePolicy">
        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="maximumSize">
        <size>
         <width>16777215</width>
         <height>25</height>
        </size>
       </property>
       <property name="text">
        <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt;&quot;&gt;Some Text&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
       </property>
      </widget>
     </item>
     <item alignment="Qt::AlignTop">
      <widget class="Line" name="line_2">
       <property name="sizePolicy">
        <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="orientation">
        <enum>Qt::Horizontal</enum>
       </property>
      </widget>
     </item>
     <item alignment="Qt::AlignBottom">
      <widget class="Line" name="line">
       <property name="orientation">
        <enum>Qt::Horizontal</enum>
       </property>
      </widget>
     </item>
     <item>
      <layout class="QHBoxLayout" name="horizontalLayout">
       <item alignment="Qt::AlignBottom">
        <widget class="QPushButton" name="btn_customize">
         <property name="text">
          <string>Customize</string>
         </property>
        </widget>
       </item>
       <item alignment="Qt::AlignBottom">
        <widget class="QPushButton" name="btn_done">
         <property name="text">
          <string>OK</string>
         </property>
        </widget>
       </item>
      </layout>
     </item>
    </layout>
   </item>
  </layout>
 </widget>
 <resources/>
 <connections/>
</ui>

在这个布局中,我试图将一对按钮与对话框窗口的底部对齐,并将一些文本与顶部对齐。运行pyuic4 test.ui --preview显示所有对象水平对齐到中心,而不是顶部和底部(并且从实际的 python 程序显示此对话框显示相同的结果)。相比之下,pyuic5 test.ui --preview似乎更符合我想要得到的东西。

如果有帮助,我的 pyuic4 版本是 4.11.4,我使用的是 Ubuntu 16.04。

有任何想法吗?难道我做错了什么?或者那里可能有更新的 pyuic4 ?

4

1 回答 1

3

pyuic 中存在影响布局对齐处理的错误。这已在 2015 年 7 月 17 日发布的 PyQt-5.5 中修复。但是,PyQt-4.11.4(即当前版本)于 2015 年 6 月 11 日发布 - 因此尚未包含修复。不过,PyQt-4.12 的当前开发快照确实包含该修复程序。

但我认为这不会真正解决您遇到的问题。您需要做的是使用扩展垫片。以下是使用示例 ui 文件执行此操作的方法:

  1. 单击水平按钮布局,然后单击中断布局(这将删除所有当前布局)。
  2. Ctrl+单击这两个按钮,然后单击水平布局。
  3. 单击对话框,然后单击垂直布局。
  4. 在两个 Line 小部件之间拖放一个 Vertical Spacer

给你这个:

截屏

如果您想在中心区域添加一些其他小部件,您可能需要在它们上方和/或下方添加扩展的垂直垫片以获得相同的结果。再说一次,如果您在其中放置诸如文本框或列表小部件之类的东西,它应该会自动扩展以填充可用空间-在这种情况下,不需要任何垫片(或布局对齐)。

于 2016-10-23T18:18:52.827 回答