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 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ComputerManagementView</class>
<widget class="QWidget" name="ComputerManagementView">
<property name="windowTitle">
<string>Computer management</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTreeView" name="treeView">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="sizeAdjustPolicy">
<enum>QAbstractScrollArea::AdjustToContents</enum>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="animated">
<bool>true</bool>
</property>
<attribute name="headerCascadingSectionResizes">
<bool>true</bool>
</attribute>
<attribute name="headerMinimumSectionSize">
<number>180</number>
</attribute>
<attribute name="headerShowSortIndicator" stdset="0">
<bool>false</bool>
</attribute>
</widget>
</item>
<item>
<widget class="QLineEdit" name="filterLineEdit">
<property name="placeholderText">
<string>Computer search</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="addRoomButton">
<property name="text">
<string>Add room</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="saveListButton">
<property name="text">
<string>Save computer/user list</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>addRoomButton</sender>
<signal>clicked()</signal>
<receiver>ComputerManagementView</receiver>
<slot>addRoom()</slot>
<hints>
<hint type="sourcelabel">
<x>262</x>
<y>663</y>
</hint>
<hint type="destinationlabel">
<x>262</x>
<y>375</y>
</hint>
</hints>
</connection>
<connection>
<sender>saveListButton</sender>
<signal>clicked()</signal>
<receiver>ComputerManagementView</receiver>
<slot>saveList()</slot>
<hints>
<hint type="sourcelabel">
<x>142</x>
<y>219</y>
</hint>
<hint type="destinationlabel">
<x>142</x>
<y>127</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>addRoom()</slot>
<slot>saveList()</slot>
</slots>
</ui>
|