1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <author>R. Reucher</author>
4 <class>ToolExecutor</class>
5 <widget class="QDialog" name="ToolExecutor">
6  <property name="geometry">
7   <rect>
8    <x>0</x>
9    <y>0</y>
10    <width>400</width>
11    <height>300</height>
12   </rect>
13  </property>
14  <property name="windowTitle">
15   <string>Executing tool</string>
16  </property>
17  <layout class="QGridLayout" name="gridLayout">
18   <item row="0" column="0" colspan="2">
19    <layout class="QHBoxLayout">
20     <item>
21      <widget class="QLabel" name="labelStatus">
22       <property name="sizePolicy">
23        <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
24         <horstretch>0</horstretch>
25         <verstretch>0</verstretch>
26        </sizepolicy>
27       </property>
28       <property name="text">
29        <string>Command</string>
30       </property>
31      </widget>
32     </item>
33     <item>
34      <widget class="QLineEdit" name="lineEditCommand">
35       <property name="sizePolicy">
36        <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
37         <horstretch>0</horstretch>
38         <verstretch>0</verstretch>
39        </sizepolicy>
40       </property>
41       <property name="toolTip">
42        <string>Executed command</string>
43       </property>
44       <property name="readOnly">
45        <bool>true</bool>
46       </property>
47      </widget>
48     </item>
49    </layout>
50   </item>
51   <item row="1" column="0" colspan="2">
52    <widget class="QTextBrowser" name="textBrowserToolOutput">
53     <property name="toolTip">
54      <string>Output from tool</string>
55     </property>
56     <property name="lineWrapMode">
57      <enum>QTextEdit::NoWrap</enum>
58     </property>
59     <property name="acceptRichText">
60      <bool>false</bool>
61     </property>
62     <property name="textInteractionFlags">
63      <set>Qt::NoTextInteraction</set>
64     </property>
65    </widget>
66   </item>
67   <item row="3" column="0" colspan="2">
68    <layout class="QHBoxLayout" name="horizontalLayout">
69     <item>
70      <spacer>
71       <property name="orientation">
72        <enum>Qt::Horizontal</enum>
73       </property>
74       <property name="sizeHint" stdset="0">
75        <size>
76         <width>40</width>
77         <height>20</height>
78        </size>
79       </property>
80      </spacer>
81     </item>
82     <item>
83      <widget class="QPushButton" name="pushButtonOk">
84       <property name="enabled">
85        <bool>false</bool>
86       </property>
87       <property name="focusPolicy">
88        <enum>Qt::ClickFocus</enum>
89       </property>
90       <property name="toolTip">
91        <string>Close tool execution dialog</string>
92       </property>
93       <property name="text">
94        <string>Ok</string>
95       </property>
96      </widget>
97     </item>
98     <item>
99      <spacer>
100       <property name="orientation">
101        <enum>Qt::Horizontal</enum>
102       </property>
103       <property name="sizeHint" stdset="0">
104        <size>
105         <width>40</width>
106         <height>20</height>
107        </size>
108       </property>
109      </spacer>
110     </item>
111    </layout>
112   </item>
113  </layout>
114 </widget>
115 <layoutdefault spacing="6" margin="6"/>
116 <tabstops>
117  <tabstop>lineEditCommand</tabstop>
118  <tabstop>textBrowserToolOutput</tabstop>
119  <tabstop>pushButtonOk</tabstop>
120 </tabstops>
121 <resources>
122  <include location="qmc2.qrc"/>
123 </resources>
124 <connections>
125  <connection>
126   <sender>pushButtonOk</sender>
127   <signal>clicked()</signal>
128   <receiver>ToolExecutor</receiver>
129   <slot>accept()</slot>
130   <hints>
131    <hint type="sourcelabel">
132     <x>176</x>
133     <y>307</y>
134    </hint>
135    <hint type="destinationlabel">
136     <x>153</x>
137     <y>3</y>
138    </hint>
139   </hints>
140  </connection>
141 </connections>
142</ui>
143