Double clicking a table now opens a CRUD page for that table however data cannot be changed yet thought it will display an editbox.
This commit is contained in:
parent
abd4020ddf
commit
2ba27178a2
13 changed files with 288 additions and 33 deletions
|
|
@ -32,6 +32,7 @@ class QueryTab;
|
|||
class MasterController;
|
||||
class QCloseEvent;
|
||||
class OpenDatabase;
|
||||
class PgClass;
|
||||
|
||||
class MainWindow : public ASyncWindow {
|
||||
Q_OBJECT
|
||||
|
|
@ -42,6 +43,8 @@ public:
|
|||
void setConfig(const ConnectionConfig &config);
|
||||
|
||||
std::shared_ptr<OpenDatabase> getDatabase() { return m_database; }
|
||||
|
||||
void newCrudPage(const PgClass &table);
|
||||
private:
|
||||
|
||||
Ui::MainWindow *ui;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue