initial import

This commit is contained in:
Mo Elzubeir
2022-12-13 09:18:00 -06:00
commit d2d561810c
322 changed files with 1147261 additions and 0 deletions
+177
View File
@@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PageTextDialog</class>
<widget class="QDialog" name="PageTextDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>587</width>
<height>495</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTextBrowser" name="textBrowser"/>
</item>
<item row="1" column="0">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string> Find: </string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="findLineEdit"/>
</item>
<item>
<widget class="QPushButton" name="findBushButton">
<property name="text">
<string>Find</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton">
<property name="text">
<string>Find All</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>85</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</item>
<item row="1" column="0">
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>PageTextDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>257</x>
<y>485</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>PageTextDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>325</x>
<y>485</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>findBushButton</sender>
<signal>clicked()</signal>
<receiver>PageTextDialog</receiver>
<slot>find()</slot>
<hints>
<hint type="sourcelabel">
<x>285</x>
<y>438</y>
</hint>
<hint type="destinationlabel">
<x>399</x>
<y>437</y>
</hint>
</hints>
</connection>
<connection>
<sender>pushButton</sender>
<signal>clicked()</signal>
<receiver>PageTextDialog</receiver>
<slot>findAll()</slot>
<hints>
<hint type="sourcelabel">
<x>362</x>
<y>449</y>
</hint>
<hint type="destinationlabel">
<x>479</x>
<y>439</y>
</hint>
</hints>
</connection>
<connection>
<sender>findLineEdit</sender>
<signal>returnPressed()</signal>
<receiver>PageTextDialog</receiver>
<slot>find()</slot>
<hints>
<hint type="sourcelabel">
<x>177</x>
<y>448</y>
</hint>
<hint type="destinationlabel">
<x>537</x>
<y>438</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>find()</slot>
<slot>findAll()</slot>
</slots>
</ui>