Removed unused DatabaseInspectorWidget (had no code only ui design)
This commit is contained in:
parent
bb55ef12f3
commit
22db22c6b1
4 changed files with 0 additions and 119 deletions
|
|
@ -1,14 +0,0 @@
|
||||||
#include "DatabaseInspectorWidget.h"
|
|
||||||
#include "ui_DatabaseInspectorWidget.h"
|
|
||||||
|
|
||||||
DatabaseInspectorWidget::DatabaseInspectorWidget(QWidget *parent) :
|
|
||||||
QWidget(parent),
|
|
||||||
ui(new Ui::DatabaseInspectorWidget)
|
|
||||||
{
|
|
||||||
ui->setupUi(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
DatabaseInspectorWidget::~DatabaseInspectorWidget()
|
|
||||||
{
|
|
||||||
delete ui;
|
|
||||||
}
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
#ifndef DATABASEINSPECTORWIDGET_H
|
|
||||||
#define DATABASEINSPECTORWIDGET_H
|
|
||||||
|
|
||||||
#include <QWidget>
|
|
||||||
|
|
||||||
namespace Ui {
|
|
||||||
class DatabaseInspectorWidget;
|
|
||||||
}
|
|
||||||
|
|
||||||
class DatabaseInspectorWidget : public QWidget
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit DatabaseInspectorWidget(QWidget *parent = 0);
|
|
||||||
~DatabaseInspectorWidget();
|
|
||||||
|
|
||||||
private:
|
|
||||||
Ui::DatabaseInspectorWidget *ui;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // DATABASEINSPECTORWIDGET_H
|
|
||||||
|
|
@ -1,80 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<ui version="4.0">
|
|
||||||
<class>DatabaseInspectorWidget</class>
|
|
||||||
<widget class="QWidget" name="DatabaseInspectorWidget">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>599</width>
|
|
||||||
<height>536</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="windowTitle">
|
|
||||||
<string>Form</string>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
|
||||||
<item>
|
|
||||||
<widget class="QFrame" name="frame">
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::StyledPanel</enum>
|
|
||||||
</property>
|
|
||||||
<property name="frameShadow">
|
|
||||||
<enum>QFrame::Raised</enum>
|
|
||||||
</property>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label">
|
|
||||||
<property name="text">
|
|
||||||
<string>Schema filter</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox"/>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
|
||||||
<property name="currentIndex">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<widget class="QWidget" name="tabTables">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Tables</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="tabSequences">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Sequences</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="tab">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Functions</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="tabDomains">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Domains</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="tabCollations">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Collations</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="tabFTS">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>FTS</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<resources/>
|
|
||||||
<connections/>
|
|
||||||
</ui>
|
|
||||||
|
|
@ -39,7 +39,6 @@ SOURCES += main.cpp\
|
||||||
BackupRestore.cpp \
|
BackupRestore.cpp \
|
||||||
QueryTab.cpp \
|
QueryTab.cpp \
|
||||||
stopwatch.cpp \
|
stopwatch.cpp \
|
||||||
DatabaseInspectorWidget.cpp \
|
|
||||||
TuplesResultWidget.cpp \
|
TuplesResultWidget.cpp \
|
||||||
BackupDialog.cpp \
|
BackupDialog.cpp \
|
||||||
TypeSelectionItemModel.cpp \
|
TypeSelectionItemModel.cpp \
|
||||||
|
|
@ -74,7 +73,6 @@ HEADERS += \
|
||||||
ConnectionListModel.h \
|
ConnectionListModel.h \
|
||||||
QueryTab.h \
|
QueryTab.h \
|
||||||
stopwatch.h \
|
stopwatch.h \
|
||||||
DatabaseInspectorWidget.h \
|
|
||||||
TuplesResultWidget.h \
|
TuplesResultWidget.h \
|
||||||
BackupDialog.h \
|
BackupDialog.h \
|
||||||
TypeSelectionItemModel.h \
|
TypeSelectionItemModel.h \
|
||||||
|
|
@ -103,7 +101,6 @@ HEADERS += \
|
||||||
FORMS += mainwindow.ui \
|
FORMS += mainwindow.ui \
|
||||||
ConnectionManagerWindow.ui \
|
ConnectionManagerWindow.ui \
|
||||||
CreateDatabaseDialog.ui \
|
CreateDatabaseDialog.ui \
|
||||||
DatabaseInspectorWidget.ui \
|
|
||||||
TuplesResultWidget.ui \
|
TuplesResultWidget.ui \
|
||||||
QueryTab.ui \
|
QueryTab.ui \
|
||||||
BackupDialog.ui \
|
BackupDialog.ui \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue