1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<ui version="4.0" >
<class>FilenameView</class>
<widget class="QWidget" name="FilenameView" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>338</width>
<height>197</height>
</rect>
</property>
<property name="windowTitle" >
<string>Form1</string>
</property>
<layout class="QVBoxLayout" >
<property name="spacing" >
<number>1</number>
</property>
<property name="margin" >
<number>3</number>
</property>
<item>
<layout class="QHBoxLayout" >
<property name="spacing" >
<number>2</number>
</property>
<property name="margin" >
<number>0</number>
</property>
<item>
<widget class="QLabel" name="textLabel1" >
<property name="text" >
<string>Filter</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="_pFilterInput" >
<property name="toolTip" >
<string>Filter files to be shown</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="_pShowButton" >
<property name="toolTip" >
<string>Show the filelist for the selected package</string>
</property>
<property name="whatsThis" >
<string>Shows a list of the files which are included in the package. If the list is already shown it will be updated.<br>
For installed packages the list is shown by default because it is quite fast. For not installed package it is only shown if this button is clicked as it takes a considerable amount of time.</string>
</property>
<property name="text" >
<string>Show</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" >
<property name="spacing" >
<number>2</number>
</property>
<property name="margin" >
<number>0</number>
</property>
<item>
<widget class="QListWidget" name="_pFilenameView" >
<property name="contextMenuPolicy" >
<enum>Qt::CustomContextMenu</enum>
</property>
</widget>
</item>
<item>
<widget class="QTextBrowser" name="_pErrorDisplay" />
</item>
</layout>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="0" />
<resources/>
<connections/>
</ui>
|