Reorganization of pgLab project

This commit is contained in:
eelke 2022-04-09 07:10:29 +02:00
parent 7300865c77
commit c71fdc4af7
78 changed files with 204 additions and 148 deletions

View file

@ -1,30 +0,0 @@
#ifndef TRIGGERPAGE_H
#define TRIGGERPAGE_H
#include "widgets/CatalogPageBase.h"
class PgClass;
class TriggerTableModel;
class QItemSelection;
class TriggerPage : public CatalogPageBase {
Q_OBJECT
public:
explicit TriggerPage(QWidget *parent = nullptr);
// TriggerPage(QWidget *parent = nullptr);
void setFilter(const std::optional<PgClass> &cls);
signals:
public slots:
protected:
void catalogSet() override;
private:
TriggerTableModel *m_model = nullptr;
private slots:
void tableView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
};
#endif // TRIGGERPAGE_H