minor configure dialog fixes
authorOliver Maurhart <oliver.maurhart@ait.ac.at>
Tue, 01 Apr 2014 16:16:54 +0200
changeset 108dec3f05b57c5
parent 107 50cacad1967e
child 109 eed302e7be4d
child 112 9cd4654c040b
minor configure dialog fixes
OpenSecurity/bin/ui/ConfigureDialog.ui
OpenSecurity/bin/ui/ui_ConfigureDialog.py
     1.1 --- a/OpenSecurity/bin/ui/ConfigureDialog.ui	Tue Apr 01 16:11:36 2014 +0200
     1.2 +++ b/OpenSecurity/bin/ui/ConfigureDialog.ui	Tue Apr 01 16:16:54 2014 +0200
     1.3 @@ -94,6 +94,15 @@
     1.4         <height>64</height>
     1.5        </size>
     1.6       </property>
     1.7 +     <property name="rootIsDecorated">
     1.8 +      <bool>false</bool>
     1.9 +     </property>
    1.10 +     <property name="itemsExpandable">
    1.11 +      <bool>false</bool>
    1.12 +     </property>
    1.13 +     <property name="allColumnsShowFocus">
    1.14 +      <bool>true</bool>
    1.15 +     </property>
    1.16       <column>
    1.17        <property name="text">
    1.18         <string>Name</string>
    1.19 @@ -109,6 +118,11 @@
    1.20         <string>Size</string>
    1.21        </property>
    1.22       </column>
    1.23 +     <column>
    1.24 +      <property name="text">
    1.25 +       <string>Path</string>
    1.26 +      </property>
    1.27 +     </column>
    1.28      </widget>
    1.29     </item>
    1.30     <item>
    1.31 @@ -169,6 +183,15 @@
    1.32         <height>128</height>
    1.33        </size>
    1.34       </property>
    1.35 +     <property name="rootIsDecorated">
    1.36 +      <bool>false</bool>
    1.37 +     </property>
    1.38 +     <property name="itemsExpandable">
    1.39 +      <bool>false</bool>
    1.40 +     </property>
    1.41 +     <property name="allColumnsShowFocus">
    1.42 +      <bool>true</bool>
    1.43 +     </property>
    1.44       <column>
    1.45        <property name="text">
    1.46         <string>Name</string>
    1.47 @@ -197,6 +220,9 @@
    1.48       <property name="readOnly">
    1.49        <bool>true</bool>
    1.50       </property>
    1.51 +     <property name="plainText">
    1.52 +      <string/>
    1.53 +     </property>
    1.54      </widget>
    1.55     </item>
    1.56     <item>
     2.1 --- a/OpenSecurity/bin/ui/ui_ConfigureDialog.py	Tue Apr 01 16:11:36 2014 +0200
     2.2 +++ b/OpenSecurity/bin/ui/ui_ConfigureDialog.py	Tue Apr 01 16:16:54 2014 +0200
     2.3 @@ -2,7 +2,7 @@
     2.4  
     2.5  # Form implementation generated from reading ui file 'ConfigureDialog.ui'
     2.6  #
     2.7 -# Created: Tue Apr  1 13:36:45 2014
     2.8 +# Created: Tue Apr  1 16:16:34 2014
     2.9  #      by: PyQt4 UI code generator 4.10.3
    2.10  #
    2.11  # WARNING! All changes made in this file will be lost!
    2.12 @@ -68,6 +68,9 @@
    2.13          self.lyMain.addWidget(self.lblTemplate)
    2.14          self.tvTemplate = QtGui.QTreeWidget(ConfigureDialog)
    2.15          self.tvTemplate.setMaximumSize(QtCore.QSize(16777215, 64))
    2.16 +        self.tvTemplate.setRootIsDecorated(False)
    2.17 +        self.tvTemplate.setItemsExpandable(False)
    2.18 +        self.tvTemplate.setAllColumnsShowFocus(True)
    2.19          self.tvTemplate.setObjectName(_fromUtf8("tvTemplate"))
    2.20          self.lyMain.addWidget(self.tvTemplate)
    2.21          self.lyDownload = QtGui.QHBoxLayout()
    2.22 @@ -88,6 +91,9 @@
    2.23          self.lyMain.addWidget(self.lblMachines)
    2.24          self.tvMachines = QtGui.QTreeWidget(ConfigureDialog)
    2.25          self.tvMachines.setMaximumSize(QtCore.QSize(16777215, 128))
    2.26 +        self.tvMachines.setRootIsDecorated(False)
    2.27 +        self.tvMachines.setItemsExpandable(False)
    2.28 +        self.tvMachines.setAllColumnsShowFocus(True)
    2.29          self.tvMachines.setObjectName(_fromUtf8("tvMachines"))
    2.30          self.lyMain.addWidget(self.tvMachines)
    2.31          self.lblProgress = QtGui.QLabel(ConfigureDialog)
    2.32 @@ -100,6 +106,7 @@
    2.33          self.edtProgress.setFont(font)
    2.34          self.edtProgress.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn)
    2.35          self.edtProgress.setReadOnly(True)
    2.36 +        self.edtProgress.setPlainText(_fromUtf8(""))
    2.37          self.edtProgress.setObjectName(_fromUtf8("edtProgress"))
    2.38          self.lyMain.addWidget(self.edtProgress)
    2.39          self.lyButton = QtGui.QHBoxLayout()
    2.40 @@ -142,6 +149,7 @@
    2.41          self.tvTemplate.headerItem().setText(0, _translate("ConfigureDialog", "Name", None))
    2.42          self.tvTemplate.headerItem().setText(1, _translate("ConfigureDialog", "Date", None))
    2.43          self.tvTemplate.headerItem().setText(2, _translate("ConfigureDialog", "Size", None))
    2.44 +        self.tvTemplate.headerItem().setText(3, _translate("ConfigureDialog", "Path", None))
    2.45          self.btnDownload.setText(_translate("ConfigureDialog", "&Download", None))
    2.46          self.btnImport.setText(_translate("ConfigureDialog", "&Import", None))
    2.47          self.lblMachines.setText(_translate("ConfigureDialog", "Machines:", None))