Removing plugin system is holding back development to much.

This commit is contained in:
eelke 2019-08-15 16:18:47 +02:00
parent 048843a1d4
commit edb789ca4a
22 changed files with 198 additions and 562 deletions

View file

@ -8,7 +8,6 @@
#include "tuplesresultwidget.h"
#include <QWidget>
#include "plugin_support/PluginContentWidget.h"
#include <memory>
namespace Ui {
@ -31,10 +30,10 @@ class OpenDatabase;
class QueryParamListController;
class PgDatabaseCatalog;
class QueryTool : public PluginContentWidget {
class QueryTool : public QWidget {
Q_OBJECT
public:
QueryTool(IPluginContentWidgetContext *context, PluginModule *module, QWidget *parent = nullptr);
QueryTool(std::shared_ptr<OpenDatabase> open_database, QWidget *parent = nullptr);
~QueryTool() override;
void newdoc();
@ -42,7 +41,7 @@ public:
void explain(bool analyze);
bool canClose() override;
bool canClose();
void generateCode();
void exportDataToFilename(const QString &filename);