mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Add a new menu option which allows attaching other databases. Doing so by running the SQL code by yourself using the Execute SQL tab won't work because the SQL tab creates a restorepoint and attaching databases while being in a transaction is not allowed. Note that this commit misses quite a few features: In case of name conflicts the UI may break, there is no way to tell which databases have been attached and the attached databases are not stored in the project files. See issue #100.
2368 lines
74 KiB
XML
2368 lines
74 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>MainWindow</class>
|
|
<widget class="QMainWindow" name="MainWindow">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>1000</width>
|
|
<height>630</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>SQLiteBrowser</string>
|
|
</property>
|
|
<property name="windowIcon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/appicon</normaloff>:/icons/appicon</iconset>
|
|
</property>
|
|
<widget class="QWidget" name="centralwidget">
|
|
<layout class="QVBoxLayout" name="verticalLayout_7">
|
|
<item>
|
|
<widget class="QTabWidget" name="mainTab">
|
|
<property name="currentIndex">
|
|
<number>0</number>
|
|
</property>
|
|
<widget class="QWidget" name="structure">
|
|
<attribute name="title">
|
|
<string>Database &Structure</string>
|
|
</attribute>
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<item>
|
|
<widget class="QToolBar" name="dbToolbar">
|
|
<property name="windowTitle">
|
|
<string>toolBar1</string>
|
|
</property>
|
|
<property name="toolButtonStyle">
|
|
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
|
</property>
|
|
<addaction name="editCreateTableAction"/>
|
|
<addaction name="editModifyTableAction"/>
|
|
<addaction name="editDeleteObjectAction"/>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QTreeView" name="dbTreeWidget">
|
|
<property name="contextMenuPolicy">
|
|
<enum>Qt::CustomContextMenu</enum>
|
|
</property>
|
|
<property name="dragEnabled">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="dragDropMode">
|
|
<enum>QAbstractItemView::DragDrop</enum>
|
|
</property>
|
|
<property name="alternatingRowColors">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="verticalScrollMode">
|
|
<enum>QAbstractItemView::ScrollPerPixel</enum>
|
|
</property>
|
|
<property name="animated">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QWidget" name="browser">
|
|
<attribute name="title">
|
|
<string>&Browse Data</string>
|
|
</attribute>
|
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
<item>
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
<item>
|
|
<widget class="QLabel" name="label">
|
|
<property name="text">
|
|
<string>Table:</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboBrowseTable</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QComboBox" name="comboBrowseTable">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
|
|
<horstretch>1</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="minimumSize">
|
|
<size>
|
|
<width>150</width>
|
|
<height>0</height>
|
|
</size>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Select a table to browse data</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Use this list to select a table to be displayed in the database view</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QToolButton" name="buttonRefresh">
|
|
<property name="toolTip">
|
|
<string>Refresh the data in the selected table.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This button refreshes the data in the currently selected table.</string>
|
|
</property>
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/refresh</normaloff>:/icons/refresh</iconset>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>F5</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<spacer name="horizontalSpacer">
|
|
<property name="orientation">
|
|
<enum>Qt::Horizontal</enum>
|
|
</property>
|
|
<property name="sizeHint" stdset="0">
|
|
<size>
|
|
<width>200</width>
|
|
<height>20</height>
|
|
</size>
|
|
</property>
|
|
</spacer>
|
|
</item>
|
|
<item>
|
|
<widget class="QPushButton" name="buttonNewRecord">
|
|
<property name="toolTip">
|
|
<string>Insert a new record in the current table</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This button creates a new, empty record in the database</string>
|
|
</property>
|
|
<property name="text">
|
|
<string>New Record</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QPushButton" name="buttonDeleteRecord">
|
|
<property name="toolTip">
|
|
<string>Delete the current record</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This button deletes the record currently selected in the database</string>
|
|
</property>
|
|
<property name="text">
|
|
<string>Delete Record</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</item>
|
|
<item>
|
|
<widget class="ExtendedTableWidget" name="dataTable">
|
|
<property name="whatsThis">
|
|
<string>This is the database view. You can double-click any record to edit its contents in the cell editor window.</string>
|
|
</property>
|
|
<property name="editTriggers">
|
|
<set>QAbstractItemView::NoEditTriggers</set>
|
|
</property>
|
|
<attribute name="horizontalHeaderShowSortIndicator" stdset="0">
|
|
<bool>true</bool>
|
|
</attribute>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
<item>
|
|
<widget class="QToolButton" name="buttonPrevious">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Scroll 100 records upwards</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string><html><head/><body><p>Clicking this button navigates 100 records upwards in the table view above.</p></body></html></string>
|
|
</property>
|
|
<property name="text">
|
|
<string><</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="labelRecordset">
|
|
<property name="text">
|
|
<string>0 - 0 of 0</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QToolButton" name="buttonNext">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string><html><head/><body><p>Scroll 100 records downwards</p></body></html></string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string><html><head/><body><p>Clicking this button navigates 100 records downwards in the table view above.</p></body></html></string>
|
|
</property>
|
|
<property name="text">
|
|
<string>></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>
|
|
<widget class="QPushButton" name="buttonGoto">
|
|
<property name="toolTip">
|
|
<string><html><head/><body><p>Click here to jump to the specified record</p></body></html></string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string><html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html></string>
|
|
</property>
|
|
<property name="text">
|
|
<string>Go to:</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLineEdit" name="editGoto">
|
|
<property name="toolTip">
|
|
<string>Enter record number to browse</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Type a record number in this area and click the Go to: button to display the record in the database view</string>
|
|
</property>
|
|
<property name="text">
|
|
<string>1</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QWidget" name="pragmas">
|
|
<attribute name="title">
|
|
<string>Edit &Pragmas</string>
|
|
</attribute>
|
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
<item>
|
|
<widget class="QScrollArea" name="scrollareaPragmas">
|
|
<property name="widgetResizable">
|
|
<bool>true</bool>
|
|
</property>
|
|
<widget class="QWidget" name="scrollAreaWidgetContents">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>575</width>
|
|
<height>458</height>
|
|
</rect>
|
|
</property>
|
|
<layout class="QFormLayout" name="formLayout">
|
|
<property name="fieldGrowthPolicy">
|
|
<enum>QFormLayout::ExpandingFieldsGrow</enum>
|
|
</property>
|
|
<item row="0" column="0">
|
|
<widget class="QLabel" name="labelPragmaAutoVacuum">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_auto_vacuum"><span style=" text-decoration: underline; color:#0000ff;">Auto Vacuum</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="textInteractionFlags">
|
|
<set>Qt::LinksAccessibleByMouse</set>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboboxPragmaAutoVacuum</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="0" column="1">
|
|
<widget class="QComboBox" name="comboboxPragmaAutoVacuum">
|
|
<item>
|
|
<property name="text">
|
|
<string>None</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Full</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Incremental</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item row="1" column="0">
|
|
<widget class="QLabel" name="labelPragmaAutomaticIndex">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_automatic_index"><span style=" text-decoration: underline; color:#0000ff;">Automatic Index</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaAutomaticIndex</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="1" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaAutomaticIndex">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="2" column="0">
|
|
<widget class="QLabel" name="labelPragmaCheckpointFullFsync">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><span style=" text-decoration: underline; color:#0000ff;">Checkpoint Full FSYNC</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaCheckpointFullFsync</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="2" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaCheckpointFullFsync">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="3" column="0">
|
|
<widget class="QLabel" name="labelPragmaForeignKeys">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_foreign_keys"><span style=" text-decoration: underline; color:#0000ff;">Foreign Keys</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaForeignKeys</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="3" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaForeignKeys">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="4" column="0">
|
|
<widget class="QLabel" name="labelPragmaFullFsync">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_fullfsync"><span style=" text-decoration: underline; color:#0000ff;">Full FSYNC</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaFullFsync</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="4" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaFullFsync">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="5" column="0">
|
|
<widget class="QLabel" name="labelPragmaIgnoreCheckConstraints">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><span style=" text-decoration: underline; color:#0000ff;">Ignore Check Constraints</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaIgnoreCheckConstraints</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="5" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaIgnoreCheckConstraints">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="6" column="0">
|
|
<widget class="QLabel" name="labelPragmaJournalMode">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_journal_mode"><span style=" text-decoration: underline; color:#0000ff;">Journal Mode</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboboxPragmaJournalMode</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="6" column="1">
|
|
<widget class="QComboBox" name="comboboxPragmaJournalMode">
|
|
<item>
|
|
<property name="text">
|
|
<string>Delete</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Truncate</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Persist</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Memory</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>WAL</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Off</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item row="7" column="0">
|
|
<widget class="QLabel" name="labelJournalSizeLimit">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_journal_size_limit"><span style=" text-decoration: underline; color:#0000ff;">Journal Size Limit</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>spinPragmaJournalSizeLimit</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="7" column="1">
|
|
<widget class="QSpinBox" name="spinPragmaJournalSizeLimit">
|
|
<property name="minimum">
|
|
<number>-1</number>
|
|
</property>
|
|
<property name="maximum">
|
|
<number>100000</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="8" column="0">
|
|
<widget class="QLabel" name="labelPragmaLockingMode">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_locking_mode"><span style=" text-decoration: underline; color:#0000ff;">Locking Mode</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboboxPragmaLockingMode</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="8" column="1">
|
|
<widget class="QComboBox" name="comboboxPragmaLockingMode">
|
|
<item>
|
|
<property name="text">
|
|
<string>Normal</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Exclusive</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item row="9" column="0">
|
|
<widget class="QLabel" name="labelPragmaMaxPageCount">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_max_page_count"><span style=" text-decoration: underline; color:#0000ff;">Max Page Count</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>spinPragmaMaxPageCount</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="9" column="1">
|
|
<widget class="QSpinBox" name="spinPragmaMaxPageCount">
|
|
<property name="maximum">
|
|
<number>2000000000</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="10" column="0">
|
|
<widget class="QLabel" name="labelPragmaPageSize">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_page_size"><span style=" text-decoration: underline; color:#0000ff;">Page Size</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>spinPragmaPageSize</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="10" column="1">
|
|
<widget class="QSpinBox" name="spinPragmaPageSize">
|
|
<property name="minimum">
|
|
<number>512</number>
|
|
</property>
|
|
<property name="maximum">
|
|
<number>65536</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="11" column="0">
|
|
<widget class="QLabel" name="labelPragmaRecursiveTriggers">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_recursive_triggers"><span style=" text-decoration: underline; color:#0000ff;">Recursive Triggers</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaRecursiveTriggers</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="11" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaRecursiveTriggers">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="12" column="0">
|
|
<widget class="QLabel" name="labelPragmaSecureDelete">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_secure_delete"><span style=" text-decoration: underline; color:#0000ff;">Secure Delete</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>checkboxPragmaSecureDelete</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="12" column="1">
|
|
<widget class="QCheckBox" name="checkboxPragmaSecureDelete">
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="13" column="0">
|
|
<widget class="QLabel" name="labelPragmaSynchronous">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_synchronous"><span style=" text-decoration: underline; color:#0000ff;">Synchronous</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboboxPragmaSynchronous</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="13" column="1">
|
|
<widget class="QComboBox" name="comboboxPragmaSynchronous">
|
|
<item>
|
|
<property name="text">
|
|
<string>Off</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Normal</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Full</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item row="14" column="0">
|
|
<widget class="QLabel" name="labelPragmaTempStore">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_temp_store"><span style=" text-decoration: underline; color:#0000ff;">Temp Store</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboboxPragmaTempStore</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="14" column="1">
|
|
<widget class="QComboBox" name="comboboxPragmaTempStore">
|
|
<item>
|
|
<property name="text">
|
|
<string>Default</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>File</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Memory</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item row="15" column="0">
|
|
<widget class="QLabel" name="labelPragmaUserVersion">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_schema_version"><span style=" text-decoration: underline; color:#0000ff;">User Version</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>spinPragmaUserVersion</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="15" column="1">
|
|
<widget class="QSpinBox" name="spinPragmaUserVersion">
|
|
<property name="maximum">
|
|
<number>10000</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="16" column="0">
|
|
<widget class="QLabel" name="labelPragmaWalAutoCheckpoint">
|
|
<property name="text">
|
|
<string><html><head/><body><p><a href="http://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><span style=" text-decoration: underline; color:#0000ff;">WAL Auto Checkpoint</span></a></p></body></html></string>
|
|
</property>
|
|
<property name="openExternalLinks">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>spinPragmaWalAutoCheckpoint</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="16" column="1">
|
|
<widget class="QSpinBox" name="spinPragmaWalAutoCheckpoint">
|
|
<property name="maximum">
|
|
<number>10000</number>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QDialogButtonBox" name="buttonBoxPragmas">
|
|
<property name="standardButtons">
|
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Save</set>
|
|
</property>
|
|
<property name="centerButtons">
|
|
<bool>false</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QWidget" name="query">
|
|
<attribute name="title">
|
|
<string>E&xecute SQL</string>
|
|
</attribute>
|
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
<item>
|
|
<widget class="QToolBar" name="toolbarSql">
|
|
<property name="windowTitle">
|
|
<string>toolBar1</string>
|
|
</property>
|
|
<addaction name="actionSqlOpenTab"/>
|
|
<addaction name="actionSqlOpenFile"/>
|
|
<addaction name="actionSqlSaveFile"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="actionExecuteSql"/>
|
|
<addaction name="actionSqlExecuteLine"/>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QTabWidget" name="tabSqlAreas">
|
|
<property name="currentIndex">
|
|
<number>-1</number>
|
|
</property>
|
|
<property name="tabsClosable">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="movable">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QMenuBar" name="menubar">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>1000</width>
|
|
<height>19</height>
|
|
</rect>
|
|
</property>
|
|
<widget class="QMenu" name="fileMenu">
|
|
<property name="title">
|
|
<string>&File</string>
|
|
</property>
|
|
<widget class="QMenu" name="menuImport">
|
|
<property name="title">
|
|
<string>&Import</string>
|
|
</property>
|
|
<addaction name="fileImportSQLAction"/>
|
|
<addaction name="fileImportCSVAction"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuExport">
|
|
<property name="title">
|
|
<string>&Export</string>
|
|
</property>
|
|
<addaction name="fileExportSQLAction"/>
|
|
<addaction name="fileExportCSVAction"/>
|
|
</widget>
|
|
<addaction name="fileNewAction"/>
|
|
<addaction name="fileOpenAction"/>
|
|
<addaction name="fileAttachAction"/>
|
|
<addaction name="fileCloseAction"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="fileSaveAction"/>
|
|
<addaction name="fileRevertAction"/>
|
|
<addaction name="fileCompactAction"/>
|
|
<addaction name="actionLoadExtension"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="menuImport"/>
|
|
<addaction name="menuExport"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="actionOpenProject"/>
|
|
<addaction name="actionSaveProject"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="fileExitAction"/>
|
|
</widget>
|
|
<widget class="QMenu" name="editMenu">
|
|
<property name="title">
|
|
<string>&Edit</string>
|
|
</property>
|
|
<addaction name="editCreateTableAction"/>
|
|
<addaction name="editModifyTableAction"/>
|
|
<addaction name="editDeleteObjectAction"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="editCreateIndexAction"/>
|
|
</widget>
|
|
<widget class="QMenu" name="viewMenu">
|
|
<property name="title">
|
|
<string>&View</string>
|
|
</property>
|
|
<addaction name="viewDBToolbarAction"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="viewPreferencesAction"/>
|
|
</widget>
|
|
<widget class="QMenu" name="helpMenu">
|
|
<property name="title">
|
|
<string>&Help</string>
|
|
</property>
|
|
<addaction name="helpWhatsThisAction"/>
|
|
<addaction name="actionWebsite"/>
|
|
<addaction name="actionWiki"/>
|
|
<addaction name="actionBug_report"/>
|
|
<addaction name="helpAboutAction"/>
|
|
</widget>
|
|
<addaction name="fileMenu"/>
|
|
<addaction name="editMenu"/>
|
|
<addaction name="viewMenu"/>
|
|
<addaction name="helpMenu"/>
|
|
</widget>
|
|
<widget class="QStatusBar" name="statusbar"/>
|
|
<widget class="QToolBar" name="toolbarDB">
|
|
<property name="windowTitle">
|
|
<string>DB Toolbar</string>
|
|
</property>
|
|
<property name="toolButtonStyle">
|
|
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
|
</property>
|
|
<attribute name="toolBarArea">
|
|
<enum>TopToolBarArea</enum>
|
|
</attribute>
|
|
<attribute name="toolBarBreak">
|
|
<bool>false</bool>
|
|
</attribute>
|
|
<addaction name="fileNewAction"/>
|
|
<addaction name="fileOpenAction"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="fileSaveAction"/>
|
|
<addaction name="fileRevertAction"/>
|
|
</widget>
|
|
<widget class="QDockWidget" name="dockLog">
|
|
<property name="features">
|
|
<set>QDockWidget::AllDockWidgetFeatures</set>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>SQL Log</string>
|
|
</property>
|
|
<attribute name="dockWidgetArea">
|
|
<number>2</number>
|
|
</attribute>
|
|
<widget class="QWidget" name="dockWidgetContents">
|
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
<item>
|
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
<item>
|
|
<widget class="QLabel" name="labelLogSubmittedBy">
|
|
<property name="text">
|
|
<string>&Show SQL submitted by</string>
|
|
</property>
|
|
<property name="buddy">
|
|
<cstring>comboLogSubmittedBy</cstring>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QComboBox" name="comboLogSubmittedBy">
|
|
<item>
|
|
<property name="text">
|
|
<string>User</string>
|
|
</property>
|
|
</item>
|
|
<item>
|
|
<property name="text">
|
|
<string>Application</string>
|
|
</property>
|
|
</item>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<spacer name="horizontalSpacer_3">
|
|
<property name="orientation">
|
|
<enum>Qt::Horizontal</enum>
|
|
</property>
|
|
<property name="sizeHint" stdset="0">
|
|
<size>
|
|
<width>20</width>
|
|
<height>20</height>
|
|
</size>
|
|
</property>
|
|
</spacer>
|
|
</item>
|
|
<item>
|
|
<widget class="QPushButton" name="buttonLogClear">
|
|
<property name="text">
|
|
<string>&Clear</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</item>
|
|
<item>
|
|
<widget class="QStackedWidget" name="stackLog">
|
|
<property name="currentIndex">
|
|
<number>0</number>
|
|
</property>
|
|
<widget class="SqlTextEdit" name="editLogUser">
|
|
<property name="font">
|
|
<font>
|
|
<family>Monospace</family>
|
|
<pointsize>8</pointsize>
|
|
</font>
|
|
</property>
|
|
<property name="readOnly">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
<widget class="SqlTextEdit" name="editLogApplication">
|
|
<property name="font">
|
|
<font>
|
|
<family>Monospace</family>
|
|
<pointsize>8</pointsize>
|
|
</font>
|
|
</property>
|
|
<property name="readOnly">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<widget class="QDockWidget" name="dockPlot">
|
|
<property name="features">
|
|
<set>QDockWidget::AllDockWidgetFeatures</set>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Plot</string>
|
|
</property>
|
|
<attribute name="dockWidgetArea">
|
|
<number>2</number>
|
|
</attribute>
|
|
<widget class="QWidget" name="dockWidgetContents_2">
|
|
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
<item>
|
|
<widget class="QWidget" name="widget_2" native="true">
|
|
<layout class="QVBoxLayout" name="verticalLayout_8">
|
|
<item>
|
|
<widget class="QSplitter" name="splitterForPlot">
|
|
<property name="orientation">
|
|
<enum>Qt::Vertical</enum>
|
|
</property>
|
|
<widget class="QTreeWidget" name="treePlotColumns">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>2</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="columnCount">
|
|
<number>4</number>
|
|
</property>
|
|
<attribute name="headerDefaultSectionSize">
|
|
<number>100</number>
|
|
</attribute>
|
|
<column>
|
|
<property name="text">
|
|
<string>Columns</string>
|
|
</property>
|
|
</column>
|
|
<column>
|
|
<property name="text">
|
|
<string>X</string>
|
|
</property>
|
|
</column>
|
|
<column>
|
|
<property name="text">
|
|
<string>Y</string>
|
|
</property>
|
|
</column>
|
|
<column>
|
|
<property name="text">
|
|
<string>_</string>
|
|
</property>
|
|
</column>
|
|
</widget>
|
|
<widget class="QCustomPlot" name="plotWidget" native="true">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>8</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
</widget>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QWidget" name="widget" native="true">
|
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
<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>
|
|
<spacer name="horizontalSpacer_4">
|
|
<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>
|
|
<widget class="QPushButton" name="butSavePlot">
|
|
<property name="toolTip">
|
|
<string><html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html></string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Save current plot...</string>
|
|
</property>
|
|
<property name="text">
|
|
<string/>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/save_table</normaloff>:/icons/save_table</iconset>
|
|
</property>
|
|
<property name="checkable">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="autoDefault">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="default">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="flat">
|
|
<bool>false</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<widget class="QDockWidget" name="dockSchema">
|
|
<property name="windowTitle">
|
|
<string>DB Schema</string>
|
|
</property>
|
|
<attribute name="dockWidgetArea">
|
|
<number>2</number>
|
|
</attribute>
|
|
<widget class="QWidget" name="dockWidgetContents_3">
|
|
<layout class="QVBoxLayout" name="verticalLayout_9">
|
|
<item>
|
|
<widget class="QTreeView" name="treeSchemaDock">
|
|
<property name="alternatingRowColors">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="verticalScrollMode">
|
|
<enum>QAbstractItemView::ScrollPerPixel</enum>
|
|
</property>
|
|
<property name="animated">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<action name="fileNewAction">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/db_new</normaloff>:/icons/db_new</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&New Database...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Create a new database file</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Create a new database file</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option is used to create a new database file.</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+N</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileOpenAction">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/db_open</normaloff>:/icons/db_open</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Open Database...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Open an existing database file</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Open an existing database file</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option is used to open an existing database file.</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+O</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileCloseAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Close Database</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+W</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileRevertAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/db_revert</normaloff>:/icons/db_revert</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Revert Changes</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Revert database to last saved state</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost.</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileSaveAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/db_save</normaloff>:/icons/db_save</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Write Changes</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Write changes to the database file</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option is used to save changes to the database file.</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+S</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileCompactAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>Compact Database</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Compact the database file, removing space wasted by deleted records</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Compact the database file, removing space wasted by deleted records.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Compact the database file, removing space wasted by deleted records.</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileExitAction">
|
|
<property name="text">
|
|
<string>E&xit</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+Q</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileImportSQLAction">
|
|
<property name="text">
|
|
<string>Database from SQL file...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Import data from an .sql dump text file into a new or existing database.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL.</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileImportCSVAction">
|
|
<property name="text">
|
|
<string>Table from CSV file...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Open a wizard that lets you import data from a comma separated text file into a database table.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications.</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileExportSQLAction">
|
|
<property name="text">
|
|
<string>Database to SQL file...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Export a database to a .sql dump text file.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL.</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileExportCSVAction">
|
|
<property name="text">
|
|
<string>Table as CSV file...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Export a database table as a comma separated text file.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications.</string>
|
|
</property>
|
|
</action>
|
|
<action name="editCreateTableAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/table_create</normaloff>:/icons/table_create</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Create Table...</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database</string>
|
|
</property>
|
|
</action>
|
|
<action name="editDeleteObjectAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/table_delete</normaloff>:/icons/table_delete</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Delete Table...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Delete Table</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open the Delete Table wizard, where you can select a database table to be dropped.</string>
|
|
</property>
|
|
</action>
|
|
<action name="editModifyTableAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/table_modify</normaloff>:/icons/table_modify</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Modify Table...</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types.</string>
|
|
</property>
|
|
</action>
|
|
<action name="editCreateIndexAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/index_create</normaloff>:/icons/index_create</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Create Index...</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open the Create Index wizard, where it is possible to define a new index on an existing database table.</string>
|
|
</property>
|
|
</action>
|
|
<action name="viewPreferencesAction">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/settings</normaloff>:/icons/settings</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Preferences...</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Open the preferences window.</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Open the preferences window.</string>
|
|
</property>
|
|
</action>
|
|
<action name="viewDBToolbarAction">
|
|
<property name="checkable">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>&DB Toolbar</string>
|
|
</property>
|
|
<property name="whatsThis">
|
|
<string>Shows or hides the Database toolbar.</string>
|
|
</property>
|
|
</action>
|
|
<action name="helpWhatsThisAction">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/whatis</normaloff>:/icons/whatis</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>What's This?</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Shift+F1</string>
|
|
</property>
|
|
</action>
|
|
<action name="helpAboutAction">
|
|
<property name="text">
|
|
<string>&About...</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionRecent_y_opened">
|
|
<property name="text">
|
|
<string>&Recently opened</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSqlOpenTab">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/open_tab</normaloff>:/icons/open_tab</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Open &tab</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+T</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionExecuteSql">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/run</normaloff>:/icons/run</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Execute SQL</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Execute SQL [F5, Ctrl+Return]</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>F5</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSqlOpenFile">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/open_sql</normaloff>:/icons/open_sql</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Open SQL file</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSqlSaveFile">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/save_sql</normaloff>:/icons/save_sql</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Save SQL file</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionLoadExtension">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/load_extension</normaloff>:/icons/load_extension</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Load extension</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSqlExecuteLine">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/run_line</normaloff>:/icons/run_line</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Execute current line</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Execute current line [Ctrl+E]</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+E</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionExportCsvPopup">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>Export as CSV file</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Export table as comma separated values file</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionWiki">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/browser_open</normaloff>:/icons/browser_open</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Wiki...</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionBug_report">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/browser_open</normaloff>:/icons/browser_open</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Bug &report...</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionWebsite">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/browser_open</normaloff>:/icons/browser_open</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Web&site...</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSaveProject">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/project_save</normaloff>:/icons/project_save</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Save Project</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Save the current session to a file</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Save the current session to a file</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionOpenProject">
|
|
<property name="icon">
|
|
<iconset resource="icons/icons.qrc">
|
|
<normaloff>:/icons/project_open</normaloff>:/icons/project_open</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Open Project</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Load a working session from a file</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Load a working session from a file</string>
|
|
</property>
|
|
</action>
|
|
<action name="fileAttachAction">
|
|
<property name="enabled">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Attach Database</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<customwidgets>
|
|
<customwidget>
|
|
<class>ExtendedTableWidget</class>
|
|
<extends>QTableWidget</extends>
|
|
<header>ExtendedTableWidget.h</header>
|
|
</customwidget>
|
|
<customwidget>
|
|
<class>SqlTextEdit</class>
|
|
<extends>QTextEdit</extends>
|
|
<header>sqltextedit.h</header>
|
|
</customwidget>
|
|
<customwidget>
|
|
<class>QCustomPlot</class>
|
|
<extends>QWidget</extends>
|
|
<header>qcustomplot.h</header>
|
|
<container>1</container>
|
|
</customwidget>
|
|
</customwidgets>
|
|
<tabstops>
|
|
<tabstop>dbTreeWidget</tabstop>
|
|
<tabstop>comboBrowseTable</tabstop>
|
|
<tabstop>buttonRefresh</tabstop>
|
|
<tabstop>buttonNewRecord</tabstop>
|
|
<tabstop>buttonDeleteRecord</tabstop>
|
|
<tabstop>dataTable</tabstop>
|
|
<tabstop>buttonPrevious</tabstop>
|
|
<tabstop>buttonNext</tabstop>
|
|
<tabstop>buttonGoto</tabstop>
|
|
<tabstop>editGoto</tabstop>
|
|
<tabstop>scrollareaPragmas</tabstop>
|
|
<tabstop>comboboxPragmaAutoVacuum</tabstop>
|
|
<tabstop>checkboxPragmaAutomaticIndex</tabstop>
|
|
<tabstop>checkboxPragmaCheckpointFullFsync</tabstop>
|
|
<tabstop>checkboxPragmaForeignKeys</tabstop>
|
|
<tabstop>checkboxPragmaFullFsync</tabstop>
|
|
<tabstop>checkboxPragmaIgnoreCheckConstraints</tabstop>
|
|
<tabstop>comboboxPragmaJournalMode</tabstop>
|
|
<tabstop>spinPragmaJournalSizeLimit</tabstop>
|
|
<tabstop>comboboxPragmaLockingMode</tabstop>
|
|
<tabstop>spinPragmaMaxPageCount</tabstop>
|
|
<tabstop>spinPragmaPageSize</tabstop>
|
|
<tabstop>checkboxPragmaRecursiveTriggers</tabstop>
|
|
<tabstop>checkboxPragmaSecureDelete</tabstop>
|
|
<tabstop>comboboxPragmaSynchronous</tabstop>
|
|
<tabstop>comboboxPragmaTempStore</tabstop>
|
|
<tabstop>spinPragmaUserVersion</tabstop>
|
|
<tabstop>spinPragmaWalAutoCheckpoint</tabstop>
|
|
<tabstop>comboLogSubmittedBy</tabstop>
|
|
<tabstop>buttonLogClear</tabstop>
|
|
</tabstops>
|
|
<resources>
|
|
<include location="icons/icons.qrc"/>
|
|
</resources>
|
|
<connections>
|
|
<connection>
|
|
<sender>fileExitAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>close()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileOpenAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileOpen()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileNewAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileNew()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileCloseAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileClose()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>comboBrowseTable</sender>
|
|
<signal>activated(QString)</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>populateTable(QString)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>59</x>
|
|
<y>82</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonNewRecord</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>addRecord()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>584</x>
|
|
<y>82</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonDeleteRecord</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>deleteRecord()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>687</x>
|
|
<y>82</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonPrevious</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>navigatePrevious()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>27</x>
|
|
<y>380</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonNext</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>navigateNext()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>128</x>
|
|
<y>380</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonGoto</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>navigateGoto()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>493</x>
|
|
<y>380</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>editGoto</sender>
|
|
<signal>returnPressed()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>navigateGoto()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>790</x>
|
|
<y>379</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonRefresh</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>browseRefresh()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>265</x>
|
|
<y>103</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileCompactAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>compact()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>helpWhatsThisAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>helpWhatsThis()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>helpAboutAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>helpAbout()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>mainTab</sender>
|
|
<signal>currentChanged(int)</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>mainTabSelected(int)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>399</x>
|
|
<y>315</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileImportCSVAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>importTableFromCSV()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileExportCSVAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>exportTableToCSV()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileRevertAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileRevert()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileSaveAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileSave()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>editCreateIndexAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>createIndex()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>editDeleteObjectAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>deleteObject()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>editModifyTableAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>editTable()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileExportSQLAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>exportDatabaseToSQL()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileImportSQLAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>importDatabaseFromSQL()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>viewPreferencesAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>openPreferences()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>dbTreeWidget</sender>
|
|
<signal>customContextMenuRequested(QPoint)</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>createTreeContextMenu(QPoint)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>399</x>
|
|
<y>341</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>viewDBToolbarAction</sender>
|
|
<signal>toggled(bool)</signal>
|
|
<receiver>toolbarDB</receiver>
|
|
<slot>setVisible(bool)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>34</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>editCreateTableAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>createTable()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonBoxPragmas</sender>
|
|
<signal>rejected()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>loadPragmas()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>251</x>
|
|
<y>381</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>-1</x>
|
|
<y>470</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonBoxPragmas</sender>
|
|
<signal>accepted()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>savePragmas()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>364</x>
|
|
<y>381</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>802</x>
|
|
<y>522</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonLogClear</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>editLogApplication</receiver>
|
|
<slot>clear()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>794</x>
|
|
<y>441</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>103</x>
|
|
<y>476</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>buttonLogClear</sender>
|
|
<signal>clicked()</signal>
|
|
<receiver>editLogUser</receiver>
|
|
<slot>clear()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>794</x>
|
|
<y>441</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>611</x>
|
|
<y>576</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>comboLogSubmittedBy</sender>
|
|
<signal>currentIndexChanged(int)</signal>
|
|
<receiver>stackLog</receiver>
|
|
<slot>setCurrentIndex(int)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>258</x>
|
|
<y>441</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>492</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>dataTable</sender>
|
|
<signal>doubleClicked(QModelIndex)</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>doubleClickTable(QModelIndex)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>399</x>
|
|
<y>211</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>tabSqlAreas</sender>
|
|
<signal>tabCloseRequested(int)</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>closeSqlTab(int)</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>48</x>
|
|
<y>90</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>-1</x>
|
|
<y>51</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionExecuteSql</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>executeQuery()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionSqlOpenTab</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>openSqlTab()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionSqlOpenFile</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>openSqlFile()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionSqlSaveFile</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>saveSqlFile()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionLoadExtension</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>loadExtension()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionSqlExecuteLine</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>executeQuery()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionExportCsvPopup</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>exportTableToCSV()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionOpenProject</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>loadProject()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>actionSaveProject</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>saveProject()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>399</x>
|
|
<y>299</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
<connection>
|
|
<sender>fileAttachAction</sender>
|
|
<signal>triggered()</signal>
|
|
<receiver>MainWindow</receiver>
|
|
<slot>fileAttach()</slot>
|
|
<hints>
|
|
<hint type="sourcelabel">
|
|
<x>-1</x>
|
|
<y>-1</y>
|
|
</hint>
|
|
<hint type="destinationlabel">
|
|
<x>499</x>
|
|
<y>314</y>
|
|
</hint>
|
|
</hints>
|
|
</connection>
|
|
</connections>
|
|
<slots>
|
|
<slot>fileOpen()</slot>
|
|
<slot>fileClose()</slot>
|
|
<slot>populateTable(QString)</slot>
|
|
<slot>addRecord()</slot>
|
|
<slot>deleteRecord()</slot>
|
|
<slot>navigatePrevious()</slot>
|
|
<slot>navigateNext()</slot>
|
|
<slot>navigateGoto()</slot>
|
|
<slot>browseFind(bool)</slot>
|
|
<slot>browseRefresh()</slot>
|
|
<slot>compact()</slot>
|
|
<slot>helpWhatsThis()</slot>
|
|
<slot>doubleClickTable(QModelIndex)</slot>
|
|
<slot>browseTableHeaderClicked(int)</slot>
|
|
<slot>mainTabSelected(int)</slot>
|
|
<slot>executeQuery()</slot>
|
|
<slot>importTableFromCSV()</slot>
|
|
<slot>exportTableToCSV()</slot>
|
|
<slot>fileRevert()</slot>
|
|
<slot>fileSave()</slot>
|
|
<slot>deleteIndex()</slot>
|
|
<slot>createIndex()</slot>
|
|
<slot>createTable()</slot>
|
|
<slot>deleteObject()</slot>
|
|
<slot>editTable()</slot>
|
|
<slot>editTablePopup()</slot>
|
|
<slot>addField()</slot>
|
|
<slot>editField()</slot>
|
|
<slot>exportDatabaseToSQL()</slot>
|
|
<slot>importDatabaseFromSQL()</slot>
|
|
<slot>openPreferences()</slot>
|
|
<slot>createTreeContextMenu(QPoint)</slot>
|
|
<slot>changeTreeSelection()</slot>
|
|
<slot>fileNew()</slot>
|
|
<slot>helpAbout()</slot>
|
|
<slot>deleteField()</slot>
|
|
<slot>loadPragmas()</slot>
|
|
<slot>savePragmas()</slot>
|
|
<slot>copy()</slot>
|
|
<slot>closeSqlTab(int)</slot>
|
|
<slot>openSqlTab()</slot>
|
|
<slot>openSqlFile()</slot>
|
|
<slot>saveSqlFile()</slot>
|
|
<slot>loadExtension()</slot>
|
|
<slot>loadProject()</slot>
|
|
<slot>saveProject()</slot>
|
|
<slot>fileAttach()</slot>
|
|
</slots>
|
|
</ui>
|