29 lines
484 B
C
29 lines
484 B
C
|
|
#ifndef PROPERTIESPAGE_H
|
|||
|
|
#define PROPERTIESPAGE_H
|
|||
|
|
|
|||
|
|
#include <QSplitter>
|
|||
|
|
|
|||
|
|
class QTableView;
|
|||
|
|
class SqlCodePreview;
|
|||
|
|
class PgDatabaseCatalog;
|
|||
|
|
class PropertyProxyModel;
|
|||
|
|
|
|||
|
|
class PropertiesPage : public QSplitter
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
public:
|
|||
|
|
explicit PropertiesPage(QWidget *parent = nullptr);
|
|||
|
|
|
|||
|
|
signals:
|
|||
|
|
|
|||
|
|
public slots:
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
QTableView *m_tableView = nullptr;
|
|||
|
|
// SqlCodePreview *m_definitionView = nullptr;
|
|||
|
|
PropertyProxyModel *m_propertyProxyModel = nullptr;
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // PROPERTIESPAGE_H
|