2021-05-14 23:56:43 +08:00
# ifndef SYNEDIT_H
# define SYNEDIT_H
# include <QAbstractScrollArea>
# include <QCursor>
# include <QDateTime>
# include <QFrame>
# include <QStringList>
# include <QTimer>
# include <QWidget>
# include "MiscClasses.h"
# include "CodeFolding.h"
# include "Types.h"
# include "TextBuffer.h"
# include "KeyStrokes.h"
2021-08-02 17:24:11 +08:00
# include "SearchBase.h"
2021-05-14 23:56:43 +08:00
enum class SynFontSmoothMethod {
None , AntiAlias , ClearType
} ;
enum class SynScrollHintFormat {
shfTopLineOnly , shfTopToBottom
} ;
enum class SynScrollStyle {
ssNone , ssHorizontal , ssVertical , ssBoth
} ;
enum class SynEditCaretType {
2021-06-07 11:02:03 +08:00
ctVerticalLine = 0 , ctHorizontalLine = 1 , ctHalfBlock = 2 , ctBlock = 3
2021-05-14 23:56:43 +08:00
} ;
2021-06-10 09:34:59 +08:00
enum SynStatusChange {
2021-05-14 23:56:43 +08:00
scNone = 0 ,
scAll = 0x0001 ,
scCaretX = 0x0002 ,
scCaretY = 0x0004 ,
scLeftChar = 0x0008 ,
scTopLine = 0x0010 ,
scInsertMode = 0x0020 ,
scModified = 0x0040 ,
scSelection = 0x0080 ,
scReadOnly = 0x0100 ,
scOpenFile = 0x0200
} ;
Q_DECLARE_FLAGS ( SynStatusChanges , SynStatusChange )
Q_DECLARE_OPERATORS_FOR_FLAGS ( SynStatusChanges )
enum class SynStateFlag {
sfCaretChanged = 0x0001 ,
sfScrollbarChanged = 0x0002 ,
sfLinesChanging = 0x0004 ,
sfIgnoreNextChar = 0x0008 ,
sfCaretVisible = 0x0010 ,
sfDblClicked = 0x0020 ,
sfWaitForDragging = 0x0040
} ;
Q_DECLARE_FLAGS ( SynStateFlags , SynStateFlag )
Q_DECLARE_OPERATORS_FOR_FLAGS ( SynStateFlags )
enum SynEditorOption {
eoAltSetsColumnMode = 0x00000001 , //Holding down the Alt Key will put the selection mode into columnar format
2021-06-08 21:41:42 +08:00
eoAutoIndent = 0x00000002 , //Will indent the caret on new lines with the same amount of leading white space as the preceding line
eoAddIndent = 0x00000004 , //Will add one tab width of indent when typing { and :, and remove the same amount when typing }
eoDragDropEditing = 0x00000008 , //Allows you to select a block of text and drag it within the document to another location
eoDropFiles = 0x00000010 , //Allows the editor accept OLE file drops
eoEnhanceHomeKey = 0x00000020 , //enhances home key positioning, similar to visual studio
eoEnhanceEndKey = 0x00000040 , //enhances End key positioning, similar to JDeveloper
eoGroupUndo = 0x00000080 , //When undoing/redoing actions, handle all continous changes of the same kind in one call instead undoing/redoing each command separately
eoHalfPageScroll = 0x00000100 , //When scrolling with page-up and page-down commands, only scroll a half page at a time
eoHideShowScrollbars = 0x00000200 , //if enabled, then the scrollbars will only show when necessary. If you have ScrollPastEOL, then it the horizontal bar will always be there (it uses MaxLength instead)
eoKeepCaretX = 0x00000400 , //When moving through lines w/o Cursor Past EOL, keeps the X position of the cursor
eoRightMouseMovesCursor = 0x00000800 , //When clicking with the right mouse for a popup menu, move the cursor to that location
eoScrollByOneLess = 0x00001000 , //Forces scrolling to be one less
eoScrollPastEof = 0x00002000 , //Allows the cursor to go past the end of file marker
eoScrollPastEol = 0x00004000 , //Allows the cursor to go past the last character into the white space at the end of a line
eoShowSpecialChars = 0x00008000 , //Shows the special Characters
eoSpecialLineDefaultFg = 0x00010000 , //disables the foreground text color override when using the OnSpecialLineColor event
eoTabIndent = 0x00020000 , //When active <Tab> and <Shift><Tab> act as block indent, unindent when text is selected
eoTabsToSpaces = 0x00040000 , //Converts a tab character to a specified number of space characters
eoShowRainbowColor = 0x00080000 ,
eoTrimTrailingSpaces = 0x00100000 , //Spaces at the end of lines will be trimmed and not saved
eoSelectWordByDblClick = 0x00200000 ,
eoNoSelection = 0x00400000 , //Disables selecting text
//eoAutoSizeMaxScrollWidth = 0x00000008, //Automatically resizes the MaxScrollWidth property when inserting text
//eoDisableScrollArrows = 0x00000010 , //Disables the scroll bar arrow buttons when you can't scroll in that direction any more
// eoScrollHintFollows = 0x00020000, //The scroll hint follows the mouse when scrolling vertically
// eoShowScrollHint = 0x00100000, //Shows a hint of the visible line numbers when scrolling vertically
// eoSmartTabDelete = 0x00400000, //similar to Smart Tabs, but when you delete characters
// eoSmartTabs = 0x00800000, //When tabbing, the cursor will go to the next non-white space character of the previous line
// eoNoCaret = 0x00000800, //Makes it so the caret is never visible
2021-05-14 23:56:43 +08:00
} ;
Q_DECLARE_FLAGS ( SynEditorOptions , SynEditorOption )
Q_DECLARE_OPERATORS_FOR_FLAGS ( SynEditorOptions )
2021-08-04 09:13:41 +08:00
enum class SynSearchAction {
Replace ,
ReplaceAll ,
Skip ,
Exit
2021-05-14 23:56:43 +08:00
} ;
enum class SynTransientType {
ttBefore , ttAfter
} ;
enum class SynScrollBarKind {
sbHorizontal , sbVertical
} ;
/*
using SynPaintTransientProc = std : : function < void ( const QPaintDevice & paintDevice ,
SynTransientType transientType ) > ;
*/
using SynPlaceMarkProc = std : : function < void ( PSynEditMark & Mark ) > ;
using SynProcessCommandProc = std : : function < void ( SynEditorCommand & command , QChar & AChar , void * data ) > ;
using SynMouseCursorProc = std : : function < void ( const BufferCoord & aLineCharPos , QCursor & aCursor ) > ;
using SynPaintProc = std : : function < void ( const QPaintDevice & paintDevice ) > ;
2021-08-28 09:01:40 +08:00
//using SynPreparePaintHighlightTokenProc = std::function<void(int row,
// int column, const QString& token, PSynHighlighterAttribute attr,
// SynFontStyles& style, QColor& foreground, QColor& background)>;
2021-08-04 09:13:41 +08:00
using SynSearchMathedProc = std : : function < SynSearchAction ( const QString & sSearch ,
const QString & sReplace , int Line , int ch , int wordLen ) > ;
2021-05-14 23:56:43 +08:00
class SynEdit ;
using PSynEdit = std : : shared_ptr < SynEdit > ;
class SynEdit : public QAbstractScrollArea
{
Q_OBJECT
public :
explicit SynEdit ( QWidget * parent = nullptr ) ;
2021-05-24 00:41:00 +08:00
/**
2021-05-27 20:33:25 +08:00
* Returns how many rows are there in the editor
2021-05-24 00:41:00 +08:00
* @ return
*/
2021-06-08 21:41:42 +08:00
int displayLineCount ( ) const ;
2021-05-27 20:33:25 +08:00
/**
* @ brief displayX
* @ return
*/
2021-06-08 21:41:42 +08:00
DisplayCoord displayXY ( ) const ;
int displayX ( ) const ;
int displayY ( ) const ;
BufferCoord caretXY ( ) const ;
int caretX ( ) const ;
int caretY ( ) const ;
2021-05-14 23:56:43 +08:00
void invalidateGutter ( ) ;
void invalidateGutterLine ( int aLine ) ;
void invalidateGutterLines ( int FirstLine , int LastLine ) ;
2021-06-08 21:41:42 +08:00
DisplayCoord pixelsToNearestRowColumn ( int aX , int aY ) const ;
DisplayCoord pixelsToRowColumn ( int aX , int aY ) const ;
QPoint RowColumnToPixels ( const DisplayCoord & coord ) const ;
DisplayCoord bufferToDisplayPos ( const BufferCoord & p ) const ;
BufferCoord displayToBufferPos ( const DisplayCoord & p ) const ;
int leftSpaces ( const QString & line ) const ;
QString GetLeftSpacing ( int charCount , bool wantTabs ) const ;
int charToColumn ( int aLine , int aChar ) const ;
int charToColumn ( const QString & s , int aChar ) const ;
int columnToChar ( int aLine , int aColumn ) const ;
int stringColumns ( const QString & line , int colsBefore ) const ;
int getLineIndent ( const QString & line ) const ;
int rowToLine ( int aRow ) const ;
int lineToRow ( int aLine ) const ;
int foldRowToLine ( int Row ) const ;
int foldLineToRow ( int Line ) const ;
2021-05-14 23:56:43 +08:00
void setDefaultKeystrokes ( ) ;
void invalidateLine ( int Line ) ;
void invalidateLines ( int FirstLine , int LastLine ) ;
void invalidateSelection ( ) ;
void invalidateRect ( const QRect & rect ) ;
void invalidate ( ) ;
void lockPainter ( ) ;
void unlockPainter ( ) ;
2021-06-08 21:41:42 +08:00
bool selAvail ( ) const ;
2021-08-01 01:06:43 +08:00
QString WordAtCursor ( ) ;
QString WordAtRowCol ( const BufferCoord & XY ) ;
2021-06-03 20:26:36 +08:00
2021-06-08 21:41:42 +08:00
int charColumns ( QChar ch ) const ;
double dpiFactor ( ) const ;
bool IsPointInSelection ( const BufferCoord & Value ) const ;
2021-05-29 21:35:46 +08:00
BufferCoord NextWordPos ( ) ;
BufferCoord NextWordPosEx ( const BufferCoord & XY ) ;
BufferCoord WordStart ( ) ;
BufferCoord WordStartEx ( const BufferCoord & XY ) ;
BufferCoord WordEnd ( ) ;
BufferCoord WordEndEx ( const BufferCoord & XY ) ;
BufferCoord PrevWordPos ( ) ;
BufferCoord PrevWordPosEx ( const BufferCoord & XY ) ;
2021-06-03 20:26:36 +08:00
void CommandProcessor ( SynEditorCommand Command , QChar AChar = QChar ( ) , void * pData = nullptr ) ;
//Caret
void showCaret ( ) ;
void hideCaret ( ) ;
void setCaretX ( int value ) ;
void setCaretY ( int value ) ;
void setCaretXY ( const BufferCoord & value ) ;
void setCaretXYEx ( bool CallEnsureCursorPos , BufferCoord value ) ;
void setCaretXYCentered ( bool ForceToMiddle , const BufferCoord & value ) ;
2021-08-05 12:31:53 +08:00
void setCaretAndSelection ( const BufferCoord & ptCaret ,
const BufferCoord & ptBefore ,
const BufferCoord & ptAfter ) ;
2021-06-24 16:05:19 +08:00
void uncollapseAroundLine ( int line ) ;
PSynEditFoldRange foldHidesLine ( int line ) ;
2021-07-02 10:32:29 +08:00
void setSelText ( const QString & Value ) ;
2021-08-26 17:48:23 +08:00
void setSelLength ( int Value ) ;
2021-08-04 09:13:41 +08:00
int searchReplace ( const QString & sSearch , const QString & sReplace , SynSearchOptions options ,
2021-08-03 23:55:57 +08:00
PSynSearchBase searchEngine , SynSearchMathedProc matchedCallback = nullptr ) ;
2021-08-02 17:24:11 +08:00
2021-06-08 21:41:42 +08:00
int maxScrollWidth ( ) const ;
int maxScrollHeight ( ) const ;
2021-06-03 20:26:36 +08:00
bool GetHighlighterAttriAtRowCol ( const BufferCoord & XY , QString & Token ,
PSynHighlighterAttribute & Attri ) ;
bool GetHighlighterAttriAtRowCol ( const BufferCoord & XY , QString & Token ,
bool & tokenFinished , SynHighlighterTokenType & TokenType ,
PSynHighlighterAttribute & Attri ) ;
bool GetHighlighterAttriAtRowColEx ( const BufferCoord & XY , QString & Token ,
SynHighlighterTokenType & TokenType , SynTokenKind & TokenKind , int & Start ,
PSynHighlighterAttribute & Attri ) ;
2021-06-08 21:41:42 +08:00
2021-06-03 20:26:36 +08:00
//Commands
2021-06-12 22:36:23 +08:00
virtual void cutToClipboard ( ) { CommandProcessor ( SynEditorCommand : : ecCut ) ; }
virtual void copyToClipboard ( ) { CommandProcessor ( SynEditorCommand : : ecCopy ) ; }
virtual void pasteFromClipboard ( ) { CommandProcessor ( SynEditorCommand : : ecPaste ) ; }
virtual void undo ( ) { CommandProcessor ( SynEditorCommand : : ecUndo ) ; }
virtual void redo ( ) { CommandProcessor ( SynEditorCommand : : ecRedo ) ; }
virtual void zoomIn ( ) { CommandProcessor ( SynEditorCommand : : ecZoomIn ) ; }
virtual void zoomOut ( ) { CommandProcessor ( SynEditorCommand : : ecZoomOut ) ; }
2021-06-21 11:21:26 +08:00
virtual void selectAll ( ) { CommandProcessor ( SynEditorCommand : : ecSelectAll ) ; }
virtual void tab ( ) { CommandProcessor ( SynEditorCommand : : ecTab ) ; }
virtual void untab ( ) { CommandProcessor ( SynEditorCommand : : ecShiftTab ) ; }
virtual void toggleComment ( ) { CommandProcessor ( SynEditorCommand : : ecToggleComment ) ; }
2021-06-03 20:26:36 +08:00
2021-06-22 23:00:34 +08:00
virtual void beginUpdate ( ) ;
virtual void endUpdate ( ) ;
virtual BufferCoord getMatchingBracket ( ) ;
virtual BufferCoord getMatchingBracketEx ( BufferCoord APoint ) ;
2021-08-29 17:23:40 +08:00
bool GetPositionOfMouse ( BufferCoord & aPos ) ;
bool GetLineOfMouse ( int & line ) ;
bool PointToCharLine ( const QPoint & point , BufferCoord & coord ) ;
bool PointToLine ( const QPoint & point , int & line ) ;
2021-09-03 16:39:20 +08:00
bool isIdentChar ( const QChar & ch ) ;
2021-08-29 17:23:40 +08:00
2021-05-14 23:56:43 +08:00
2021-05-27 20:33:25 +08:00
// setter && getters
2021-05-14 23:56:43 +08:00
int topLine ( ) const ;
void setTopLine ( int value ) ;
int linesInWindow ( ) const ;
int leftChar ( ) const ;
void setLeftChar ( int Value ) ;
BufferCoord blockBegin ( ) const ;
BufferCoord blockEnd ( ) const ;
2021-08-26 17:48:23 +08:00
void setBlockBegin ( BufferCoord value ) ;
void setBlockEnd ( BufferCoord Value ) ;
2021-05-14 23:56:43 +08:00
SynSelectionMode activeSelectionMode ( ) const ;
void setActiveSelectionMode ( const SynSelectionMode & Value ) ;
int charsInWindow ( ) const ;
int charWidth ( ) const ;
int gutterWidth ( ) const ;
void setGutterWidth ( int value ) ;
bool modified ( ) const ;
void setModified ( bool Value ) ;
2021-05-27 20:33:25 +08:00
PSynHighlighter highlighter ( ) const ;
void setHighlighter ( const PSynHighlighter & highlighter ) ;
bool useCodeFolding ( ) const ;
void setUseCodeFolding ( bool value ) ;
2021-06-24 22:33:57 +08:00
SynEditCodeFolding & codeFolding ( ) ;
2021-05-27 20:33:25 +08:00
QString lineText ( ) ;
void setLineText ( const QString s ) ;
2021-05-24 00:41:00 +08:00
PSynEditStringList lines ( ) const ;
bool empty ( ) ;
2021-05-27 23:45:22 +08:00
SynSelectionMode selectionMode ( ) const ;
void setSelectionMode ( SynSelectionMode value ) ;
2021-05-29 21:35:46 +08:00
QString selText ( ) ;
QString lineBreak ( ) ;
2021-06-07 11:02:03 +08:00
SynEditorOptions getOptions ( ) const ;
void setOptions ( const SynEditorOptions & Value ) ;
2021-06-12 22:36:23 +08:00
int tabWidth ( ) const ;
2021-06-07 11:02:03 +08:00
void setTabWidth ( int tabWidth ) ;
2021-06-12 22:36:23 +08:00
QColor caretColor ( ) const ;
2021-06-07 11:02:03 +08:00
void setCaretColor ( const QColor & caretColor ) ;
2021-06-12 22:36:23 +08:00
QColor activeLineColor ( ) const ;
2021-06-07 11:02:03 +08:00
void setActiveLineColor ( const QColor & activeLineColor ) ;
2021-06-12 22:36:23 +08:00
SynEditCaretType overwriteCaret ( ) const ;
2021-06-07 11:02:03 +08:00
void setOverwriteCaret ( const SynEditCaretType & overwriteCaret ) ;
2021-06-12 22:36:23 +08:00
SynEditCaretType insertCaret ( ) const ;
2021-06-07 11:02:03 +08:00
void setInsertCaret ( const SynEditCaretType & insertCaret ) ;
2021-06-09 17:12:23 +08:00
SynGutter & gutter ( ) ;
2021-06-12 22:36:23 +08:00
bool readOnly ( ) const ;
void setReadOnly ( bool readOnly ) ;
void setInsertMode ( bool value ) ;
bool insertMode ( ) const ;
bool canUndo ( ) const ;
bool canRedo ( ) const ;
2021-06-24 16:05:19 +08:00
int textHeight ( ) const ;
2021-08-28 09:01:40 +08:00
const QColor & selectedForeground ( ) const ;
void setSelectedForeground ( const QColor & newSelectedForeground ) ;
const QColor & selectedBackground ( ) const ;
void setSelectedBackground ( const QColor & newSelectedBackground ) ;
2021-09-04 00:13:42 +08:00
int rightEdge ( ) const ;
void setRightEdge ( int newRightEdge ) ;
const QColor & rightEdgeColor ( ) const ;
void setRightEdgeColor ( const QColor & newRightEdgeColor ) ;
2021-05-14 23:56:43 +08:00
signals :
2021-09-02 12:14:02 +08:00
void linesDeleted ( int FirstLine , int Count ) ;
void linesInserted ( int FirstLine , int Count ) ;
2021-05-14 23:56:43 +08:00
void Changed ( ) ;
void ChainUndoAdded ( ) ;
void ChainRedoAdded ( ) ;
void ChainLinesChanging ( ) ;
void ChainLinesChanged ( ) ;
void ChainListCleared ( ) ;
void ChainListDeleted ( int Index , int Count ) ;
void ChainListInserted ( int Index , int Count ) ;
void ChainListPutted ( int Index , int Count ) ;
void FilesDropped ( int X , int Y , const QStringList & AFiles ) ;
2021-06-09 17:12:23 +08:00
void gutterClicked ( Qt : : MouseButton button , int x , int y , int line ) ;
2021-05-14 23:56:43 +08:00
void ImeInputed ( const QString & s ) ;
void contextHelp ( const QString & word ) ;
void scrolled ( SynScrollBarKind ScrollBar ) ;
void statusChanged ( SynStatusChanges changes ) ;
2021-05-18 15:49:58 +08:00
void fontChanged ( ) ;
void tabSizeChanged ( ) ;
2021-05-21 23:33:53 +08:00
protected :
2021-05-24 00:41:00 +08:00
virtual bool onGetSpecialLineColors ( int Line ,
2021-05-21 23:33:53 +08:00
QColor & foreground , QColor & backgroundColor ) ;
2021-05-24 00:41:00 +08:00
virtual void onGetEditingAreas ( int Line , SynEditingAreaList & areaList ) ;
2021-05-21 23:33:53 +08:00
virtual void onGutterGetText ( int aLine , QString & aText ) ;
2021-05-24 00:41:00 +08:00
virtual void onGutterPaint ( QPainter & painter , int aLine , int X , int Y ) ;
virtual void onPaint ( QPainter & painter ) ;
2021-08-29 22:51:23 +08:00
virtual void onPreparePaintHighlightToken ( int line ,
int aChar , const QString & token , PSynHighlighterAttribute attr ,
2021-08-28 09:01:40 +08:00
SynFontStyles & style , QColor & foreground , QColor & background ) ;
2021-05-27 20:33:25 +08:00
virtual void onProcessCommand ( SynEditorCommand Command , QChar AChar , void * pData ) ;
virtual void onCommandProcessed ( SynEditorCommand Command , QChar AChar , void * pData ) ;
virtual void ExecuteCommand ( SynEditorCommand Command , QChar AChar , void * pData ) ;
2021-05-24 00:41:00 +08:00
2021-05-14 23:56:43 +08:00
private :
void clearAreaList ( SynEditingAreaList areaList ) ;
void computeCaret ( int X , int Y ) ;
void computeScroll ( int X , int Y ) ;
void incPaintLock ( ) ;
void decPaintLock ( ) ;
bool mouseCapture ( ) ;
int clientWidth ( ) ;
int clientHeight ( ) ;
int clientTop ( ) ;
int clientLeft ( ) ;
QRect clientRect ( ) ;
void synFontChanged ( ) ;
void doOnPaintTransient ( SynTransientType TransientType ) ;
void updateLastCaretX ( ) ;
void ensureCursorPosVisible ( ) ;
void ensureCursorPosVisibleEx ( bool ForceToMiddle ) ;
void scrollWindow ( int dx , int dy ) ;
void setInternalDisplayXY ( const DisplayCoord & aPos ) ;
void internalSetCaretXY ( const BufferCoord & Value ) ;
2021-05-29 21:35:46 +08:00
void internalSetCaretX ( int Value ) ;
void internalSetCaretY ( int Value ) ;
2021-05-14 23:56:43 +08:00
void setStatusChanged ( SynStatusChanges changes ) ;
void doOnStatusChange ( SynStatusChanges changes ) ;
void insertBlock ( const BufferCoord & BB , const BufferCoord & BE , const QString & ChangeStr ,
bool AddToUndoList ) ;
void updateScrollbars ( ) ;
void updateCaret ( ) ;
void recalcCharExtent ( ) ;
QString expandAtWideGlyphs ( const QString & S ) ;
void updateModifiedStatus ( ) ;
int scanFrom ( int Index ) ;
2021-06-21 22:01:35 +08:00
void scanRanges ( ) ;
2021-05-14 23:56:43 +08:00
void uncollapse ( PSynEditFoldRange FoldRange ) ;
2021-06-09 17:12:23 +08:00
void collapse ( PSynEditFoldRange FoldRange ) ;
2021-05-14 23:56:43 +08:00
void foldOnListInserted ( int Line , int Count ) ;
void foldOnListDeleted ( int Line , int Count ) ;
void foldOnListCleared ( ) ;
void rescan ( ) ; // rescan for folds
void rescanForFoldRanges ( ) ;
void scanForFoldRanges ( PSynEditFoldRanges TopFoldRanges ) ;
int lineHasChar ( int Line , int startChar , QChar character , const QString & highlighterAttrName ) ;
2021-05-27 01:05:49 +08:00
void findSubFoldRange ( PSynEditFoldRanges TopFoldRanges , int FoldIndex , PSynEditFoldRanges & parentFoldRanges , PSynEditFoldRange Parent ) ;
2021-05-14 23:56:43 +08:00
PSynEditFoldRange collapsedFoldStartAtLine ( int Line ) ;
void doOnPaintTransientEx ( SynTransientType TransientType , bool Lock ) ;
void initializeCaret ( ) ;
2021-05-21 23:33:53 +08:00
PSynEditFoldRange foldStartAtLine ( int Line ) ;
QString substringByColumns ( const QString & s , int startColumn , int & colLen ) ;
PSynEditFoldRange foldAroundLine ( int Line ) ;
PSynEditFoldRange foldAroundLineEx ( int Line , bool WantCollapsed , bool AcceptFromLine , bool AcceptToLine ) ;
2021-05-24 00:41:00 +08:00
PSynEditFoldRange checkFoldRange ( SynEditFoldRanges * FoldRangeToCheck , int Line , bool WantCollapsed , bool AcceptFromLine , bool AcceptToLine ) ;
PSynEditFoldRange foldEndAtLine ( int Line ) ;
void paintCaret ( QPainter & painter , const QRect rcClip ) ;
2021-06-08 21:41:42 +08:00
int textOffset ( ) const ;
2021-05-27 20:33:25 +08:00
SynEditorCommand TranslateKeyCode ( int key , Qt : : KeyboardModifiers modifiers ) ;
/**
* Move the caret to right DX columns
* @ param DX
* @ param SelectionCommand
*/
void MoveCaretHorz ( int DX , bool isSelection ) ;
2021-05-27 21:39:18 +08:00
void MoveCaretVert ( int DY , bool isSelection ) ;
2021-05-27 20:33:25 +08:00
void MoveCaretAndSelection ( const BufferCoord & ptBefore , const BufferCoord & ptAfter ,
bool isSelection ) ;
void MoveCaretToLineStart ( bool isSelection ) ;
void MoveCaretToLineEnd ( bool isSelection ) ;
2021-05-29 21:35:46 +08:00
void SetSelectedTextEmpty ( ) ;
void SetSelTextPrimitive ( const QString & aValue ) ;
void SetSelTextPrimitiveEx ( SynSelectionMode PasteMode ,
const QString & Value , bool AddToUndoList ) ;
2021-09-02 12:14:02 +08:00
void doLinesDeleted ( int FirstLine , int Count ) ;
void doLinesInserted ( int FirstLine , int Count ) ;
2021-05-29 21:35:46 +08:00
void ProperSetLine ( int ALine , const QString & ALineText ) ;
void DeleteSelection ( const BufferCoord & BB , const BufferCoord & BE ) ;
2021-06-03 20:26:36 +08:00
void InsertText ( const QString & Value , SynSelectionMode PasteMode , bool AddToUndoList ) ;
int InsertTextByNormalMode ( const QString & Value ) ;
int InsertTextByColumnMode ( const QString & Value , bool AddToUndoList ) ;
int InsertTextByLineMode ( const QString & Value ) ;
void DeleteFromTo ( const BufferCoord & start , const BufferCoord & end ) ;
void SetSelWord ( ) ;
void SetWordBlock ( BufferCoord Value ) ;
2021-08-05 12:31:53 +08:00
2021-06-03 20:26:36 +08:00
2021-06-09 17:12:23 +08:00
void processGutterClick ( QMouseEvent * event ) ;
2021-06-03 20:26:36 +08:00
void clearUndo ( ) ;
BufferCoord GetPreviousLeftBracket ( int x , int y ) ;
2021-06-07 11:02:03 +08:00
bool CanDoBlockIndent ( ) ;
2021-06-03 20:26:36 +08:00
//Commands
2021-06-07 11:02:03 +08:00
void doDeleteLastChar ( ) ;
void doDeleteCurrentChar ( ) ;
void doDeleteWord ( ) ;
void doDeleteToEOL ( ) ;
void doDeleteLastWord ( ) ;
void doDeleteFromBOL ( ) ;
void doDeleteLine ( ) ;
void doDuplicateLine ( ) ;
void doMoveSelUp ( ) ;
void doMoveSelDown ( ) ;
void clearAll ( ) ;
void insertLine ( bool moveCaret ) ;
void doTabKey ( ) ;
void doShiftTabKey ( ) ;
2021-06-03 20:26:36 +08:00
void doBlockIndent ( ) ;
void doBlockUnindent ( ) ;
2021-06-07 11:02:03 +08:00
void doAddChar ( QChar AChar ) ;
void doCutToClipboard ( ) ;
void doCopyToClipboard ( ) ;
void internalDoCopyToClipboard ( const QString & s ) ;
void doPasteFromClipboard ( ) ;
void doAddStr ( const QString & s ) ;
void doUndo ( ) ;
void doUndoItem ( ) ;
void doRedo ( ) ;
void doRedoItem ( ) ;
void doZoomIn ( ) ;
void doZoomOut ( ) ;
void doSelectAll ( ) ;
2021-06-21 11:21:26 +08:00
void doComment ( ) ;
void doUncomment ( ) ;
void doToggleComment ( ) ;
2021-06-03 20:26:36 +08:00
2021-05-14 23:56:43 +08:00
private slots :
2021-09-02 12:14:02 +08:00
void onBookMarkOptionsChanged ( ) ;
void onGutterChanged ( ) ;
void onLinesChanged ( ) ;
void onLinesChanging ( ) ;
void onLinesCleared ( ) ;
void onLinesDeleted ( int index , int count ) ;
void onLinesInserted ( int index , int count ) ;
void onLinesPutted ( int index , int count ) ;
void onRedoAdded ( ) ;
void onScrollTimeout ( ) ;
void onUndoAdded ( ) ;
void onSizeOrFontChanged ( bool bFont ) ;
void onChanged ( ) ;
void onScrolled ( int value ) ;
2021-05-14 23:56:43 +08:00
private :
2021-05-24 00:41:00 +08:00
std : : shared_ptr < QImage > mContentImage ;
2021-05-14 23:56:43 +08:00
SynEditFoldRanges mAllFoldRanges ;
SynEditCodeFolding mCodeFolding ;
bool mUseCodeFolding ;
bool mAlwaysShowCaret ;
BufferCoord mBlockBegin ;
BufferCoord mBlockEnd ;
int mCaretX ;
2021-06-03 23:18:51 +08:00
int mLastCaretColumn ;
2021-05-14 23:56:43 +08:00
int mCaretY ;
int mCharsInWindow ;
int mCharWidth ;
QFont mFontDummy ;
SynFontSmoothMethod mFontSmoothing ;
bool mMouseMoved ;
/* IME input */
int mImeCount ;
bool mMBCSStepAside ;
/* end of IME input */
bool mInserting ;
bool mPainting ;
PSynEditStringList mLines ;
PSynEditStringList mOrigLines ;
PSynEditUndoList mOrigUndoList ;
PSynEditUndoList mOrigRedoList ;
int mLinesInWindow ;
int mLeftChar ;
int mPaintLock ; // lock counter for internal calculations
bool mReadOnly ;
int mRightEdge ;
QColor mRightEdgeColor ;
QColor mScrollHintColor ;
SynScrollHintFormat mScrollHintFormat ;
SynScrollStyle mScrollBars ;
int mTextHeight ;
int mTopLine ;
PSynHighlighter mHighlighter ;
QColor mSelectedForeground ;
QColor mSelectedBackground ;
2021-05-24 18:11:07 +08:00
QColor mCaretColor ;
2021-05-14 23:56:43 +08:00
QColor mActiveLineColor ;
PSynEditUndoList mUndoList ;
PSynEditUndoList mRedoList ;
SynEditMarkList mBookMarks ;
2021-05-29 21:35:46 +08:00
QPoint mMouseDownPos ;
2021-05-14 23:56:43 +08:00
SynBookMarkOpt mBookMarkOpt ;
bool mHideSelection ;
int mMouseWheelAccumulator ;
SynEditCaretType mOverwriteCaret ;
SynEditCaretType mInsertCaret ;
QPoint mCaretOffset ;
SynEditKeyStrokes mKeyStrokes ;
bool mModified ;
QDateTime mLastModifyTime ;
SynEditMarkList mMarkList ;
int mExtraLineSpacing ;
SynSelectionMode mSelectionMode ;
SynSelectionMode mActiveSelectionMode ; //mode of the active selection
bool mWantReturns ;
bool mWantTabs ;
SynGutter mGutter ;
int mTabWidth ;
QRect mInvalidateRect ;
SynStateFlags mStateFlags ;
SynEditorOptions mOptions ;
SynStatusChanges mStatusChanges ;
int mLastKey ;
Qt : : KeyboardModifiers mLastKeyModifiers ;
//fSearchEngine: TSynEditSearchCustom;
//fHookedCommandHandlers: TList;
//fKbdHandler: TSynEditKbdHandler;
// fFocusList: TList;
// fPlugins: TList;
QTimer * mScrollTimer ;
int mScrollDeltaX ;
int mScrollDeltaY ;
PSynEdit fChainedEditor ;
int mPaintTransientLock ;
bool mIsScrolling ;
int mPainterLock ; // lock counter to prevent repaint while painting
bool mUndoing ;
// event handlers
SynPlaceMarkProc mOnClearMark ;
SynProcessCommandProc mOnCommandProcessed ;
SynMouseCursorProc mOnMouseCursor ;
SynPaintProc mOnPaint ;
2021-08-28 09:01:40 +08:00
// SynPreparePaintHighlightTokenProc mOnPaintHighlightToken;
2021-05-14 23:56:43 +08:00
SynPlaceMarkProc mOnPlaceMark ;
SynProcessCommandProc mOnProcessingCommand ;
SynProcessCommandProc mOnProcessingUserCommand ;
2021-05-21 23:33:53 +08:00
// SynSpecialLineColorsProc mOnSpecialLineColors;
// SynEditingAreasProc mOnEditingAreas;
// SynGutterGetTextProc mOnGutterGetText;
// SynTGutterPaintProc mOnGutterPaint;
2021-05-14 23:56:43 +08:00
int mGutterWidth ;
//caret blink related
int m_blinkTimerId ;
2021-05-24 18:11:07 +08:00
int m_blinkStatus ;
2021-05-14 23:56:43 +08:00
2021-06-07 11:02:03 +08:00
QCursor mDefaultCursor ;
2021-05-14 23:56:43 +08:00
friend class SynEditTextPainter ;
2021-05-24 00:41:00 +08:00
// QWidget interface
protected :
2021-05-27 20:33:25 +08:00
void paintEvent ( QPaintEvent * event ) override ;
2021-05-24 00:41:00 +08:00
void resizeEvent ( QResizeEvent * event ) override ;
void timerEvent ( QTimerEvent * event ) override ;
bool event ( QEvent * event ) override ;
2021-05-24 21:48:03 +08:00
void focusInEvent ( QFocusEvent * event ) override ;
void focusOutEvent ( QFocusEvent * event ) override ;
2021-05-27 20:33:25 +08:00
void keyPressEvent ( QKeyEvent * event ) override ;
2021-05-27 23:45:22 +08:00
void mousePressEvent ( QMouseEvent * event ) override ;
2021-05-29 21:35:46 +08:00
void mouseReleaseEvent ( QMouseEvent * event ) override ;
void mouseMoveEvent ( QMouseEvent * event ) override ;
void mouseDoubleClickEvent ( QMouseEvent * event ) override ;
2021-06-05 23:43:45 +08:00
void inputMethodEvent ( QInputMethodEvent * event ) override ;
2021-06-07 11:02:03 +08:00
void leaveEvent ( QEvent * event ) override ;
2021-06-09 17:12:23 +08:00
void wheelEvent ( QWheelEvent * event ) override ;
2021-06-07 21:34:48 +08:00
// QAbstractScrollArea interface
protected :
bool viewportEvent ( QEvent * event ) override ;
2021-05-14 23:56:43 +08:00
} ;
# endif // SYNEDIT_H