aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
AgeCommit message (Collapse)AuthorFilesLines
2008-02-08Fixed comment.nyamatongwe1-2/+2
2008-01-19CopyAllowLine from 280Z28 / Sam Harwell that reproduces Visual Studio'snyamatongwe1-7/+7
behaviour when performing copy on an empty selection copies the current line.
2007-12-04Bug 1843212. Changed version check for using the new clipboard APIs tonyamatongwe1-1/+1
2.6 so will compile on 2.4.
2007-07-25Fixed header order for changed ContractionState.nyamatongwe1-3/+3
2007-07-04Use gtk_clipboard_set_can_store so copied text can be pasted afternyamatongwe1-18/+15
application exit.
2007-06-12Protection from calling GTK+ 2 functions on GTK+ 1.nyamatongwe1-0/+2
2007-06-10Patch from Enrico Tröger to default caret blink rate to GTK+ defaults.nyamatongwe1-0/+18
2007-06-02Addition of PositionCache module which adds cacing of stringnyamatongwe1-0/+1
to position information and segments long pieces of text so they can be handled more efficiently.
2007-05-27Fix to primary selection to not include URI format.nyamatongwe1-1/+1
2007-05-12Avoid dragging text onto itself as this produces undo actions but nonyamatongwe1-5/+16
real effect and is often accidental.
2007-05-12Bug fix from Enrico Tröger for GTK+ does not place a text/uri-listnyamatongwe1-13/+14
target on the clipboard as this allows Open Office to see the text and correctly paste it.
2007-05-12Drag operation does not start until mouse has been dragged more thannyamatongwe1-1/+12
a threshold distance. Using platform threshold when possible. Moved some common dragging code on Windows into EffectFromState.
2007-04-05Implemented decorations which are extended indicators.nyamatongwe1-0/+2
2007-01-03Remove [MSVC] compile-time warnings for "empty" controlled statement and ↵rdaneelolivaw1-3/+1
gboolean != bool
2007-01-02Separated the cell buffer into substance and style buffers.nyamatongwe1-1/+1
2007-01-01Major change to CellBuffer class with addition of Partitioning class and ↵nyamatongwe1-0/+2
SplitVector template. Inserting and deleting lines are made more efficient by lessening the amount of per line information copied. Marker data is only allocated for each line if markers are added.
2006-12-19Patch from Stephan Deibel to disable the adaptive mouse wheel scrolling ↵nyamatongwe1-1/+10
algorithm on OS X because there the most common X11 server (Apple's) already includes an algorithm like this that ends up magnifying the magnifications.
2006-08-22Added key code for the right hand side Windows key.nyamatongwe1-0/+2
2006-08-22Changed default drag action to move.nyamatongwe1-4/+7
2006-08-22Basic recognition of the Windows and Context Menu keys as SCK_WIN andnyamatongwe1-0/+4
SCK_MENU so that these keys don't commands associated with their values ('[' and ']'). SCK_WIN can be mapped on both platforms but if SCK_MENU is mapped on Windows it executes both the mapped command and shows the context menu. Called "Win" and "Menu" in SciTE but only "Win" documented.
2006-08-17Changes to horizontal scrolling.nyamatongwe1-13/+19
Patch from Stephan Deibel handles left/right scroll events. Changed horizontal page and step increments to be more useful.
2006-06-18Patch from Robert Roessler to support DROPFILES_DND as equivalent formatnyamatongwe1-1/+4
to text/uri-list.
2006-06-15Only allow setting the code page to valid values.nyamatongwe1-0/+5
2006-06-08Added support for //TRANSLIT option to iconv to allow approximatenyamatongwe1-9/+10
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-31Attempting to move all keyboard input on GTK+ 2.x to using input method.nyamatongwe1-111/+34
2006-05-18Patch from bug 1489948 to stop using deprecated calls on GTK+ 2.nyamatongwe1-51/+180
2006-05-14Added CharClassify and reordered alphabetically.nyamatongwe1-1/+1
2006-04-28Moved uri-list to first preference in formats so that files dragged fromnyamatongwe1-13/+17
recent version of Nautilus will trigger URI dropped notification rather than copy text into document.
2006-04-25Set of patches from John Ehresman:nyamatongwe1-13/+10
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-04-04Patch from John Ehresman that transforms line ends when text is copied tonyamatongwe1-11/+17
the clipboard for gtk 2 on win32, as well as gtk 1.
2006-02-25Patch from Greg Smith with further modifications moved characternyamatongwe1-0/+1
classification from Document into a separate CharClassify class and file and uses this from RESearch for regular expression word end \< and \> instead of built-in table.
2006-01-26Patch from John Ehresman to correctly allocate the text display area whennyamatongwe1-11/+11
the vertical scroll bar is hidden. It also hides the scroll bar widgets themselves.
2005-11-15Check whether area is being painted against the update region,nyamatongwe1-1/+31
not just the bounding box of this region. This ensures that a need to abandon a paint when a restyle affects text outside the area being painted.
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