mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
#ifndef SQLEXECUTIONAREA_H
|
|
#define SQLEXECUTIONAREA_H
|
|
|
|
#include <QWidget>
|
|
|
|
class SqlTextEdit;
|
|
class SqliteTableModel;
|
|
class DBBrowserDB;
|
|
class ExtendedTableWidget;
|
|
|
|
namespace Ui {
|
|
class SqlExecutionArea;
|
|
}
|
|
|
|
class SqlExecutionArea : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SqlExecutionArea(DBBrowserDB& _db, QWidget* parent = nullptr);
|
|
~SqlExecutionArea();
|
|
|
|
QString getSql() const;
|
|
QString getSelectedSql() const;
|
|
|
|
QString fileName() const { return sqlFileName; }
|
|
void setFileName(const QString& filename) { sqlFileName = filename; }
|
|
|
|
SqliteTableModel* getModel() { return model; }
|
|
SqlTextEdit* getEditor();
|
|
ExtendedTableWidget *getTableResult();
|
|
|
|
public slots:
|
|
virtual void finishExecution(const QString& result, const bool ok);
|
|
virtual void saveAsCsv();
|
|
virtual void reloadSettings();
|
|
void fetchedData();
|
|
void setFindFrameVisibility(bool show);
|
|
|
|
private slots:
|
|
void findPrevious();
|
|
void findNext();
|
|
void findLineEdit_textChanged(const QString& text);
|
|
void hideFindFrame();
|
|
|
|
signals:
|
|
void findFrameVisibilityChanged(bool visible);
|
|
|
|
private:
|
|
void find(QString expr, bool forward);
|
|
DBBrowserDB& db;
|
|
SqliteTableModel* model;
|
|
QString sqlFileName;
|
|
Ui::SqlExecutionArea* ui;
|
|
bool m_columnsResized; // This is set to true if the columns of the table view were already adjusted to fit their contents
|
|
bool showErrorIndicators;
|
|
};
|
|
|
|
#endif
|