diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-08-09 17:12:14 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-08-09 17:12:14 +0200 |
commit | 0afe9ca6bf53da111e445d2aea7cfc94e7e3c601 (patch) | |
tree | dba69d8eb86e81a1a56a388eafa85817762cf87f /TagEditor.ui | |
parent | 872bb95acf6fabd639da57cd41a4844d7e6dd0f0 (diff) | |
download | numberator-0afe9ca6bf53da111e445d2aea7cfc94e7e3c601.tar.gz numberator-0afe9ca6bf53da111e445d2aea7cfc94e7e3c601.tar.bz2 numberator-0afe9ca6bf53da111e445d2aea7cfc94e7e3c601.zip |
db backend: mostly feature-complete
Diffstat (limited to 'TagEditor.ui')
-rw-r--r-- | TagEditor.ui | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/TagEditor.ui b/TagEditor.ui new file mode 100644 index 0000000..a8a942b --- /dev/null +++ b/TagEditor.ui @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>Dialog</class>
+ <widget class="QDialog" name="Dialog">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>300</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Dialog</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <item>
+ <widget class="QPlainTextEdit" name="textEdit"/>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox">
+ <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>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>Dialog</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>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>Dialog</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>
|