Sat, 07 Sep 2019 17:35:43 +0200
Closed branch after it was merged into 'default'.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>CompareDialog</class> <widget class="QWidget" name="CompareDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>950</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>File Comparison</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QGroupBox" name="filesGroup"> <property name="title"> <string>Files to be compared:</string> </property> <property name="flat"> <bool>true</bool> </property> <layout class="QHBoxLayout" name="horizontalLayout_2"> <item> <widget class="QLabel" name="textLabel1"> <property name="text"> <string>File &1:</string> </property> <property name="buddy"> <cstring>file1Picker</cstring> </property> </widget> </item> <item> <widget class="E5PathPicker" name="file1Picker" native="true"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="focusPolicy"> <enum>Qt::StrongFocus</enum> </property> <property name="toolTip"> <string>Enter the name of the first file</string> </property> </widget> </item> <item> <widget class="QLabel" name="textLabel2"> <property name="text"> <string>File &2:</string> </property> <property name="buddy"> <cstring>file2Picker</cstring> </property> </widget> </item> <item> <widget class="E5PathPicker" name="file2Picker" native="true"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="focusPolicy"> <enum>Qt::StrongFocus</enum> </property> <property name="toolTip"> <string>Enter the name of the second file</string> </property> </widget> </item> </layout> </widget> </item> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="file1Label"> <property name="text"> <string/> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item row="0" column="2"> <widget class="QLabel" name="file2Label"> <property name="text"> <string/> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item row="1" column="0"> <widget class="QTextEdit" name="contents_1"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="lineWrapMode"> <enum>QTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="tabStopWidth"> <number>8</number> </property> <property name="acceptRichText"> <bool>false</bool> </property> </widget> </item> <item row="1" column="1"> <layout class="QVBoxLayout"> <property name="spacing"> <number>0</number> </property> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>101</height> </size> </property> </spacer> </item> <item> <widget class="QToolButton" name="firstButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the first difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="upButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the previous difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="downButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the next difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="lastButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the last difference</string> </property> </widget> </item> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>101</height> </size> </property> </spacer> </item> </layout> </item> <item row="1" column="2"> <widget class="QTextEdit" name="contents_2"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="lineWrapMode"> <enum>QTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="tabStopWidth"> <number>8</number> </property> <property name="acceptRichText"> <bool>false</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QCheckBox" name="synchronizeCheckBox"> <property name="toolTip"> <string>Select, if the horizontal scrollbars should be synchronized</string> </property> <property name="text"> <string>&Synchronize horizontal scrollbars</string> </property> <property name="shortcut"> <string>Alt+S</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="totalLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="changedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="addedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="deletedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </item> </layout> </widget> <customwidgets> <customwidget> <class>E5PathPicker</class> <extends>QWidget</extends> <header>E5Gui/E5PathPicker.h</header> <container>1</container> </customwidget> </customwidgets> <tabstops> <tabstop>file1Picker</tabstop> <tabstop>file2Picker</tabstop> <tabstop>firstButton</tabstop> <tabstop>upButton</tabstop> <tabstop>downButton</tabstop> <tabstop>lastButton</tabstop> <tabstop>synchronizeCheckBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>CompareDialog</receiver> <slot>close()</slot> <hints> <hint type="sourcelabel"> <x>102</x> <y>580</y> </hint> <hint type="destinationlabel"> <x>104</x> <y>599</y> </hint> </hints> </connection> </connections> </ui>