#ifndef PROPERTIESPAGE_H #define PROPERTIESPAGE_H #include 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