diff options
| author | 2014-12-06 17:33:25 -0500 | |
|---|---|---|
| committer | 2014-12-06 17:33:25 -0500 | |
| commit | 7167ce41b61d2ba2cdb526777a4233eb84a3b66a (patch) | |
| tree | a35c14143716e1f2c98f808c81f89426045a946f /SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui | |
Imported Upstream version 2.99.6upstream/2.99.6
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui')
| -rw-r--r-- | SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui b/SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui new file mode 100644 index 0000000..d328e99 --- /dev/null +++ b/SQLiteStudio3/guiSQLiteStudio/dialogs/dbconverterdialog.ui @@ -0,0 +1,144 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>DbConverterDialog</class> + <widget class="QDialog" name="DbConverterDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>251</height> + </rect> + </property> + <property name="windowTitle"> + <string>Dialog</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QGroupBox" name="srcGroup"> + <property name="title"> + <string>Source database</string> + </property> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0" colspan="2"> + <widget class="QComboBox" name="srcDbCombo"/> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="srcDbVersionLabel"> + <property name="text"> + <string>Source database version:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QComboBox" name="srcDbVersionCombo"> + <property name="enabled"> + <bool>false</bool> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="trgGroup"> + <property name="title"> + <string>Target database</string> + </property> + <layout class="QGridLayout" name="gridLayout_2"> + <item row="0" column="0"> + <widget class="QLabel" name="trgVersionLabel"> + <property name="text"> + <string>Target version:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QLineEdit" name="trgFileEdit"> + <property name="toolTip"> + <string>This is the file that will be created as a result of the conversion.</string> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="trgFileLabel"> + <property name="text"> + <string>Target file:</string> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="trgNameLabel"> + <property name="text"> + <string>Name of the new database:</string> + </property> + </widget> + </item> + <item row="1" column="2"> + <widget class="QToolButton" name="trgFileButton"> + <property name="text"> + <string/> + </property> + </widget> + </item> + <item row="0" column="1" colspan="2"> + <widget class="QComboBox" name="trgVersionCombo"/> + </item> + <item row="2" column="1" colspan="2"> + <widget class="QLineEdit" name="trgNameEdit"> + <property name="toolTip"> + <string>This is the name that the converted database will be added to SQLiteStudio with.</string> + </property> + </widget> + </item> + </layout> + </widget> + </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>DbConverterDialog</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>DbConverterDialog</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> |
