Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2002-02-12 | Avoid extra processing if SETHSCROLLBAR used to set to same value as | nyamatongwe | 1 | -3/+5 | |
before. | |||||
2002-02-09 | Removed unused variable. | nyamatongwe | 1 | -3/+0 | |
2002-02-07 | After rectangular paste, caret is left at initial position. | nyamatongwe | 1 | -1/+1 | |
2002-02-03 | Patch to ensure caret on after mouse wheel scroll or pressing | nyamatongwe | 1 | -6/+6 | |
End when already at line end. | |||||
2002-02-03 | When changing document, ensured rewrap performed. | nyamatongwe | 1 | -0/+1 | |
Made memory allocation a little safer in ContractionState. | |||||
2002-01-27 | Fixed wrapping problems with displaying visible space characters on | nyamatongwe | 1 | -3/+4 | |
sublines after the first and with showing selected EOLs on sublines before the last. | |||||
2002-01-25 | Removed performance tracing as it cused a divide by zero for Carl. | nyamatongwe | 1 | -8/+8 | |
2002-01-24 | Fixed problem with ensuring the caret is visible hen it is on a wrapped | nyamatongwe | 1 | -1/+20 | |
line. | |||||
2002-01-24 | Added parameter to WordStartPosition / WordEndPosition to indicate that | nyamatongwe | 1 | -2/+2 | |
only word characters should be considered parts of words. | |||||
2002-01-23 | Performs a rewrap when zoom changed. | nyamatongwe | 1 | -0/+3 | |
2002-01-18 | Updated copyrights for 2002. | nyamatongwe | 1 | -1/+1 | |
2002-01-16 | WrapLines performs scroll bar and top line maintenance. | nyamatongwe | 1 | -12/+19 | |
WrapLines called before ensuring a lin eis visible so doc<->visible mapping correct. When modification changes number of lines, NeedWrapping starts one line before. Horizontal scrolling disallowed even more when in wrap mode. | |||||
2002-01-10 | Made code bool-safe and turned Visual C++ warning 4800 back on. | nyamatongwe | 1 | -42/+42 | |
2002-01-10 | Patch from Kengo Jinno to make Japanese entry work on Windows 9x. | nyamatongwe | 1 | -28/+33 | |
More changes from Neil to avoid problem introduced by above with overstrike mode replacing one character with two. Comments about Digital Mars ifdefs. | |||||
2002-01-09 | Work on line wrapping. | nyamatongwe | 1 | -18/+33 | |
Rather than storing a needWrap flag, there is now a record of the last line wrapped, so if a change requires some rewrapping then the wrapping is only performed for the line of the change and subsequent lines. If a change in styling spills off the end of a line, such as occurs by starting a multiline comment, that style change may change the width of subsequent text so rewrapping is performed. When window resized, rewrap only done when width changed as resize may be only vertical. | |||||
2001-12-26 | When a paint is abandoned because there is a change in styling outside the | nyamatongwe | 1 | -0/+3 | |
painting rectangle, and line wrapping is on, the needWrap flag is set because the restyled text may be thinner or thicker and hence require different wrapping. | |||||
2001-12-23 | Fixed bug where changing to wrap mode when horizontally scrolled led to | nyamatongwe | 1 | -0/+1 | |
that sroll amount being kept with no way to return it to 0. Now setting to wrap mode sets the x offset to 0. | |||||
2001-12-23 | Fixed MovePositionSoVisible so that when navigating with arrow keys, the | nyamatongwe | 1 | -4/+4 | |
caret will move over folds correctly. | |||||
2001-12-20 | Unicode and multi-byte fixes to edge display and column number calculation. | nyamatongwe | 1 | -5/+14 | |
Tab arrows are drawn within their areas when line height is large. | |||||
2001-12-20 | Increased allocations for laying out and wrapping lines to allow 16000 | nyamatongwe | 1 | -5/+11 | |
characters and 400 lines. Optimised display by reusing a LineLayout for all the visible lines of a document line. Fixed some processing of multi-byte and UTF-8 characters so that, for example, performing a rectangular selection does not select partial characters. | |||||
2001-12-20 | Added changeable attribute to styles that defaults to true. When it is | nyamatongwe | 1 | -2/+8 | |
false, text in this style is read only. | |||||
2001-12-19 | Fixed some warnings from Borland. | nyamatongwe | 1 | -3/+2 | |
2001-12-19 | Wrapping supported. | nyamatongwe | 1 | -124/+334 | |
2001-12-19 | Fixed the last X click position to be within the text when the click is | nyamatongwe | 1 | -0/+3 | |
past the end of the line. | |||||
2001-12-19 | Fixed, regularised and simplified movement of brace highlights and | nyamatongwe | 1 | -41/+31 | |
selection when insertions and deletions are performed. | |||||
2001-12-19 | Hoisted IsUnicodeMode method from ScintillaWin to Editor as it is useful on | nyamatongwe | 1 | -41/+22 | |
all platforms. Using AutoSurface to simplify allocation of surfaces and ensure they are always deleted. | |||||
2001-12-19 | Patch from Philippe to show control characters as a particular character | nyamatongwe | 1 | -38/+59 | |
rather than as the default blobs. | |||||
2001-12-01 | Display optimisations. | nyamatongwe | 1 | -78/+75 | |
When horizontally scrolled on Windows, an extra message turns up to say the scrolling has ended. Now has no effect as new scroll position compared to old and processing only occurs if different. Avoid working on line segments that are before horizontal visible range. Guards against working on line segments that are outside visible range horizontally applied to tabs and control characters as well as text. | |||||
2001-11-16 | Added DeleteBackNotLine command. | nyamatongwe | 1 | -15/+26 | |
2001-11-08 | Added methods for finding the start and end of words. | nyamatongwe | 1 | -0/+6 | |
2001-11-06 | Memory leak fixed in calltips and better casts when returning pointers. | nyamatongwe | 1 | -2/+2 | |
2001-10-31 | Patch from John to ensure selection is maintained in secondary views | nyamatongwe | 1 | -1/+1 | |
upon deletions. | |||||
2001-10-28 | Hid implementation of Surface. | nyamatongwe | 1 | -3/+3 | |
Changed DrawText to DrawTextNoClip to avoid name clash with macro. | |||||
2001-10-28 | Fixed Platform changes for GTK+ and hid most of the implementation of | nyamatongwe | 1 | -90/+126 | |
Surface. | |||||
2001-10-28 | Removed platform-specific headers from Platform.h and thus stopped | nyamatongwe | 1 | -28/+28 | |
visibility of these headers to most code. | |||||
2001-10-26 | Ensured no flashing when selecting by words and direction is changed. | nyamatongwe | 1 | -1/+1 | |
2001-10-13 | Deprecated SCN_CHECKBRACE and SCN_POSCHANGED. | nyamatongwe | 1 | -0/+1 | |
2001-10-02 | Patch from Mark to make the x offset accessible through the API. | nyamatongwe | 1 | -0/+8 | |
2001-09-24 | Patch from Stephan for the SC_MARK_BACKGROUND marker. | nyamatongwe | 1 | -8/+25 | |
2001-09-08 | Handle SCI_HIDESELECTION message. | nyamatongwe | 1 | -0/+5 | |
2001-09-08 | Removed all traces of Win32 API from Scintilla API. Scintilla will no | nyamatongwe | 1 | -242/+6 | |
longer process WM_* or EM_* messages. | |||||
2001-09-07 | Marker can be any character. | nyamatongwe | 1 | -1/+1 | |
2001-09-01 | Using new SelectionText type to handle text that is the subject of copy, | nyamatongwe | 1 | -83/+34 | |
cut, paste and drag operations. Mouse wheel scrolling moved into platform subclasses. Macro support always included so MACRO_SUPPORT definition and use removed. Allowing menu popup moved from Editor to ScintillaBase. | |||||
2001-08-31 | Moved Windows-specific mouse wheel variables from Editor to ScintillaWin. | nyamatongwe | 1 | -3/+0 | |
2001-08-17 | Separate out the enforcement of the visibilty policy by having both an | nyamatongwe | 1 | -20/+26 | |
EnsureVisible method and an EnsureVisibleEnforcePolicy method. | |||||
2001-08-15 | Fixed some folding symbols. | nyamatongwe | 1 | -3/+8 | |
2001-08-14 | Fixed typos in comments. | nyamatongwe | 1 | -2/+2 | |
2001-08-10 | Fixed some problems with the outline folding markers. | nyamatongwe | 1 | -1/+6 | |
2001-08-10 | Typing makes the dwell not occur again until the mouse moves. | nyamatongwe | 1 | -4/+7 | |
2001-08-10 | Added PositionFromLocationClose which returns the position in the document | nyamatongwe | 1 | -34/+72 | |
of a pixel location in the window but returns INVALID_POSITION if the location is outside the text area or not near text. Improvements to mouse dwell to make it only trigger when the mouse is up, use PositionFromLocationClose to calculate the position parameter, and send a dwell end if the user types. |