Reorganization of pgLab project
This commit is contained in:
parent
7300865c77
commit
c71fdc4af7
78 changed files with 204 additions and 148 deletions
30
pglab/catalog/widgets/DependantsPage.h
Normal file
30
pglab/catalog/widgets/DependantsPage.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef DEPENDENTSPAGE_H
|
||||
#define DEPENDENTSPAGE_H
|
||||
|
||||
#include "catalog/widgets/CatalogPageBase.h"
|
||||
|
||||
class PgClass;
|
||||
class DependantsTableModel;
|
||||
class QItemSelection;
|
||||
|
||||
class DependantsPage : public CatalogPageBase {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DependantsPage(QWidget *parent = nullptr);
|
||||
|
||||
void setFilter(const std::optional<PgClass> &cls);
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
void catalogSet() override;
|
||||
private:
|
||||
DependantsTableModel *m_model = nullptr;
|
||||
|
||||
private slots:
|
||||
// void tableView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
||||
};
|
||||
|
||||
|
||||
#endif // DEPENDENTSPAGE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue