Files
sqlitebrowser/src/sqltextedit.h
mgrojo 2b15029be5 Button for new Un/Comment Block feature
A new button has been added to the "Execute SQL" toolbar for invoking the
new Un/Comment Block feature.

See issue #1614
2018-11-23 18:35:52 +01:00

30 lines
479 B
C++

#ifndef SQLTEXTEDIT_H
#define SQLTEXTEDIT_H
#include "ExtendedScintilla.h"
class FindReplaceDialog;
class SqlUiLexer;
/**
* @brief The SqlTextEdit class
* This class is based on the QScintilla widget
*/
class SqlTextEdit : public ExtendedScintilla
{
Q_OBJECT
public:
explicit SqlTextEdit(QWidget *parent = nullptr);
~SqlTextEdit() override;
static SqlUiLexer* sqlLexer;
public slots:
void reloadSettings();
void toggleBlockComment();
};
#endif