2021-12-26 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-05-14 23:56:43 +08:00
|
|
|
#ifndef SYNEDITSTRINGLIST_H
|
|
|
|
#define SYNEDITSTRINGLIST_H
|
|
|
|
|
|
|
|
#include <QStringList>
|
|
|
|
#include "highlighter/base.h"
|
2022-04-19 21:18:41 +08:00
|
|
|
#include <QFontMetrics>
|
2021-10-17 21:09:50 +08:00
|
|
|
#include <QMutex>
|
2021-05-14 23:56:43 +08:00
|
|
|
#include <QVector>
|
|
|
|
#include <memory>
|
|
|
|
#include "MiscProcs.h"
|
|
|
|
#include "../utils.h"
|
|
|
|
#include "Types.h"
|
|
|
|
|
|
|
|
enum SynEditStringFlag {
|
|
|
|
sfHasTabs = 0x0001,
|
|
|
|
sfHasNoTabs = 0x0002,
|
|
|
|
sfExpandedLengthUnknown = 0x0004
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef int SynEditStringFlags;
|
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
struct SynDocumentLine {
|
2021-05-14 23:56:43 +08:00
|
|
|
QString fString;
|
|
|
|
void * fObject;
|
|
|
|
SynRangeState fRange;
|
2021-05-18 15:49:58 +08:00
|
|
|
int fColumns; //
|
2021-05-14 23:56:43 +08:00
|
|
|
|
|
|
|
public:
|
2022-04-19 21:18:41 +08:00
|
|
|
explicit SynDocumentLine();
|
2021-05-14 23:56:43 +08:00
|
|
|
};
|
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
typedef std::shared_ptr<SynDocumentLine> PSynDocumentLine;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
typedef QVector<PSynDocumentLine> SynDocumentLines;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
typedef std::shared_ptr<SynDocumentLines> PSynDocumentLines;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
class SynDocument;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
typedef std::shared_ptr<SynDocument> PSynDocument;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
|
|
|
class QFile;
|
2021-05-18 15:49:58 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
class SynDocument : public QObject
|
2021-05-14 23:56:43 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-04-19 21:18:41 +08:00
|
|
|
explicit SynDocument(const QFont& font, QObject* parent=nullptr);
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2021-10-17 21:09:50 +08:00
|
|
|
int parenthesisLevels(int Index);
|
|
|
|
int bracketLevels(int Index);
|
|
|
|
int braceLevels(int Index);
|
2021-05-18 15:49:58 +08:00
|
|
|
int lineColumns(int Index);
|
2021-10-17 21:09:50 +08:00
|
|
|
int leftBraces(int Index);
|
|
|
|
int rightBraces(int Index);
|
2021-05-14 23:56:43 +08:00
|
|
|
int lengthOfLongestLine();
|
2021-10-07 07:52:20 +08:00
|
|
|
QString lineBreak() const;
|
2021-10-24 15:17:31 +08:00
|
|
|
SynRangeState ranges(int Index);
|
2021-10-28 08:56:13 +08:00
|
|
|
void setRange(int Index, const SynRangeState& ARange);
|
2021-10-17 21:09:50 +08:00
|
|
|
QString getString(int Index);
|
|
|
|
int count();
|
|
|
|
void* getObject(int Index);
|
|
|
|
QString text();
|
2021-05-14 23:56:43 +08:00
|
|
|
void setText(const QString& text);
|
2021-09-03 16:39:20 +08:00
|
|
|
void setContents(const QStringList& text);
|
2021-10-17 21:09:50 +08:00
|
|
|
QStringList contents();
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2021-11-13 13:03:42 +08:00
|
|
|
void putString(int Index, const QString& s, bool notify=true);
|
2021-05-14 23:56:43 +08:00
|
|
|
void putObject(int Index, void * AObject);
|
|
|
|
|
|
|
|
void beginUpdate();
|
|
|
|
void endUpdate();
|
|
|
|
|
|
|
|
int add(const QString& s);
|
2021-06-21 22:01:35 +08:00
|
|
|
void addStrings(const QStringList& Strings);
|
2021-05-14 23:56:43 +08:00
|
|
|
|
|
|
|
int getTextLength();
|
|
|
|
void clear();
|
|
|
|
void deleteAt(int Index);
|
|
|
|
void deleteLines(int Index, int NumLines);
|
2021-10-17 21:09:50 +08:00
|
|
|
void exchange(int Index1, int Index2);
|
|
|
|
void insert(int Index, const QString& s);
|
|
|
|
void insertLines(int Index, int NumLines);
|
|
|
|
void insertStrings(int Index, const QStringList& NewStrings);
|
|
|
|
void insertText(int Index,const QString& NewText);
|
|
|
|
void loadFromFile(const QString& filename, const QByteArray& encoding, QByteArray& realEncoding);
|
2021-10-24 13:03:54 +08:00
|
|
|
void saveToFile(QFile& file, const QByteArray& encoding,
|
|
|
|
const QByteArray& defaultEncoding, QByteArray& realEncoding);
|
2022-04-19 21:18:41 +08:00
|
|
|
int stringColumns(const QString& line, int colsBefore) const;
|
|
|
|
int charColumns(QChar ch) const;
|
2021-10-17 21:09:50 +08:00
|
|
|
|
|
|
|
bool getAppendNewLineAtEOF();
|
2021-05-14 23:56:43 +08:00
|
|
|
void setAppendNewLineAtEOF(bool appendNewLineAtEOF);
|
|
|
|
|
2021-10-17 21:09:50 +08:00
|
|
|
FileEndingType getFileEndingType();
|
2021-05-14 23:56:43 +08:00
|
|
|
void setFileEndingType(const FileEndingType &fileEndingType);
|
2021-05-24 00:41:00 +08:00
|
|
|
|
|
|
|
bool empty();
|
2021-06-07 11:02:03 +08:00
|
|
|
|
|
|
|
void resetColumns();
|
2022-04-19 21:18:41 +08:00
|
|
|
int tabWidth() const {
|
|
|
|
return mTabWidth;
|
|
|
|
}
|
|
|
|
void setTabWidth(int newTabWidth);
|
|
|
|
|
|
|
|
const QFontMetrics &fontMetrics() const;
|
|
|
|
void setFontMetrics(const QFont &newFont);
|
|
|
|
|
2021-05-18 15:49:58 +08:00
|
|
|
public slots:
|
|
|
|
void invalidAllLineColumns();
|
2021-05-14 23:56:43 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
void changing();
|
|
|
|
void cleared();
|
|
|
|
void deleted(int index, int count);
|
|
|
|
void inserted(int index, int count);
|
|
|
|
void putted(int index, int count);
|
|
|
|
protected:
|
2021-10-07 07:52:20 +08:00
|
|
|
QString getTextStr() const;
|
2021-10-17 21:09:50 +08:00
|
|
|
void setUpdateState(bool Updating);
|
|
|
|
void insertItem(int Index, const QString& s);
|
2021-05-24 00:41:00 +08:00
|
|
|
void addItem(const QString& s);
|
2021-10-17 21:09:50 +08:00
|
|
|
void putTextStr(const QString& text);
|
|
|
|
void internalClear();
|
2022-03-12 17:37:53 +08:00
|
|
|
private:
|
|
|
|
bool tryLoadFileByEncoding(QByteArray encodingName, QFile& file);
|
2021-05-14 23:56:43 +08:00
|
|
|
|
|
|
|
private:
|
2022-04-19 21:18:41 +08:00
|
|
|
SynDocumentLines mLines;
|
|
|
|
|
|
|
|
//SynEdit* mEdit;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2022-04-19 21:18:41 +08:00
|
|
|
QFontMetrics mFontMetrics;
|
|
|
|
int mTabWidth;
|
|
|
|
int mCharWidth;
|
2021-05-14 23:56:43 +08:00
|
|
|
//int mCount;
|
|
|
|
//int mCapacity;
|
|
|
|
FileEndingType mFileEndingType;
|
|
|
|
bool mAppendNewLineAtEOF;
|
|
|
|
int mIndexOfLongestLine;
|
|
|
|
int mUpdateCount;
|
2022-01-04 16:50:54 +08:00
|
|
|
QMutex mMutex;
|
2021-05-14 23:56:43 +08:00
|
|
|
|
2021-05-18 15:49:58 +08:00
|
|
|
int calculateLineColumns(int Index);
|
2021-05-14 23:56:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class SynChangeReason {crInsert, crPaste, crDragDropInsert,
|
|
|
|
//several undo entries can be chained together via the ChangeNumber
|
|
|
|
//see also TCustomSynEdit.[Begin|End]UndoBlock methods
|
|
|
|
crDeleteAfterCursor, crDelete,
|
|
|
|
crLineBreak, crIndent, crUnindent,
|
|
|
|
crSilentDelete, crSilentDeleteAfterCursor,
|
|
|
|
crAutoCompleteBegin, crAutoCompleteEnd,
|
|
|
|
crPasteBegin, crPasteEnd, //for pasting, since it might do a lot of operations
|
|
|
|
crSpecial1Begin, crSpecial1End,
|
|
|
|
crSpecial2Begin, crSpecial2End,
|
|
|
|
crCaret, //just restore the Caret, allowing better Undo behavior
|
|
|
|
crSelection, //restore Selection
|
|
|
|
crNothing,
|
|
|
|
crGroupBreak,
|
2022-04-01 23:10:38 +08:00
|
|
|
crDeleteAll,
|
|
|
|
crMoveSelectionUp,
|
|
|
|
crMoveSelectionDown
|
2021-05-14 23:56:43 +08:00
|
|
|
};
|
|
|
|
class SynEditUndoItem {
|
|
|
|
private:
|
|
|
|
SynChangeReason mChangeReason;
|
|
|
|
SynSelectionMode mChangeSelMode;
|
|
|
|
BufferCoord mChangeStartPos;
|
|
|
|
BufferCoord mChangeEndPos;
|
|
|
|
QString mChangeStr;
|
|
|
|
int mChangeNumber;
|
|
|
|
public:
|
|
|
|
SynEditUndoItem(SynChangeReason reason,
|
|
|
|
SynSelectionMode selMode,
|
|
|
|
BufferCoord startPos,
|
|
|
|
BufferCoord endPos,
|
|
|
|
const QString& str,
|
|
|
|
int number);
|
|
|
|
|
|
|
|
SynChangeReason changeReason() const;
|
|
|
|
SynSelectionMode changeSelMode() const;
|
|
|
|
BufferCoord changeStartPos() const;
|
|
|
|
BufferCoord changeEndPos() const;
|
|
|
|
QString changeStr() const;
|
|
|
|
int changeNumber() const;
|
|
|
|
};
|
|
|
|
using PSynEditUndoItem = std::shared_ptr<SynEditUndoItem>;
|
|
|
|
|
|
|
|
class SynEditUndoList : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SynEditUndoList();
|
|
|
|
|
|
|
|
void AddChange(SynChangeReason AReason, const BufferCoord& AStart, const BufferCoord& AEnd,
|
|
|
|
const QString& ChangeText, SynSelectionMode SelMode);
|
|
|
|
|
|
|
|
void AddGroupBreak();
|
|
|
|
void BeginBlock();
|
|
|
|
void Clear();
|
|
|
|
void DeleteItem(int index);
|
|
|
|
void EndBlock();
|
|
|
|
SynChangeReason LastChangeReason();
|
2022-03-01 23:35:01 +08:00
|
|
|
bool isEmpty();
|
2021-05-14 23:56:43 +08:00
|
|
|
void Lock();
|
|
|
|
PSynEditUndoItem PeekItem();
|
|
|
|
PSynEditUndoItem PopItem();
|
|
|
|
void PushItem(PSynEditUndoItem Item);
|
|
|
|
void Unlock();
|
|
|
|
|
|
|
|
bool CanUndo();
|
|
|
|
int ItemCount();
|
|
|
|
|
|
|
|
int maxUndoActions() const;
|
|
|
|
void setMaxUndoActions(int maxUndoActions);
|
|
|
|
bool initialState();
|
|
|
|
PSynEditUndoItem item(int index);
|
|
|
|
void setInitialState(const bool Value);
|
|
|
|
void setItem(int index, PSynEditUndoItem Value);
|
|
|
|
|
|
|
|
int blockChangeNumber() const;
|
|
|
|
void setBlockChangeNumber(int blockChangeNumber);
|
|
|
|
|
|
|
|
int blockCount() const;
|
|
|
|
|
|
|
|
bool insideRedo() const;
|
|
|
|
void setInsideRedo(bool insideRedo);
|
|
|
|
|
|
|
|
bool fullUndoImposible() const;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void addedUndo();
|
2021-10-18 22:06:33 +08:00
|
|
|
protected:
|
2022-03-20 18:10:53 +08:00
|
|
|
void ensureMaxEntries();
|
2021-05-14 23:56:43 +08:00
|
|
|
protected:
|
|
|
|
int mBlockChangeNumber;
|
|
|
|
int mBlockCount;
|
|
|
|
bool mFullUndoImposible;
|
|
|
|
QVector<PSynEditUndoItem> mItems;
|
|
|
|
int mLockCount;
|
|
|
|
int mMaxUndoActions;
|
|
|
|
int mNextChangeNumber;
|
|
|
|
int mInitialChangeNumber;
|
|
|
|
bool mInsideRedo;
|
|
|
|
};
|
|
|
|
|
|
|
|
using PSynEditUndoList = std::shared_ptr<SynEditUndoList>;
|
|
|
|
|
|
|
|
#endif // SYNEDITSTRINGLIST_H
|