pgLab/pglab/PropertiesPage.h

29 lines
484 B
C
Raw Normal View History

#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