aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
AgeCommit message (Collapse)AuthorFilesLines
2005-11-02Updated id to match uptr_t in header.nyamatongwe1-1/+1
2005-09-01Avoid runtime warning by only calling gdk_window_resize when calltip windownyamatongwe1-3/+3
set to not be NULL.
2005-04-18Make code work as documented by treating -1 as special length for encodingnyamatongwe1-1/+1
as UTF-8 rather than 0.
2005-04-11Problem fixed when performing paste over rectangular selection wherenyamatongwe1-1/+1
selection dragged from top right to bottom left.
2005-03-19Initialise all SCNotification structs to {0} ensuring all fields are 0 ornyamatongwe1-3/+3
NULL. Added options to make files so that this does trigger warnings.
2005-03-15Patch from Naba Kumar and John Ehresman that fixes crashes due to accessnyamatongwe1-11/+19
the preedit widget when it is not active.
2005-02-06Exits from dwell by firing SCN_DWELLEND when scroll performed.nyamatongwe1-0/+2
2005-02-04Changed requisition height to be screen height so containers withnyamatongwe1-1/+1
no sizing policy are not expanded too far beyond screen bounds.
2005-02-02Patch from Naba fixes crash on 64 bit platforms.nyamatongwe1-2/+2
2004-10-03Patch from Stephan Deibel for GTK+ that makes rectangularnyamatongwe1-9/+12
selection use Alt rather than Ctrl on Windows so that it follows the platform convention.
2004-09-19Patch from Shane Caraveo to apply the background drawingnyamatongwe1-4/+4
avoidance patch on GTK+ 1.x.
2004-08-09Moved ConvertLineEnds from ScintillaGTK to Document so that it can be usednyamatongwe1-33/+3
on other platforms. Changed name to TransformLineEnds as Document already had a ConvertLineEnds.
2004-07-10Fix from John Ehresman for immediately redrawing exposednyamatongwe1-0/+1
areas when scrolling.
2004-06-01Patch for allowing retrieval of document text encoded asnyamatongwe1-34/+119
UTF-8 and converting from UTF-8 to the document encoding.
2004-05-16Do not use new GtkClipboard code on GTK+ 2.0.x asnyamatongwe1-7/+11
it was not available until 2.2.
2004-05-11Modifications to selection handling to make copying andnyamatongwe1-56/+54
pasting from/to various encodings work.
2004-04-26Avoid unused parameter warning on GTK+ 2.nyamatongwe1-0/+1
2004-04-25Patch from John ensures iconv only used when available.nyamatongwe1-13/+14
Moved atom initialisation to ScintillaGTK::ClassInit to avoid any threading issues.
2004-04-17Fix copy of ASCII text to clipboard.nyamatongwe1-3/+5
2004-04-17Patch from John Ehresman to allow clipboard to live beyondnyamatongwe1-73/+160
life of Scintilla widget and to remember character set of selections so they can be converted.
2004-04-07Patch from John Ehresman to avoid extra drawing of backgroundnyamatongwe1-1/+19
which can be slow especially with some themes.
2004-04-04Patch from Johannes Schmid to make signals from Scintillanyamatongwe1-3/+5
work on AMD 64 where sizeof(int) != sizeof(void *).
2004-04-02Patch from Pavol Bosik to ensure calltips stay on screen.nyamatongwe1-1/+1
2004-03-07Fixed primary selection copy to self.nyamatongwe1-1/+1
2004-02-22Added patch to input method show preedit window.nyamatongwe1-10/+110
Patch author: Yuiga.
2004-02-20Patch from John Ehresman to fix sizing problems when Scintillanyamatongwe1-0/+1
embedded in a notebook.
2004-01-31Chooses between input method or standard keyboard reading basednyamatongwe1-18/+8
on whether character set is Asian or not. Encapsulated access to iconv in Converter class.
2004-01-31Attempt at allowing both input methods for Asian character setsnyamatongwe1-43/+67
and sensible conversion to 8 bit for European character sets.
2004-01-25Patch from John Ehresman to avoid gdk warnings because ofnyamatongwe1-0/+1
unbalanced reference counts on widget style.
2003-12-23Fixed unused parameter warnings.nyamatongwe1-8/+9
2003-12-15Changes to allow international input on GTK+ 2.nyamatongwe1-2/+62
2003-10-09Patch from Jim Cape for GTK+ 2.3 compatibility.nyamatongwe1-3/+22
2003-10-04Adaptor template to allow use of versions of iconv that use a constnyamatongwe1-2/+10
source parameter as well as versions that use non-const.
2003-09-26Fixed compilation for GTK+ 1.x.nyamatongwe1-1/+1
2003-09-20Updated to match SetIdle return type.nyamatongwe1-1/+1
2003-09-20Patch from Naba to perform incremental wrapping in idle time.nyamatongwe1-2/+3
2003-09-18Idle time support.nyamatongwe1-5/+37
Changed character set names to work on FreeBSD.
2003-09-14Fixed bugs when converting keycodes into non-Unicode text.nyamatongwe1-1/+3
iconv_open arguments reversed. Do not mask out high byte on GTK+ 2.
2003-09-01Patch from Nathan Holstein to avoid NUL characters entered fornyamatongwe1-0/+4
FN+arrow keys.
2003-08-19Hoisted ConvertLineEnds out of GetGtkSelectionText as it maynyamatongwe1-25/+31
be useful in other code.
2003-08-17Added UTF-8 support for clipboard, primary selection and drag and drop.nyamatongwe1-77/+161
Disabled on Win32.
2003-08-08Protected GTK+ 2 specific code from being compiled on GTK+ 1.nyamatongwe1-0/+3
2003-08-08Patch from João to use symbols rather than literals and includenyamatongwe1-15/+23
'c' in the characters that can have an accent.
2003-08-07Patch from João Paulo F Farias to make keyboard input of accentsnyamatongwe1-1/+48
work for languages such as Brazilian Portuguese.
2003-05-11Addition of CopyText, CopyRange, and LineCopy.nyamatongwe1-0/+8
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-27Using iconv to convert input into current character set.nyamatongwe1-8/+35
2003-04-18Patch from Simon to make ExternalLexer platform independent.nyamatongwe1-2/+2
2003-04-16Fix to marshalling.nyamatongwe1-2/+4
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.