1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>AttachProcDialog</class> 4 <widget class="QDialog" name="AttachProcDialog"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>800</width> 10 <height>600</height> 11 </rect> 12 </property> 13 <property name="windowTitle"> 14 <string>Select process to attach...</string> 15 </property> 16 <layout class="QVBoxLayout" name="verticalLayout_2"> 17 <property name="spacing"> 18 <number>2</number> 19 </property> 20 <property name="leftMargin"> 21 <number>2</number> 22 </property> 23 <property name="topMargin"> 24 <number>5</number> 25 </property> 26 <property name="rightMargin"> 27 <number>2</number> 28 </property> 29 <property name="bottomMargin"> 30 <number>2</number> 31 </property> 32 <item> 33 <layout class="QVBoxLayout" name="verticalLayout"> 34 <property name="topMargin"> 35 <number>0</number> 36 </property> 37 <item> 38 <widget class="QGroupBox" name="groupBox_2"> 39 <property name="maximumSize"> 40 <size> 41 <width>16777215</width> 42 <height>150</height> 43 </size> 44 </property> 45 <property name="title"> 46 <string>Processes with same name as currently open file:</string> 47 </property> 48 <widget class="QTreeView" name="procBeingAnalyzedView"> 49 <property name="geometry"> 50 <rect> 51 <x>0</x> 52 <y>30</y> 53 <width>794</width> 54 <height>111</height> 55 </rect> 56 </property> 57 <property name="sizePolicy"> 58 <sizepolicy hsizetype="Expanding" vsizetype="MinimumExpanding"> 59 <horstretch>0</horstretch> 60 <verstretch>0</verstretch> 61 </sizepolicy> 62 </property> 63 <property name="maximumSize"> 64 <size> 65 <width>16777215</width> 66 <height>16777215</height> 67 </size> 68 </property> 69 <property name="styleSheet"> 70 <string notr="true">QTreeView::item 71{ 72 padding-top: 1px; 73 padding-bottom: 1px; 74}</string> 75 </property> 76 <property name="frameShape"> 77 <enum>QFrame::NoFrame</enum> 78 </property> 79 <property name="lineWidth"> 80 <number>0</number> 81 </property> 82 <property name="indentation"> 83 <number>8</number> 84 </property> 85 <property name="sortingEnabled"> 86 <bool>true</bool> 87 </property> 88 </widget> 89 </widget> 90 </item> 91 <item> 92 <widget class="QGroupBox" name="groupBox"> 93 <property name="title"> 94 <string>All processes:</string> 95 </property> 96 <widget class="QTreeView" name="allProcView"> 97 <property name="geometry"> 98 <rect> 99 <x>0</x> 100 <y>50</y> 101 <width>794</width> 102 <height>331</height> 103 </rect> 104 </property> 105 <property name="maximumSize"> 106 <size> 107 <width>16777215</width> 108 <height>16777215</height> 109 </size> 110 </property> 111 <property name="styleSheet"> 112 <string notr="true">QTreeView::item 113{ 114 padding-top: 1px; 115 padding-bottom: 1px; 116}</string> 117 </property> 118 <property name="frameShape"> 119 <enum>QFrame::NoFrame</enum> 120 </property> 121 <property name="lineWidth"> 122 <number>0</number> 123 </property> 124 <property name="indentation"> 125 <number>8</number> 126 </property> 127 <property name="sortingEnabled"> 128 <bool>true</bool> 129 </property> 130 </widget> 131 </widget> 132 </item> 133 </layout> 134 </item> 135 <item> 136 <widget class="QLineEdit" name="filterLineEdit"> 137 <property name="placeholderText"> 138 <string>Quick Filter</string> 139 </property> 140 </widget> 141 </item> 142 <item> 143 <widget class="QDialogButtonBox" name="buttonBox"> 144 <property name="orientation"> 145 <enum>Qt::Horizontal</enum> 146 </property> 147 <property name="standardButtons"> 148 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> 149 </property> 150 </widget> 151 </item> 152 </layout> 153 </widget> 154 <resources/> 155 <connections> 156 <connection> 157 <sender>buttonBox</sender> 158 <signal>accepted()</signal> 159 <receiver>AttachProcDialog</receiver> 160 <slot>accept()</slot> 161 <hints> 162 <hint type="sourcelabel"> 163 <x>248</x> 164 <y>254</y> 165 </hint> 166 <hint type="destinationlabel"> 167 <x>157</x> 168 <y>274</y> 169 </hint> 170 </hints> 171 </connection> 172 <connection> 173 <sender>buttonBox</sender> 174 <signal>rejected()</signal> 175 <receiver>AttachProcDialog</receiver> 176 <slot>reject()</slot> 177 <hints> 178 <hint type="sourcelabel"> 179 <x>316</x> 180 <y>260</y> 181 </hint> 182 <hint type="destinationlabel"> 183 <x>286</x> 184 <y>274</y> 185 </hint> 186 </hints> 187 </connection> 188 </connections> 189</ui> 190