Files
create/src/Tools/RegExp/regexpdialog.ui
2022-10-08 11:07:42 +02:00

213 lines
5.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RegExpDialog</class>
<widget class="QDialog" name="RegExpDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>693</width>
<height>563</height>
</rect>
</property>
<property name="windowTitle">
<string>RegExp Explorer</string>
</property>
<property name="sizeGripEnabled">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<widget class="QTextEdit" name="textEdit1"/>
</item>
<item row="2" column="0">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Validator</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="lineEdit"/>
</item>
</layout>
</item>
<item row="4" column="0">
<widget class="QLabel" name="textLabel2">
<property name="text">
<string>Regular Expression:</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Pattern options</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QCheckBox" name="caseInsensitiveOption">
<property name="text">
<string>Case insensitive</string>
</property>
</widget>
</item>
<item row="0" column="3">
<widget class="QCheckBox" name="multilineOption">
<property name="text">
<string>Multiline</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QCheckBox" name="invertedGreedinessOption">
<property name="text">
<string>Inverted greediness</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QCheckBox" name="dotMatchesEverythingOption">
<property name="text">
<string>Dot matches everything</string>
</property>
</widget>
</item>
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="extendedPatternSyntaxOption">
<property name="text">
<string>Extended pattern syntax</string>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QCheckBox" name="dontCaptureOption">
<property name="text">
<string>Don't capture</string>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QCheckBox" name="useUnicodePropertiesOption">
<property name="text">
<string>Unicode properties</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="6" column="0">
<layout class="QHBoxLayout">
<property name="spacing">
<number>6</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="textLabel3">
<property name="text">
<string>Status:</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="textLabel4">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>80</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="buttonClose">
<property name="windowTitle">
<string/>
</property>
<property name="text">
<string>&amp;Close</string>
</property>
<property name="autoDefault">
<bool>true</bool>
</property>
<property name="default">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
<item row="5" column="0">
<widget class="QLineEdit" name="lineEditRegExp"/>
</item>
<item row="0" column="0">
<widget class="QLabel" name="textLabel1">
<property name="text">
<string>Text:</string>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>
<tabstops>
<tabstop>textEdit1</tabstop>
<tabstop>lineEdit</tabstop>
<tabstop>caseInsensitiveOption</tabstop>
<tabstop>invertedGreedinessOption</tabstop>
<tabstop>dotMatchesEverythingOption</tabstop>
<tabstop>multilineOption</tabstop>
<tabstop>extendedPatternSyntaxOption</tabstop>
<tabstop>dontCaptureOption</tabstop>
<tabstop>useUnicodePropertiesOption</tabstop>
<tabstop>lineEditRegExp</tabstop>
<tabstop>buttonClose</tabstop>
</tabstops>
<resources/>
<connections>
<connection>
<sender>buttonClose</sender>
<signal>clicked()</signal>
<receiver>RegExpDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>400</x>
<y>263</y>
</hint>
<hint type="destinationlabel">
<x>312</x>
<y>283</y>
</hint>
</hints>
</connection>
</connections>
</ui>