Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-09-17 | Patch from Artem Baguinski to protect against ascent of 0. | nyamatongwe | 1 | -1/+4 | |
2004-06-23 | Patch for autocompletion from Trent Mick that prevents | nyamatongwe | 1 | -2/+13 | |
selecting an item when no item matches typed text. | |||||
2004-05-11 | Modifications to selection handling to make copying and | nyamatongwe | 1 | -22/+24 | |
pasting from/to various encodings work. | |||||
2004-05-02 | Draw lines without the final pixel: this is the same as on | nyamatongwe | 1 | -0/+4 | |
Win32 leading to more consistent graphics. | |||||
2004-04-02 | Patch from Pavol Bosik to ensure calltips stay on screen. | nyamatongwe | 1 | -1/+14 | |
2004-03-29 | Patch from Robin Dunn to pass an extra flag down to | nyamatongwe | 1 | -3/+4 | |
font rendering to allow a platform-specific tweak. | |||||
2004-03-21 | Copy DBCS text to be drawn or measured into another buffer | nyamatongwe | 1 | -3/+15 | |
so that is can be \0 terminated. Previously read beyond end of text segment. When mblen returns -1 to say byte is not part of DBCS string, convert to 1 so loop does not run over. | |||||
2004-03-06 | Patch from John Ehresman to avoid unwanted sorting of autocompletion lists. | nyamatongwe | 1 | -3/+0 | |
2004-02-20 | Patch from John Ehresman to fix segfault on long lines. | nyamatongwe | 1 | -2/+2 | |
2004-01-31 | Chooses between input method or standard keyboard reading based | nyamatongwe | 1 | -46/+27 | |
on whether character set is Asian or not. Encapsulated access to iconv in Converter class. | |||||
2003-10-25 | Removed setting autocompletion font to same as text when the text is using | nyamatongwe | 1 | -11/+2 | |
a GDK font. There have been crashes with this. | |||||
2003-10-04 | Adaptor template to allow use of versions of iconv that use a const | nyamatongwe | 1 | -2/+10 | |
source parameter as well as versions that use non-const. | |||||
2003-09-27 | Removed ListBox::Sort as always created in sorted order. | nyamatongwe | 1 | -69/+58 | |
2003-09-26 | Fixed compilation for GTK+ 1.x. | nyamatongwe | 1 | -2/+2 | |
2003-09-24 | Patch from Naba to set font on autocompletion correctly. | nyamatongwe | 1 | -7/+3 | |
Added a couple of pixels height to fit even number of rows. | |||||
2003-09-22 | Patch from Naba to use GtkTreeView on GTK+ 2 rather | nyamatongwe | 1 | -8/+229 | |
than GtkCList which has been deprecated. Protected experimental DBCS code from compiling on GTK+ 1.x. | |||||
2003-09-21 | Made DBCS work with changes to Pango character position calculation. | nyamatongwe | 1 | -38/+73 | |
Experimental calculation of DBCS character width using iconv rather than mblen. | |||||
2003-09-18 | Optimization of width measuring code from Naba. | nyamatongwe | 1 | -28/+33 | |
Support for idle time processing. Changes to character set names used with iconv to make work on FreeBSD. | |||||
2003-09-14 | Use iso8859-13 for Baltic. | nyamatongwe | 1 | -2/+2 | |
2003-08-21 | List boxes now display with same font as current style when | nyamatongwe | 1 | -2/+10 | |
that font is a Pango font. | |||||
2003-04-27 | Using iconv to convert input into current character set. | nyamatongwe | 1 | -17/+17 | |
2003-04-24 | Fixed late unchecked change. | nyamatongwe | 1 | -1/+1 | |
2003-04-23 | Using iconv for character set conversion. | nyamatongwe | 1 | -15/+114 | |
2003-04-22 | Pango drawing now tries converting from the current locale in preference to ↵ | nyamatongwe | 1 | -10/+46 | |
converting from Latin1. Latin1 still used if locale does not work. | |||||
2003-04-18 | Changed Function* to simpler Function. | nyamatongwe | 1 | -2/+2 | |
2003-04-18 | Patch from Simon to make ExternalLexer platform independent. | nyamatongwe | 1 | -0/+36 | |
2003-04-05 | Ensure positioning windows does not make them move before 0 in either x or | nyamatongwe | 1 | -4/+7 | |
y as that leads to them appearing at 0,0. | |||||
2003-04-03 | CallTip can display up and down arrows and clicks are reported to | nyamatongwe | 1 | -5/+7 | |
container. Calltip can be replaced while visible rather than needing a cancel and recreation to minimize flashing. | |||||
2003-03-28 | Patch from Stephan to allow building without threads and on GTK+ 1.x. | nyamatongwe | 1 | -3/+3 | |
2003-03-23 | Added a hand cursor. | nyamatongwe | 1 | -0/+3 | |
2003-03-22 | Fixed compilation problems on GTK+. | nyamatongwe | 1 | -6/+4 | |
2003-03-21 | Thread safety on font ascent and character width determination. | nyamatongwe | 1 | -63/+69 | |
2003-03-21 | Made the character width caching safe when the encoding is changed by | nyamatongwe | 1 | -29/+56 | |
invalidating the cache when this occurs. | |||||
2003-03-13 | Avoiding drawing strings consisting entirely of space characters | nyamatongwe | 1 | -2/+21 | |
in transparent mode. Remembering pixel widths of all single character strings as many single character runs occur in source code. These add up to a 22% speed improvement. | |||||
2003-03-09 | Added Pango text display support to GTK+ platform. | nyamatongwe | 1 | -166/+385 | |
Added WindowID parameter to all Surface initialisation methods as Pango requires a window to determine the context used for text functions. AutoSurface changed because of above to take an Editor* argument so it can then discover the code page and window. | |||||
2003-02-23 | Patch from Jakub Vrana to avoid mouse debouncing on Windows where assigning | nyamatongwe | 1 | -0/+4 | |
a key to double click can result in two mouse clicks arriving with the same time. | |||||
2003-02-15 | Updating version numbers and copyright. | nyamatongwe | 1 | -1/+1 | |
2003-02-08 | Chose arrow cursors more similar to Windows. | nyamatongwe | 1 | -6/+5 | |
2003-02-02 | Two phase drawing. | nyamatongwe | 1 | -4/+18 | |
2003-01-13 | DBCSCharLength always returns >= 1 as that makes it much easier to use. | nyamatongwe | 1 | -2/+6 | |
2003-01-12 | Changes to make DBCS work on GTK+ and handle DBCS sequences longer than 2 bytes. | nyamatongwe | 1 | -0/+8 | |
2003-01-12 | Additions from Yukihiro Nakai to enable DBCS mode on GTK+. | nyamatongwe | 1 | -9/+115 | |
DBCS mode for Surface so that different font and text drawing code can be invoked on GTK+. | |||||
2003-01-12 | Implementation of ListBoxX::CaretFromEdge. | nyamatongwe | 1 | -22/+43 | |
Handles changing images. | |||||
2003-01-10 | ListBox is now an interface which is implemented in ListBoxX. | nyamatongwe | 1 | -50/+82 | |
XPM images are saved in an XPMSet so that container does not have to hold onto them. | |||||
2003-01-03 | Enable text form XPM for autocompletion lists. | nyamatongwe | 1 | -3/+41 | |
Enable line form XPM for markers. | |||||
2002-11-21 | pragma to avoid MSVC warning. | nyamatongwe | 1 | -0/+5 | |
2002-11-21 | Protect against foreach over null pointer. | nyamatongwe | 1 | -2/+4 | |
2002-11-21 | Patch from Biswa to add icons to autocompletion lists. | nyamatongwe | 1 | -35/+111 | |
2002-10-11 | Patch from Shane that adds a font cache on GTK+. | nyamatongwe | 1 | -37/+43 | |
2002-10-10 | Patch from Shane to implement font cache, including protective mutex. | nyamatongwe | 1 | -21/+199 | |