aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2003-05-09Added Lout lexer by Kein-Hong Man.nyamatongwe5-3/+34
2003-04-30Protection from runaway recursion.nyamatongwe1-1/+1
2003-04-30Separated ifdefs around WM_UNICHAR and UNICODE_NOCHAR to work on somenyamatongwe1-0/+9
compiler setups.
2003-04-30More protection against recursive property settings.nyamatongwe1-16/+16
2003-04-29Removed hack that did not set the scroll bar when changing documents whichnyamatongwe1-4/+1
worked around a GTK+ 2 problem that is now fixed by using an extra window for the text.
2003-04-29Text area is now a separate GtkDrawingArea and thus a separate X windownyamatongwe1-38/+85
which simplifies clipping against scroll bars which are no longer windows since GTK+ 2. Only handles expose events, other events are handled by the containing Scintilla widget. DisplayCursor handled here so that it is done relative to the text widget rather than whole Scintilla widget, so cursor is left alone for scroll bars. This removed some very messy code for managing the cursor over the scroll bars.
2003-04-29Made Redraw only redraw the text area, not the scrollbars.nyamatongwe1-1/+3
2003-04-29Made DisplayCursor virtual so could be overridden by GTK+ platform code.nyamatongwe1-1/+1
2003-04-27Using iconv to convert input into current character set.nyamatongwe2-25/+52
2003-04-24Fixed late unchecked change.nyamatongwe1-1/+1
2003-04-23Using iconv for character set conversion.nyamatongwe1-15/+114
2003-04-22Pango drawing now tries converting from the current locale in preference to ↵nyamatongwe1-10/+46
converting from Latin1. Latin1 still used if locale does not work.
2003-04-21New folding scheme that allows "} else {" to be a fold header.nyamatongwe2-251/+43
2003-04-20Command line definition can turn off thunks option and avoid warning onnyamatongwe1-2/+6
gcc 3.x.
2003-04-19Fix len parameter to avoid writing beyond end.nyamatongwe1-1/+1
2003-04-19Made previous version look at both bytes in wParam for WM_UNICHAR.nyamatongwe1-1/+5
2003-04-19Added processing of WM_UNICHAR.nyamatongwe1-0/+19
2003-04-18Changed Function* to simpler Function.nyamatongwe3-8/+8
2003-04-18New methods for finding the next or previous position taking multi bytenyamatongwe5-24/+41
characters into account.
2003-04-18Added manifest.nyamatongwe1-0/+4
2003-04-18Correct location of header.nyamatongwe1-1/+1
2003-04-18Cast to allow recent gcc and Borland compilers to build.nyamatongwe1-1/+2
2003-04-18Added line end at end of file.nyamatongwe1-8/+8
2003-04-18Updated.nyamatongwe1-1/+1
2003-04-18Patch from Simon to make ExternalLexer platform independent.nyamatongwe10-404/+80
2003-04-18Patch from Simon for portable DLL loading.nyamatongwe1-0/+18
2003-04-18Initial portable version.nyamatongwe1-0/+95
2003-04-18Initial portable version.nyamatongwe1-0/+256
2003-04-18Credit for Biswapesh.nyamatongwe1-0/+1
2003-04-18Batch from Biswapesh to add another keyword set for the cpp lexer.nyamatongwe3-0/+6
2003-04-16Finished reeading mail messages for 1.52.nyamatongwe1-1/+47
2003-04-16Updated dates.nyamatongwe2-3/+3
2003-04-16Fix to marshalling.nyamatongwe1-2/+4
2003-04-16Updated download sizes.nyamatongwe1-2/+2
2003-04-16Added entries for 1.52.nyamatongwe1-2/+60
2003-04-16Explained GDK and Pango choice for text display.nyamatongwe1-1/+3
2003-04-16Updated blurb.nyamatongwe1-2/+2
2003-04-15Updated with new features in 1.52.nyamatongwe1-1/+19
2003-04-15Added new features for 1.52.nyamatongwe1-10/+83
2003-04-15Updated to version 1.52.nyamatongwe1-1/+1
2003-04-15Updating for version 1.52.nyamatongwe4-46/+28
2003-04-13Reenabled lexer DLL feature.nyamatongwe1-2/+2
2003-04-13Marked SCI_LOADLEXERLIBRARY as not implemented.nyamatongwe1-1/+1
Removed "experimental" tag from Join.
2003-04-13Avoid resetting scroll bars when changing documents as that leads tonyamatongwe1-1/+4
synchronous painting on GTK+ before completely set up for new document.
2003-04-10Changed Message Categories to Contents as some parts are not aboutnyamatongwe1-1/+1
messages.
2003-04-10Fixed hang where '#' was last non-whitepsace in file.nyamatongwe1-1/+1
2003-04-09Limit the number of characters in string arguments to text drawing andnyamatongwe1-16/+17
measurement methods to 8192 on Windows 9x, otherwise thaere can be crashes.
2003-04-08Fixed warning in debug code.nyamatongwe1-1/+1
2003-04-08Beter attempt at drawing corner between scrollbars. Still fails but doesn'tnyamatongwe1-9/+14
overdraw vertical scroll bar when horizontal scroll bar turned off.
2003-04-07Fix bug on GTK+ 2.x where synchronous repaint causes currentPos to be usednyamatongwe1-1/+8
before it is reset.