aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2003-02-08Avoiding problem at widget destruction time.nyamatongwe1-1/+6
2003-02-08Chose arrow cursors more similar to Windows.nyamatongwe2-8/+7
2003-02-07WordPartLeft and WordPartRight made safe for non-ASCII.nyamatongwe1-27/+56
2003-02-06Fixed bug in array resizing.nyamatongwe1-1/+2
2003-02-05Moved IsNT to PlatWin and cached the result.nyamatongwe2-12/+19
Change maximum number of pixels when measuring text on NT to be 1000000 rather than 30000 possible on Windows. Increased size of Unicode buffers to 10000 elements to handle longer paragraphs of text.
2003-02-04Added Eric3.nyamatongwe1-0/+4
2003-02-04Added credit.nyamatongwe1-0/+1
2003-02-04Patch from Mauritius Thinnes to set the type separator for autocompletionnyamatongwe3-0/+16
images.
2003-02-02Updated project to include XPM.cxx.ssteele1-0/+4
2003-02-02Hoisted drawing of EOL into method so can avoid overwriting lastnyamatongwe3-39/+62
character in two phase mode.
2003-02-02Transaprent text drawing.nyamatongwe1-1/+21
2003-02-02Two phase drawing.nyamatongwe6-38/+160
2003-01-31Patch from David Ascher for horizontal scrolling.nyamatongwe1-0/+9
Change the scroll range when moving caret outside normal scroll range. Modify scroll bar when calling SetXOffset API to ensure synchronised.
2003-01-31Fixes to autocompletion pixmaps from Mauritius Thinnes.nyamatongwe1-1/+3
2003-01-30Added link to TemplateTamer.nyamatongwe1-0/+4
2003-01-30GTK+ 2 fixes.nyamatongwe1-3/+13
2003-01-28Fixed non-focus problem on mouse down reported by Vincent Spader.nyamatongwe1-1/+1
2003-01-28Made FullPaint work on GTK+ 2.nyamatongwe1-0/+4
2003-01-27Made more robust.nyamatongwe1-25/+36
2003-01-27Patch from Steve Schoettler for case sensitive tags.nyamatongwe2-11/+14
2003-01-24Forgot to save before last commit.nyamatongwe1-1/+1
2003-01-24Complete for 1.50.nyamatongwe1-3/+39
2003-01-24Updated release date and added headline feature.nyamatongwe1-3/+3
2003-01-24Added pointer to Bait.nyamatongwe1-41/+43
2003-01-24Modifications to formatting from Greg.nyamatongwe1-271/+299
2003-01-23Progressing.nyamatongwe1-1/+57
2003-01-21Version 1.50 updates.nyamatongwe3-7/+37
2003-01-18Removed special casing of '^' and '$' that tried to prevent hangs. This isnyamatongwe1-12/+0
now the containers responsibility.
2003-01-18Added SWP_NOZORDER to SetWindowPos to avoid fronting windows.nyamatongwe1-1/+1
2003-01-16Explained about delaying scrolling until an SCN_PAINTED.nyamatongwe1-0/+10
2003-01-15Added credit.nyamatongwe1-0/+1
2003-01-15Added const to methods that are.nyamatongwe1-2/+2
2003-01-14Patch from David Ascher to to support both context diffs and the outputnyamatongwe1-3/+7
of Python's difflib.
2003-01-13Simplified and corrected code.nyamatongwe2-58/+23
IsDBCS no longer present as now must deal with 3 byte DBCS so use LenChar and DBCSCharLength.
2003-01-13Set up DBCS mode when needed in main drawing code.nyamatongwe1-0/+1
2003-01-13DBCSCharLength always returns >= 1 as that makes it much easier to use.nyamatongwe1-2/+6
2003-01-12Changes to make DBCS work on GTK+ and handle DBCS sequences longer than 2 bytes.nyamatongwe4-21/+59
2003-01-12International input patch from Yukihiro Nakai.nyamatongwe1-0/+13
2003-01-12Added credit.nyamatongwe1-0/+1
2003-01-12Additions from Yukihiro Nakai to enable DBCS mode on GTK+.nyamatongwe10-42/+172
DBCS mode for Surface so that different font and text drawing code can be invoked on GTK+.
2003-01-12Changed xpm data to be a string rather than an int.nyamatongwe1-1/+1
2003-01-12Implementation of ListBoxX::CaretFromEdge.nyamatongwe1-22/+43
Handles changing images.
2003-01-12Added dependencies on UniConversion and XPM.nyamatongwe1-121/+133
2003-01-10Made ListBox an interface so that a platform-specific subclass, ListBoxX,nyamatongwe1-30/+314
can be used hiding implementation details. Owner drawn listbox allows pixmap icons and Unicode text.
2003-01-10XPM.h separated frmo LineMarker.h.nyamatongwe1-2/+3
Typo fixed in registration.
2003-01-10Added XPM.nyamatongwe3-24/+28
2003-01-10ListBox is now an interface which is implemented in ListBoxX.nyamatongwe1-50/+82
XPM images are saved in an XPMSet so that container does not have to hold onto them.
2003-01-10XPM separated from LineMarker and XPMSet implemented.nyamatongwe2-8/+10
2003-01-10Added XPM.h as the XPM support has been split out of LineMarker.h.nyamatongwe1-0/+1
2003-01-10Added method to copy desired colour to allocated colour in ColourPair fornyamatongwe1-31/+22
situations where doing palette management is too complex. Changed ListBox class to an interface to allow use of a platform-specific subclass to hide implementation details.