<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ApplicationDialog</class> <widget class="QDialog" name="ApplicationDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>569</width> <height>300</height> </rect> </property> <property name="windowTitle"> <string>Add an application</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Here you can add applications that can open error files. Specify a name for the application and the application to execute. The following texts are replaced with appropriate values when application is executed: (file) - Filename containing the error (line) - Line number containing the error (message) - Error message (severity) - Error severity Example opening a file with Kate and make Kate scroll to the correct line: kate -l(line) (file)</string> </property> </widget> </item> <item> <layout class="QFormLayout" name="formLayout"> <item row="0" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Application's name</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Application to execute</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="mName"/> </item> <item row="1" column="1"> <widget class="QLineEdit" name="mPath"/> </item> <item row="2" column="1"> <widget class="QPushButton" name="mButtonBrowse"> <property name="text"> <string>Browse</string> </property> </widget> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="mButtons"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>mButtons</sender> <signal>accepted()</signal> <receiver>ApplicationDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>mButtons</sender> <signal>rejected()</signal> <receiver>ApplicationDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>