aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2009-08-14Fixed problem with drag and drop of rectangular selectionnyamatongwe1-9/+8
to position after selection where position was not adjusted for removal of every piece of selection.
2009-08-13Using simple variables to hold pkg-config info so not runnyamatongwe1-4/+4
for every compile.
2009-07-25Protection against NULL pointer when copying empty selection.nyamatongwe1-3/+4
2009-07-24Updated deps.nyamatongwe1-201/+174
2009-07-21Using std::string rather than SString.nyamatongwe1-0/+1
2009-07-21Removed SString.h.nyamatongwe2-105/+102
2009-07-21Using a much simpler property set implementation.nyamatongwe1-0/+1
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString.
2009-07-21Replacing SString with std::string.nyamatongwe1-1/+0
2009-07-14Include vector as needed by Selection.nyamatongwe1-0/+2
2009-07-12Removed trace.nyamatongwe1-1/+0
2009-07-12Allow setting the modifier key to be used for rectangularnyamatongwe1-13/+38
selection on GTK+. Paste can be performed in virtual space on GTK+
2009-07-10Duplicate works on discontiguous selections by duplicating each selection.nyamatongwe1-2/+1
UndoGroup class simplifies grouping actions together in the undo history.
2009-07-07Using the last style on a line to determine the width of a virtual spacenyamatongwe1-2/+1
rather than use the default style. This adapts better for comments which use a different font.
2009-07-06Made drag into virtual space work for some cases on GTK+.nyamatongwe1-15/+17
2009-07-04Made drag and drop work - return value from PositionInSelection was changednyamatongwe1-1/+1
for multiple selection.
2009-07-03Use screen point for caret that includes virtual spcace so that, fornyamatongwe1-2/+2
example, the IME appears near the caret when the caret is in virtual space. Changed LocationFromPosition to work on a SelectionPosition and added convenience method for finding screen point of main caret.
2009-07-03Discontiguoues selection and virtual space initial commit.nyamatongwe3-17/+24
2009-06-13Patch from Wingware to make width of autocompletion morenyamatongwe1-5/+26
consistent by ensuring width of pixmap taken into account even when no pixmap yet displayed.
2009-05-19Fix for bug #2793806 warnings for typpe punned pointer from g++.nyamatongwe1-12/+19
Still type punning but g++ lets this through.
2009-05-06First stage of Cocoa platform addition.nyamatongwe1-54/+54
Changed identifier id since this is a reserved word in Objective C. SCI_LEXER and SCI_NAMESPACE turned on automatically for OS X native compilation.
2009-05-03Turned on exceptions.nyamatongwe3-665/+828
Translate exceptions into status codes before leaving Scintilla. Pick up status codes in SciTE and throw a ScintillaFailure exception. SciTE on Windows catches ScintillaFailure, shows message and exits.
2009-04-21Replaced call to deprecated gtk_widget_set_uposition with gtk_window_movenyamatongwe1-1/+5
when on GTK+ 2.x.
2009-04-12Annotations and text margins added.nyamatongwe2-41/+93
2009-03-29Lexer for SML. Feature Request #2710950.nyamatongwe2-1/+4
2009-03-04Nimrod lexer from Andreas Rumpf added.nyamatongwe2-5/+8
2009-02-14Fix from Todd to make Unicode calltips work on GTK+.nyamatongwe1-0/+2
2009-01-23Reinstated EScript after license returned to standard Scintilla license.nyamatongwe3-6/+13
2009-01-22EScript removal.nyamatongwe1-4/+0
2009-01-22Removal of EScript lexer cause changes to build files, etc.nyamatongwe2-9/+6
2009-01-01Lexer for PowerPro from Christopher Bean.nyamatongwe2-4/+7
2008-12-16Namespace work for OS X / XCode compatibility.nyamatongwe1-1/+7
2008-12-13Lexer added for SORCUS Installation files.nyamatongwe2-3/+6
2008-12-12Added namespace support.nyamatongwe2-0/+8
2008-10-22Addition of lexers for TAL, TACL, and COBOL from ozlooper. FR #2127406nyamatongwe2-8/+18
2008-10-09Bug #2056209 avoiding hidden variable warnings with Sun Studio.nyamatongwe2-24/+24
2008-09-14Added LexMySQL by Anders Karlsson.nyamatongwe2-4/+7
2008-06-15Casts to make recent gcc happy about string literals as gchar*.nyamatongwe1-5/+5
2008-02-25Changed case of include files so it works when cross-compilingnyamatongwe1-1/+1
on Unix using mingw32.
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.
2008-01-18PowerShell lexer implemented by Tim Gerundt.nyamatongwe2-3/+6
2007-12-31Added Magik lexer.nyamatongwe2-5/+8
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-12-01Patch to use GTK+ g_snprintf for platforms that do not have snprintf.nyamatongwe1-9/+5
From scintilla-interest thread "Compatibility patch for GTK part".
2007-11-04Added support for 'R' language by Stephen Stagg.nyamatongwe2-1/+4
2007-09-08Lexer for Asymptote.nyamatongwe2-10/+13
2007-07-25Fixed header order for changed ContractionState.nyamatongwe1-3/+3
2007-07-08More related projects.nyamatongwe1-1/+2
2007-07-07Allows the popup to be displayed below as long as it can fit on the monitornyamatongwe1-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-07-04Use gtk_clipboard_set_can_store so copied text can be pasted afternyamatongwe1-18/+15
application exit.