2021-04-06 23:10:57 +08:00
|
|
|
#ifndef EDITOR_H
|
|
|
|
#define EDITOR_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <utils.h>
|
|
|
|
#include <QTabWidget>
|
2021-05-24 00:41:00 +08:00
|
|
|
#include "qsynedit/SynEdit.h"
|
2021-06-19 22:58:35 +08:00
|
|
|
#include "colorscheme.h"
|
2021-06-23 22:38:02 +08:00
|
|
|
#include "common.h"
|
2021-08-23 10:16:06 +08:00
|
|
|
#include "parser/cppparser.h"
|
2021-08-29 00:48:23 +08:00
|
|
|
#include "widgets/codecompletionpopup.h"
|
2021-08-29 10:14:07 +08:00
|
|
|
#include "widgets/headercompletionpopup.h"
|
2021-04-06 23:10:57 +08:00
|
|
|
|
2021-04-11 21:33:08 +08:00
|
|
|
class SaveException: public std::exception {
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SaveException(const QString& reason);
|
|
|
|
explicit SaveException(const QString&& reason);
|
|
|
|
// exception interface
|
|
|
|
const QString& reason() const noexcept;
|
|
|
|
public:
|
|
|
|
const char *what() const noexcept override;
|
|
|
|
private:
|
|
|
|
QString mReason;
|
2021-08-29 10:14:07 +08:00
|
|
|
QByteArray mReasonBuffer;
|
2021-04-11 21:33:08 +08:00
|
|
|
};
|
|
|
|
|
2021-05-24 00:41:00 +08:00
|
|
|
class Editor : public SynEdit
|
2021-04-06 23:10:57 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-04-29 20:54:44 +08:00
|
|
|
enum MarginNumber {
|
|
|
|
LineNumberMargin = 0,
|
|
|
|
MarkerMargin = 1,
|
|
|
|
FoldMargin = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum MarkerNumber {
|
|
|
|
BreakpointMarker,
|
|
|
|
ErrorMarker,
|
|
|
|
WarningMarker
|
|
|
|
};
|
|
|
|
|
2021-06-22 13:24:26 +08:00
|
|
|
enum class QuoteStatus {
|
|
|
|
NotQuote,
|
|
|
|
SingleQuote,
|
|
|
|
SingleQuoteEscape,
|
|
|
|
DoubleQuote,
|
|
|
|
DoubleQuoteEscape,
|
|
|
|
RawString,
|
|
|
|
RawStringNoEscape
|
|
|
|
};
|
|
|
|
|
2021-08-25 08:48:33 +08:00
|
|
|
enum class WordPurpose {
|
|
|
|
wpCompletion, // walk backwards over words, array, functions, parents, no forward movement
|
|
|
|
wpEvaluation, // walk backwards over words, array, functions, parents, forwards over words, array
|
|
|
|
wpHeaderCompletion, // walk backwards over path
|
|
|
|
wpHeaderCompletionStart, // walk backwards over path, including start '<' or '"'
|
|
|
|
wpDirective, // preprocessor
|
|
|
|
wpJavadoc, //javadoc
|
|
|
|
wpInformation // walk backwards over words, array, functions, parents, forwards over words
|
|
|
|
};
|
|
|
|
|
2021-08-29 17:23:40 +08:00
|
|
|
enum class TipType {
|
|
|
|
Preprocessor, // cursor hovers above preprocessor line
|
|
|
|
Identifier, // cursor hovers above identifier
|
|
|
|
Selection, // cursor hovers above selection
|
|
|
|
None, // mouseover not allowed
|
|
|
|
Error //Cursor hovers above error line/item;
|
|
|
|
};
|
|
|
|
|
2021-06-23 22:38:02 +08:00
|
|
|
struct SyntaxIssue {
|
|
|
|
int col;
|
|
|
|
int endCol;
|
|
|
|
int startChar;
|
|
|
|
int endChar;
|
|
|
|
CompileIssueType issueType;
|
|
|
|
QString token;
|
|
|
|
QString hint;
|
|
|
|
};
|
|
|
|
|
|
|
|
using PSyntaxIssue = std::shared_ptr<SyntaxIssue>;
|
|
|
|
using SyntaxIssueList = QVector<PSyntaxIssue>;
|
|
|
|
using PSyntaxIssueList = std::shared_ptr<SyntaxIssueList>;
|
|
|
|
|
2021-06-19 22:58:35 +08:00
|
|
|
explicit Editor(QWidget *parent);
|
|
|
|
|
2021-04-09 17:48:25 +08:00
|
|
|
explicit Editor(QWidget *parent, const QString& filename,
|
2021-04-08 10:29:21 +08:00
|
|
|
const QByteArray& encoding,
|
2021-04-09 17:48:25 +08:00
|
|
|
bool inProject, bool isNew,QTabWidget* parentPageControl);
|
2021-04-06 23:10:57 +08:00
|
|
|
|
2021-04-07 22:44:08 +08:00
|
|
|
~Editor();
|
|
|
|
|
2021-04-11 12:39:22 +08:00
|
|
|
//tell the compiler to prohibit copy/moving editor objects ( we should only use pointers to the editor object)
|
|
|
|
Editor(const Editor&) = delete;
|
|
|
|
Editor(const Editor&&) = delete;
|
|
|
|
Editor& operator=(const Editor&) = delete;
|
|
|
|
Editor& operator=(const Editor&&) = delete;
|
|
|
|
|
2021-04-11 21:33:08 +08:00
|
|
|
const QByteArray& encodingOption() const noexcept;
|
|
|
|
void setEncodingOption(const QByteArray& encoding) noexcept;
|
|
|
|
const QByteArray& fileEncoding() const noexcept;
|
|
|
|
const QString& filename() const noexcept;
|
|
|
|
bool inProject() const noexcept;
|
|
|
|
bool isNew() const noexcept;
|
2021-04-06 23:10:57 +08:00
|
|
|
|
|
|
|
void loadFile();
|
2021-04-07 21:13:15 +08:00
|
|
|
void saveFile(const QString& filename);
|
2021-06-12 22:36:23 +08:00
|
|
|
void convertToEncoding(const QByteArray& encoding);
|
2021-04-09 10:08:05 +08:00
|
|
|
bool save(bool force=false, bool reparse=true);
|
2021-04-11 12:39:22 +08:00
|
|
|
bool saveAs();
|
2021-04-12 00:00:29 +08:00
|
|
|
void activate();
|
2021-04-06 23:10:57 +08:00
|
|
|
|
2021-04-11 21:33:08 +08:00
|
|
|
QTabWidget* pageControl() noexcept;
|
2021-04-11 12:39:22 +08:00
|
|
|
|
|
|
|
void updateCaption(const QString& newCaption=QString());
|
2021-06-07 11:02:03 +08:00
|
|
|
void applySettings();
|
2021-06-19 22:58:35 +08:00
|
|
|
void applyColorScheme(const QString& schemeName);
|
2021-06-12 22:36:23 +08:00
|
|
|
void copyToClipboard() override;
|
|
|
|
void cutToClipboard() override;
|
|
|
|
void copyAsHTML();
|
2021-09-05 21:05:38 +08:00
|
|
|
void setCaretPosition(int line,int aChar);
|
|
|
|
void setCaretPositionAndActivate(int line,int aChar);
|
2021-06-23 22:38:02 +08:00
|
|
|
|
2021-06-24 16:05:19 +08:00
|
|
|
void addSyntaxIssues(int line, int startChar, int endChar, CompileIssueType errorType, const QString& hint);
|
2021-06-23 22:38:02 +08:00
|
|
|
void clearSyntaxIssues();
|
|
|
|
void gotoNextSyntaxIssue();
|
|
|
|
void gotoPrevSyntaxIssue();
|
|
|
|
bool hasPrevSyntaxIssue() const;
|
|
|
|
bool hasNextSyntaxIssue() const;
|
2021-06-24 16:05:19 +08:00
|
|
|
PSyntaxIssueList getSyntaxIssuesAtLine(int line);
|
|
|
|
PSyntaxIssue getSyntaxIssueAtPosition(const BufferCoord& pos);
|
2021-07-03 13:57:22 +08:00
|
|
|
int gutterClickedLine() const;
|
|
|
|
void toggleBreakpoint(int line);
|
2021-09-03 10:30:08 +08:00
|
|
|
void clearBreakpoints();
|
2021-07-03 13:57:22 +08:00
|
|
|
bool hasBreakpoint(int line);
|
2021-07-26 00:22:08 +08:00
|
|
|
void removeBreakpointFocus();
|
2021-09-03 10:30:08 +08:00
|
|
|
void modifyBreakpointProperty(int line);
|
2021-07-26 18:22:09 +08:00
|
|
|
void setActiveBreakpointFocus(int Line, bool setFocus=true);
|
2021-08-26 11:58:29 +08:00
|
|
|
QString getPreviousWordAtPositionForSuggestion(const BufferCoord& p);
|
2021-09-02 12:14:02 +08:00
|
|
|
void reformat();
|
|
|
|
void checkSyntaxInBack();
|
2021-09-03 11:50:04 +08:00
|
|
|
void gotoDeclaration(const BufferCoord& pos);
|
|
|
|
void gotoDefinition(const BufferCoord& pos);
|
2021-09-11 18:42:49 +08:00
|
|
|
void reparse();
|
2021-07-03 13:57:22 +08:00
|
|
|
|
2021-09-03 16:39:20 +08:00
|
|
|
const PCppParser &parser();
|
2021-08-23 17:27:17 +08:00
|
|
|
|
2021-09-02 12:14:02 +08:00
|
|
|
private slots:
|
2021-04-11 21:33:08 +08:00
|
|
|
void onModificationChanged(bool status) ;
|
2021-06-10 09:34:59 +08:00
|
|
|
void onStatusChanged(SynStatusChanges changes);
|
2021-07-03 13:57:22 +08:00
|
|
|
void onGutterClicked(Qt::MouseButton button, int x, int y, int line);
|
2021-08-29 22:08:43 +08:00
|
|
|
void onTipEvalValueReady(const QString& value);
|
2021-09-02 12:14:02 +08:00
|
|
|
void onLinesDeleted(int first,int count);
|
|
|
|
void onLinesInserted(int first,int count);
|
2021-04-11 12:39:22 +08:00
|
|
|
|
2021-06-21 16:25:21 +08:00
|
|
|
private:
|
2021-09-05 22:16:54 +08:00
|
|
|
void resetBreakpoints();
|
2021-06-22 23:00:34 +08:00
|
|
|
QChar getCurrentChar();
|
2021-06-22 13:24:26 +08:00
|
|
|
bool handleSymbolCompletion(QChar key);
|
2021-06-22 23:00:34 +08:00
|
|
|
bool handleParentheseCompletion();
|
|
|
|
bool handleParentheseSkip();
|
|
|
|
bool handleBracketCompletion();
|
|
|
|
bool handleBracketSkip();
|
|
|
|
bool handleMultilineCommentCompletion();
|
|
|
|
bool handleBraceCompletion();
|
|
|
|
bool handleBraceSkip();
|
|
|
|
bool handleSingleQuoteCompletion();
|
|
|
|
bool handleDoubleQuoteCompletion();
|
|
|
|
bool handleGlobalIncludeCompletion();
|
|
|
|
bool handleGlobalIncludeSkip();
|
2021-08-25 08:48:33 +08:00
|
|
|
|
2021-08-26 20:18:20 +08:00
|
|
|
bool handleCodeCompletion(QChar key);
|
2021-08-23 10:16:06 +08:00
|
|
|
void initParser();
|
2021-06-23 08:55:56 +08:00
|
|
|
void undoSymbolCompletion(int pos);
|
2021-06-22 13:24:26 +08:00
|
|
|
QuoteStatus getQuoteStatus();
|
2021-06-21 16:25:21 +08:00
|
|
|
|
2021-08-25 08:48:33 +08:00
|
|
|
void showCompletion(bool autoComplete);
|
2021-08-25 23:53:35 +08:00
|
|
|
void showHeaderCompletion(bool autoComplete);
|
2021-08-25 08:48:33 +08:00
|
|
|
|
2021-08-26 11:58:29 +08:00
|
|
|
bool testInFunc(int x,int y);
|
|
|
|
|
2021-08-26 17:48:23 +08:00
|
|
|
void completionInsert(bool appendFunc=false);
|
|
|
|
|
2021-08-29 10:14:07 +08:00
|
|
|
void headerCompletionInsert();
|
|
|
|
|
2021-08-26 17:48:23 +08:00
|
|
|
bool onCompletionKeyPressed(QKeyEvent* event);
|
2021-08-29 10:14:07 +08:00
|
|
|
bool onHeaderCompletionKeyPressed(QKeyEvent* event);
|
2021-08-26 17:48:23 +08:00
|
|
|
|
2021-08-29 17:23:40 +08:00
|
|
|
TipType getTipType(QPoint point, BufferCoord& pos);
|
|
|
|
void cancelHint();
|
|
|
|
QString getFileHint(const QString& s);
|
|
|
|
QString getParserHint(const QString& s, int line);
|
2021-08-29 22:08:43 +08:00
|
|
|
void showDebugHint(const QString& s,int line);
|
|
|
|
QString getErrorHint(const PSyntaxIssue& issue);
|
2021-08-29 17:23:40 +08:00
|
|
|
QString getHintForFunction(const PStatement& statement, const PStatement& scope,
|
|
|
|
const QString& filename, int line);
|
|
|
|
|
2021-08-30 19:52:38 +08:00
|
|
|
|
2021-04-06 23:10:57 +08:00
|
|
|
private:
|
2021-04-08 10:29:21 +08:00
|
|
|
QByteArray mEncodingOption; // the encoding type set by the user
|
|
|
|
QByteArray mFileEncoding; // the real encoding of the file (auto detected)
|
2021-04-06 23:10:57 +08:00
|
|
|
QString mFilename;
|
|
|
|
QTabWidget* mParentPageControl;
|
|
|
|
bool mInProject;
|
|
|
|
bool mIsNew;
|
2021-06-23 22:38:02 +08:00
|
|
|
QMap<int,PSyntaxIssueList> mSyntaxIssues;
|
2021-06-24 16:05:19 +08:00
|
|
|
QColor mSyntaxErrorColor;
|
2021-07-26 00:22:08 +08:00
|
|
|
QColor mSyntaxWarningColor;
|
|
|
|
QColor mActiveBreakpointForegroundColor;
|
|
|
|
QColor mActiveBreakpointBackgroundColor;
|
|
|
|
QColor mBreakpointForegroundColor;
|
|
|
|
QColor mBreakpointBackgroundColor;
|
2021-06-24 16:05:19 +08:00
|
|
|
int mSyntaxErrorLine;
|
2021-06-24 20:43:09 +08:00
|
|
|
int mLineCount;
|
2021-07-03 13:57:22 +08:00
|
|
|
int mGutterClickedLine;
|
|
|
|
QSet<int> mBreakpointLines;
|
2021-07-26 00:22:08 +08:00
|
|
|
int mActiveBreakpointLine;
|
2021-08-23 10:16:06 +08:00
|
|
|
PCppParser mParser;
|
2021-08-29 00:48:23 +08:00
|
|
|
std::shared_ptr<CodeCompletionPopup> mCompletionPopup;
|
2021-08-29 10:14:07 +08:00
|
|
|
std::shared_ptr<HeaderCompletionPopup> mHeaderCompletionPopup;
|
2021-08-25 08:48:33 +08:00
|
|
|
int mLastIdCharPressed;
|
2021-08-25 23:53:35 +08:00
|
|
|
bool mUseCppSyntax;
|
2021-08-29 17:23:40 +08:00
|
|
|
QString mCurrentWord;
|
2021-08-29 22:08:43 +08:00
|
|
|
QString mCurrentDebugTipWord;
|
2021-08-29 17:23:40 +08:00
|
|
|
TipType mCurrentTipType;
|
2021-08-31 14:41:48 +08:00
|
|
|
QString mOldSelectionWord;
|
|
|
|
QString mSelectionWord;
|
2021-04-09 17:48:25 +08:00
|
|
|
|
|
|
|
// QWidget interface
|
|
|
|
protected:
|
|
|
|
void wheelEvent(QWheelEvent *event) override;
|
2021-06-21 22:01:35 +08:00
|
|
|
void focusInEvent(QFocusEvent *event) override;
|
|
|
|
void focusOutEvent(QFocusEvent *event) override;
|
|
|
|
void keyPressEvent(QKeyEvent *event) override;
|
2021-06-24 16:05:19 +08:00
|
|
|
|
|
|
|
// SynEdit interface
|
|
|
|
protected:
|
|
|
|
void onGutterPaint(QPainter &painter, int aLine, int X, int Y) override;
|
|
|
|
void onGetEditingAreas(int Line, SynEditingAreaList &areaList) override;
|
2021-07-03 13:57:22 +08:00
|
|
|
|
|
|
|
// SynEdit interface
|
|
|
|
protected:
|
|
|
|
bool onGetSpecialLineColors(int Line, QColor &foreground, QColor &backgroundColor) override;
|
2021-08-28 09:01:40 +08:00
|
|
|
|
|
|
|
// SynEdit interface
|
|
|
|
protected:
|
2021-08-29 22:51:23 +08:00
|
|
|
void onPreparePaintHighlightToken(int line, int aChar, const QString &token, PSynHighlighterAttribute attr, SynFontStyles &style, QColor &foreground, QColor &background) override;
|
2021-08-29 17:23:40 +08:00
|
|
|
|
|
|
|
// QObject interface
|
|
|
|
public:
|
|
|
|
bool event(QEvent *event) override;
|
2021-08-30 13:30:42 +08:00
|
|
|
|
|
|
|
// QWidget interface
|
2021-09-10 12:37:02 +08:00
|
|
|
void setInProject(bool newInProject);
|
|
|
|
|
2021-08-30 13:30:42 +08:00
|
|
|
protected:
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
2021-04-06 23:10:57 +08:00
|
|
|
};
|
|
|
|
|
2021-09-03 16:39:20 +08:00
|
|
|
QString getWordAtPosition(SynEdit* editor,
|
|
|
|
const BufferCoord& p,
|
|
|
|
BufferCoord& pWordBegin,
|
|
|
|
BufferCoord& pWordEnd,
|
|
|
|
Editor::WordPurpose purpose);
|
|
|
|
|
|
|
|
|
2021-04-06 23:10:57 +08:00
|
|
|
#endif // EDITOR_H
|