Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-21 | Replaced call to deprecated gtk_widget_set_uposition with gtk_window_move | nyamatongwe | 1 | -1/+5 | |
when on GTK+ 2.x. | |||||
2008-12-16 | Namespace work for OS X / XCode compatibility. | nyamatongwe | 1 | -1/+7 | |
2008-12-12 | Added namespace support. | nyamatongwe | 1 | -0/+4 | |
2008-10-09 | Bug #2056209 avoiding hidden variable warnings with Sun Studio. | nyamatongwe | 1 | -21/+21 | |
2007-12-01 | Patch to use GTK+ g_snprintf for platforms that do not have snprintf. | nyamatongwe | 1 | -9/+5 | |
From scintilla-interest thread "Compatibility patch for GTK part". | |||||
2007-07-08 | More related projects. | nyamatongwe | 1 | -1/+2 | |
2007-07-07 | Allows the popup to be displayed below as long as it can fit on the monitor | nyamatongwe | 1 | -0/+27 | |
the cursor is on rather than flipping up above the current point when near bottom of window. Implemented for GTK+ by John Ehresman. Partial Windows implementation #ifdefed out because it uses calls unavailable on Windows 95. | |||||
2007-06-15 | Correctly measure widths of Latin1 characters that take 2 bytes in UTF-8. | nyamatongwe | 1 | -6/+16 | |
2007-06-14 | Handle positioning for ligatures like fi and fl better. Pango treats these | nyamatongwe | 1 | -3/+13 | |
as one cluster so the width of the cluster is spread amongst the bytes. | |||||
2007-05-11 | Only perform alpha blending on rectangles with positive widths to | nyamatongwe | 1 | -2/+2 | |
avoid warnings. Tracing on GTK+ goes to standard error so is not buffered. | |||||
2007-04-19 | All Unicode planes supported, not just the Basic Multilingual Plane. | nyamatongwe | 1 | -3/+3 | |
2007-01-03 | Remove [MSVC] compile-time warnings for "empty" controlled statement and ↵ | rdaneelolivaw | 1 | -4/+4 | |
gboolean != bool | |||||
2006-12-07 | Fixed problem on Solaris where "LATIN1" wasn't supported by iconv so typing had | uid22944 | 1 | -1/+1 | |
no effect. | |||||
2006-08-09 | Support for Thai. | nyamatongwe | 1 | -2/+2 | |
2006-06-08 | Added support for //TRANSLIT option to iconv to allow approximate | nyamatongwe | 1 | -21/+2 | |
conversions, such as when pasting UTF-8 text and the buffer is set to an encoding that does not support all of the characters on the clipboard. | |||||
2006-05-21 | Default to Sans font when Pango enabled. | nyamatongwe | 1 | -2/+4 | |
2006-05-18 | Patch from bug 1489948 to stop using deprecated calls on GTK+ 2. | nyamatongwe | 1 | -12/+22 | |
2006-04-25 | Set of patches from John Ehresman: | nyamatongwe | 1 | -2/+32 | |
Make sure the ListBox widget is created before modifying it. Call DropGraphics() when a widget is unmapped to conserve resources and because DropGraphics() ends up being called from the map signal handler so nothing is saved by not calling it. Remove the nearly identical accent / character macro re-definitions. Make sure widget is realized before grabbing the primary selection. Ensure the caret is visible after a selection is pasted. Ensure uri data is NULL-terminated before calling NotifyURIDropped. Use correct call, gdk_region_destroy, to free a region. The fixed-height-mode property is used to optimize display of large autocompletion lists. This property was added in gtk 2.4, but is probed for at runtime so the code should work with older gtk versions. The active color is set to the selected color on the list box so the selected lines are more clearly selected when the listbox widget does not have the focus. The autocompletion popup never gets the focus so the active color ends up being used. | |||||
2006-03-26 | Fixed warnings from recent GCC. | nyamatongwe | 1 | -3/+4 | |
2006-02-26 | Translucency implementation for INDIC_ROUNDBOX and caret line. | nyamatongwe | 1 | -0/+84 | |
2006-02-23 | Made number of colours in a palette dynamic so that large numbers of | nyamatongwe | 1 | -7/+23 | |
colours will work. | |||||
2005-08-04 | Patch, mostly from Naba, to make work with Pango 1.8. | nyamatongwe | 1 | -10/+23 | |
2005-07-18 | Support for Cyrillic code page 1252 on GTK+. | nyamatongwe | 1 | -0/+4 | |
2005-06-07 | Commented out currently unused size measurement string. | nyamatongwe | 1 | -2/+4 | |
Hiding sizing measurement string with ifdef except when used. | |||||
2005-05-16 | Added ISO 8859-15 character set. | nyamatongwe | 1 | -0/+4 | |
2005-04-18 | Protect recent fix from being used on old GTK+ versions where | nyamatongwe | 1 | -0/+4 | |
gtk_get_current_event_time not available. | |||||
2005-04-11 | Fixed 1179713 by masking message box styles before comparison. | nyamatongwe | 1 | -1/+2 | |
2005-03-25 | Patch from Blair McGlashan for autocompletion on Windows to | nyamatongwe | 1 | -2/+38 | |
* Set maximum width of list * set maximum height of list * better calculate width * use ellipsis when text is truncated to fit window * use popup window so it can extend past parent window * disallow resizing too small * draw to bottom edge when resized so last item not full line high * improve time to display by by 90% Minor tweaks by me to fix warnings, layout etc. | |||||
2005-03-08 | Patch from Naba to avoid setting cursor on NULL GdkWindow. | nyamatongwe | 1 | -1/+2 | |
2004-10-03 | Patch from Shane Caraveo for GTK+ 2 to make finishing | nyamatongwe | 1 | -5/+10 | |
autocomplete with a prefix not matching any item in the list not cause the prefix to be deleted. | |||||
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. |