aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/simpleTests.py
AgeCommit message (Collapse)AuthorFilesLines
2025-05-12Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK.orbitalquark1-0/+5
2025-02-01Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED andNeil1-0/+33
SCI_SETSELECTIONSERIALIZED.
2024-07-28Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and itsNeil1-0/+19
nesting depth.
2024-07-27Feature [feature-requests:#1530]. SCI_SETCOPYSEPARATOR sets string to separateNeil1-3/+16
parts of multiple selection when copied.
2024-07-15Add copy and paste tests for rectangular- and multiple-selection and line-endNeil1-0/+47
conversion.
2024-07-03Feature [feature-requests:#1523]. SCI_AUTOCSETSTYLE sets autocompletion font.Martijn Laan1-0/+4
2024-06-20Feature [feature-requests:#1518]. Cherry pick SCI_CUTALLOWLINE from isscint.Martijn Laan1-0/+13
2024-03-08Bug [#2403]. Add SC_AUTOCOMPLETE_SELECT_FIRST_ITEM.Jiří Techet1-0/+22
This option always selects the first item in the autocompletion list.
2024-02-09Implement API to read and write undo history from applications.Neil1-0/+76
2023-11-05Add SCI_SELECTIONFROMPOINT for modifying multiple selections.Neil1-3/+36
2023-11-05Add SCI_CHANGESELECTIONMODE to simplify selection mode manipulation.Neil1-22/+25
2023-11-05Add SCI_SETMOVEEXTENDSSELECTION to simplify selection mode manipulation.Neil1-0/+19
2023-11-05Extract selectionRepresentation so it can be used in other test classes.Neil1-9/+10
2023-10-29Bug [#2078]. Fix rectangular selections with SCI_MOVESELECTEDLINESUP andNeil1-0/+14
SCI_MOVESELECTEDLINESDOWN.
2023-10-26Add test for VCHome method.Neil1-0/+11
2023-10-26Use raw strings and extra escapes to fix "SyntaxWarning: invalid escape ↵Neil1-10/+10
sequence".
2023-10-26Update unittest method names to work with Python 3.12.Neil1-1028/+1028
2023-06-25Strip line end white-space.Neil1-2/+2
2023-03-15Fix some warnings from ruff.Neil1-5/+8
2023-01-12Feature [feature-requests:#1474] Simplify with InsertString(string_view).Zufu Liu1-0/+11
2023-01-12Feature [feature-requests:#1474] Move EOL string function to Document and returnZufu Liu1-0/+75
string_view.
2023-01-10Bug [#2372]. Fix SCI_LINESJOIN bug where carriage returns were incorrectlyZufu Liu1-0/+43
retained.
2022-11-28Bug [#2363]. Change 'paragraph up' commands SCI_PARAUP and SCI_PARAUPEXTEND toMichael Heath1-0/+40
go to the start position of the paragraph containing the caret. Only if the caret is already at the start of the paragraph will it go to the start of the previous paragraph.
2022-11-22Add SCI_REPLACETARGETMINIMAL to change text without causing unchanged prefix andNeil1-0/+39
suffix to be marked as modified in change history.
2022-10-19Feature [feature-requests:#1455] Implement GetStyledTextFull as a 64-bit safeNeil1-0/+9
version of GetStyledText.
2022-10-04Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION toFerdinand Oeinck1-0/+8
make it easier to edit around invisible text. This also allows representing long lexemes with a single character to provide a summarized view.
2022-09-20Some simple tests for change history.Neil1-0/+26
2022-07-22Move EditView::hideSelection to (inverted) SelectionAppearance::visible so thatNeil1-0/+7
it can differ between screen and print. Add GetSelectionHidden to allow testing of HideSelection.
2022-05-17Duplicate APIs to support 64-bit document positions on Win32:Neil1-0/+17
SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL.
2022-03-15Feature [feature-requests:#1431] Add SCI_GETSTYLEINDEXAT API to return stylesNeil1-3/+6
over 127 as positive integers.
2021-11-13Bug [#2294] Fix assertion failure with autocompletion list when order isNeil1-0/+40
SC_ORDER_CUSTOM or SC_ORDER_PERFORMSORT and the list is empty.
2021-11-12Remove XiteQt.py as ScintillaEditPy is no longer included in ScintillaNeil1-4/+1
and the required PySide library no longer supported.
2021-11-12Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistentNeil1-1/+1
with other APIs with respect to buffer lengths.
2021-10-03Feature [feature-requests:#1417] Add DEL (0x7F) to set of space characters.Neil1-6/+3
2021-09-02Bug [#2281] Fix crash with too many subexpressions in regular expression searchNeil1-0/+22
with SCFIND_CXX11REGEX.
2021-08-24Remove line end white space.Neil1-9/+9
2021-08-24Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enablesZufu Liu1-0/+8
highlighting just the subline with the caret when wrapping is on.
2021-07-31Implement StyleSetCheckMonospaced.Neil1-0/+5
2021-06-25Feature [feature-requests:#1400] Set buffering when technology set.Zufu Liu1-0/+26
2021-06-10Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting textNeil1-2/+2
provided as an argument instead of from the system clipboard.
2021-06-09Add SCI_PASTERECTANGULAR to insert text like a rectangular paste.Mitchell Foral1-0/+6
2021-06-03Add APIs for setting appearance (traditional blob or plain text) and colour ofNeil1-0/+25
representations and support setting a representation for the "\r\n" line end sequence.
2021-05-30Fix GetFontQuality. Simplify code that calls FlagSet.Neil1-0/+5
2021-05-15Updated test since setting the alpha of caret line when it hasn't had colour setNeil1-0/+1
no longer sets it to have a colour.
2021-05-14Implement SC_LAYER_UNDER_TEXT so that selections, caret lines, and content areaNeil1-4/+4
markers can be drawn translucently under text.
2021-05-14Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE andNeil1-0/+32
SC_ELEMENT_HOT_SPOT_ACTIVE_BACK.
2021-05-14Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.Neil1-0/+7
This replaces the use of SC_ALPHA_NOALPHA for markers.
2021-05-12Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element andNeil1-16/+85
add SetCaretLineLayer. Older caret line APIs SCI_SETCARETLINEVISIBLE, SCI_SETCARETLINEBACK, SCI_SETCARETLINEBACKALPHA now discouraged.
2021-05-11Add test for SelectionLayer.Neil1-0/+6
2021-05-11Implement SCI_GETELEMENTBASECOLOUR to return the default values for elementNeil1-6/+22
colours.