aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
AgeCommit message (Collapse)AuthorFilesLines
2003-01-28Fixed non-focus problem on mouse down reported by Vincent Spader.nyamatongwe1-1/+1
2003-01-28Made FullPaint work on GTK+ 2.nyamatongwe1-0/+4
2003-01-12International input patch from Yukihiro Nakai.nyamatongwe1-0/+13
2003-01-10Added XPM.h as the XPM support has been split out of LineMarker.h.nyamatongwe1-0/+1
2002-12-20Fixed problem with vertical scrollbar being moved out of real rangenyamatongwe1-14/+18
leading to inability to scroll at times. Added moveThumb argument to ScrollTo to allow smoother manipulation of thumb on GTK+
2002-10-11Patch from Shane that adds a font cache on GTK+.nyamatongwe1-0/+9
2002-09-19Removed last vestiges of scrollbars when turned off.nyamatongwe1-2/+2
2002-09-19Added mthod to turn off vertical scroll bar.nyamatongwe1-4/+14
2002-09-07Patch from John Ehresman to make sure the gdk window exists before itnyamatongwe1-36/+40
calls Paint.
2002-07-29Made compatible with both GTK+ 1.x and 2.x.nyamatongwe1-20/+63
SCINTILLA_NOTIFY defines the name of the notify signal used generated by Scintilla as this has changed for GTK+ 2.x due to a clash with the "notify" signal defined by GTK+.
2002-07-28Full paint now paints all of the margins as well. Required to simplifynyamatongwe1-5/+5
handling of abandoned paints where styling causes fold markers to change.
2002-07-17Patch from John Ehresman to convert clipboard text to use the line endings ↵nyamatongwe1-49/+70
of the document.
2002-07-06Made static as that seemed to be done by GTK+ 2 code.nyamatongwe1-1/+1
2002-07-05Removed check that is now redundant.nyamatongwe1-1/+1
2002-04-04Change to horizontal scrolling to allow the assumed document width to be set.nyamatongwe1-4/+9
2002-01-26Changed a cast to avoid compilation troubles on 64 bit Alphas.nyamatongwe1-1/+1
2002-01-18Updated copyrights for 2002.nyamatongwe1-1/+1
2002-01-15Added some casts to try and make it work for bug reporter.nyamatongwe1-2/+2
2002-01-10Made code bool-safe and turned Visual C++ warning 4800 back on.nyamatongwe1-11/+11
2001-12-21Changed default requisition width to 600 so does when propagated tonyamatongwe1-1/+1
container does not lead to 2000 pixel wide windows which do not fit on most screens.
2001-12-19Wrapping supported.nyamatongwe1-2/+1
2001-11-19Added virtual GetCtrlID method so that the ID can change dynamicallynyamatongwe1-4/+4
on Windoes when caused by SetWindowLong.
2001-11-02ButtonMove called even when mouse button not down to ensure cursor changesnyamatongwe1-6/+2
over margins and selection.
2001-10-28Fixed Platform changes for GTK+ and hid most of the implementation ofnyamatongwe1-17/+28
Surface.
2001-10-28Removed platform-specific headers from Platform.h and thus stoppednyamatongwe1-58/+68
visibility of these headers to most code.
2001-09-01Made work on GTK+ for X.nyamatongwe1-1/+1
2001-09-01Using new SelectionText type to handle text that is the subject of copy,nyamatongwe1-69/+58
cut, paste and drag operations. Mouse wheel scrolling moved into platform subclasses. Macro support always included so MACRO_SUPPORT definition and use removed. Allowing menu popup moved from Editor to ScintillaBase.
2001-08-17Extended Hungarian hack to make Russian work.nyamatongwe1-3/+4
2001-08-17Changed handling of keys >= 256 to try to make Russian work like Hungarian.nyamatongwe1-3/+3
2001-07-16Patch from John to change destruction of Scintilla object.nyamatongwe1-9/+17
2001-06-28Patches from Stephan to simplify preprocessor definitions for GTK+nyamatongwe1-20/+20
on Windows.
2001-06-16Patch from John for off-by-one allocation size error.nyamatongwe1-4/+4
Changed from malloc/free to new/delete.
2001-06-14Changes to make Hungarian characters appear and to improvenyamatongwe1-1/+5
font selection for non Western European languages.
2001-06-13Patch from Archaeopteryx to support mouse wheel scrolling on Win32.nyamatongwe1-6/+93
2001-05-22Patch from Stephan for rectangular clipboard format.nyamatongwe1-1/+84
2001-05-21Avoided some warnings.nyamatongwe1-1/+7
2001-05-19Patch from Stephan for ensuring clipboard works on Windows.nyamatongwe1-0/+4
2001-04-16Changed spelling mistake URIsDropped -> URIDropped.nyamatongwe1-4/+4
2001-04-14Tweaked scrollbars to start 1 pixel earlier and thus reveal their bottomnyamatongwe1-13/+8
and right edges. Further tweaking to scrolling rect to ensure no overlap with scrollbars.
2001-04-13Fixed scroll bar size problem by calling gtk_widget_size_request on eachnyamatongwe1-269/+294
scroll bar. Removed end of line spaces and ran through astyle.
2001-03-31Removed debugging from URI drop.nyamatongwe1-4/+0
2001-03-31Support for URI drag and drop on GTK+.nyamatongwe1-0/+10
2001-03-31Start of file drag and drop on GTK+.nyamatongwe1-0/+7
2001-03-23Hack around scroll bar size problem on GTK+ 1.2.9 / Gnome 1.4 by hardcodingnyamatongwe1-0/+8
width to 16 if width is 0.
2001-02-18Changed iMessage parameter of scintilla_send_message from int to unsignednyamatongwe1-1/+1
int to be compatible with other message functions.
2001-02-17Made warning in ScintillaWidget.h work better with GCC.nyamatongwe1-1/+1
2001-02-17If ScintillaWidget.h included without Scintilla.h already included displaynyamatongwe1-1/+1
a warning message and #include "Scintilla.h".
2001-02-17Changed header order to work on GTK+.nyamatongwe1-2/+2
Scintilla.h must be before ScintillaWidget.h now.
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe1-11/+11
pointers to allow portability to 64 bit platforms.
2001-02-05Added explicit initialisation of base class in copy constructor fornyamatongwe1-1/+1
ScintillaGTK to avoid warning from gcc.