|
@@ -47,7 +47,6 @@ Type TGTKScintillaTextArea Extends TGTKTextArea
|
|
|
Field lineDigits:Int
|
|
|
|
|
|
Field showLineNumbers:Int = True
|
|
|
- Field showCaretLine:Int = True
|
|
|
|
|
|
' holder for the latest notification
|
|
|
' keep one in the type rather than locally in the callback function so we don't have to create a new object for every notification
|
|
@@ -499,20 +498,18 @@ Type TGTKScintillaTextArea Extends TGTKTextArea
|
|
|
End Method
|
|
|
|
|
|
Method SetCaretLineVisible(enabled:Int)
|
|
|
- showCaretLine = enabled
|
|
|
- bmx_mgta_scintilla_setcaretlinevisible(sciPtr, showCaretLine)
|
|
|
+ bmx_mgta_scintilla_setcaretlinevisible(sciPtr, enabled)
|
|
|
End Method
|
|
|
|
|
|
- Method GetCaretLineVisible:int()
|
|
|
- showCaretLine = bmx_mgta_scintilla_getcaretlinevisible(sciPtr)
|
|
|
- Return showCaretLine
|
|
|
+ Method GetCaretLineVisible:Int()
|
|
|
+ Return bmx_mgta_scintilla_getcaretlinevisible(sciPtr)
|
|
|
End Method
|
|
|
|
|
|
Method SetCaretLineBackgroundColor(r:Int, g:Int, b:Int)
|
|
|
bmx_mgta_scintilla_setcaretlineback(sciPtr, r, g, b)
|
|
|
End Method
|
|
|
|
|
|
- Method GetCaretLineBackgroundColor:int()
|
|
|
+ Method GetCaretLineBackgroundColor:Int()
|
|
|
Return bmx_mgta_scintilla_getcaretlineback(sciPtr)
|
|
|
End Method
|
|
|
|