aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2014-07-15Implement separate timers for each type of periodic activity and turn them ↵Neil Hodgson1-16/+41
on and off as required. This saves power as there are fewer wake ups. A tolerance value is provided so that platforms that support coalescing timers, Windows 8+ and OS X 10.9+, can use them. The previous global 100 millisecond timer may still be used by non-core platforms.
2014-06-20Protect against calling Cairo function on versions of Cairo before it existed.nyamatongwe1-0/+2
2014-07-08Updated make dependencies for new files.Neil1-47/+98
2014-07-08Split out EditModel, MarginView, and EditView classes into separate files.Neil2-1/+5
2014-07-08Specifying some methods as const as they are used from display and measurementNeil1-3/+4
code that will be changed to have read-only access.
2014-06-24Ensure context is not freed for measurement surfaces as it is NULL.Neil1-1/+1
2014-06-23GTK: Don't create unnecessary drawing contextsColomban Wendling1-14/+9
When surfaces are created without an explicit target surface they are only used for measurement purposes, so don't create a unnecessary drawing context out of the widget's surface. This avoid calling gdk_cairo_create() outside a draw handler, which GTK 3.14 stops allowing [1]. [1] https://mail.gnome.org/archives/gtk-devel-list/2014-June/msg00010.html
2014-06-16Fix crashes on Ubuntu 12.04 caused by overlay scrolll bar causing the drawingNeil1-0/+16
surface to be finished.
2014-05-31Remove definitions that are provided by make.Neil1-4/+0
2014-05-31Compatibility with makefile conventions: use CXX for C++ compiler and CC forNeil1-7/+7
C compiler. Allow overriding file deletion command on command line so that 'rm' can be used when cross-compiling from Unix to Windows.
2014-05-24Header include statements are now in a standardised order with that orderNeil1-13/+15
defined in scripts/HeaderOrder.txt.
2014-05-19Fix missing redraws on GTK < 3.9.2Colomban Wendling1-5/+15
Also, make the recent redraw fixes depend on the GTK version Scintilla is running against, rather than built against. This allows for the same build to work with both GTK < 3.9.2 or >= 3.9.2.
2014-05-14GTK: Avoid flickering when wrapping linesColomban Wendling1-1/+1
2014-05-14Bug [#1567]. Fix display flashing when scrolling with Gtk+ 3.10.Neil1-4/+23
Includes work from Sébastien Granjoux and Colomban Wendling.
2014-05-02Use exact SciFnDirect function signature for DirectFunction as earlier versionNeil1-3/+3
depended on undefined behaviour.
2014-05-02Enable building with Clang undefined behaviour sanitizer.Neil1-2/+6
2014-05-01Consolidate insertion for paste into Editor class and perform line endNeil1-9/+3
conversion in Editor.
2014-04-18Fix calls deprecated in GTK+ 3.10.Neil1-2/+11
2014-04-16Allow filtering of insertions.Neil1-2/+3
2014-01-21Using ELEMENTS for clarity and safety. Avoid memset for safety.Neil2-4/+5
2014-01-18Draw cicles centred as intended so that folding margin markers look correct.Neil1-1/+1
2013-12-22Avoid unsafe strcpy, strncpy, and strcat replacing with safer functions whichNeil2-8/+7
guaranty termination where possible.
2013-12-15Make single argument constructors explicit to avoid unexpected conversions.Neil2-4/+4
2013-12-15Format normalization - whitespace and braces made consistent.Neil1-8/+9
Parameter names added to method declarations.
2013-11-16ScintillaGTK: Call superclass finalize() in ScintillaObjectThomas Martitz1-5/+5
The ScintillaObject class does not chain up to its superclass in the finalize() function. This is a bug and must be done according to the GLib/GObject documentation. One effect of this is that the destroy notifiers supplied in e.g. g_object_set_data_full() are never run. Fixes Bug: #1549 ScintillaObject.finalize() does not chain up
2013-11-14ScintillaGTK: Call superclass finalize() in ScintillaObjectThomas Martitz1-0/+4
The ScintillaObject class does not chain up to its superclass in the finalize() function. This is a bug and must be done according to the GLib/GObject documentation. One effect of this is that the destroy notifiers supplied in e.g. g_object_set_data_full() are never run. Fixes Bug: #1549 ScintillaObject.finalize() does not chain up
2013-11-07Bug [#1546]. Fix horizontal scroll bar range to not be double the needed width.Unknown1-5/+5
2013-11-03Clean line-end whitespace.Unknown1-2/+2
2013-11-03Avoid warnings for scope and unused value set.Neil1-2/+3
2013-11-03Report control key as SCI_META for mouse down events for GTK+ on OS X.nyamatongwe1-7/+13
Also enables more flexibility with modifier keys.
2013-09-30Added FocusIn and FocusOut notification events (SCN_FOCUSIN/SCN_FOCUSOUT) to beNeil1-0/+1
used in preference to the SCEN_SETFOCUS and SCEN_KILLFOCUS command events.
2013-09-10Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵Neil2-3/+3
gcc.
2013-09-10Drop warning setting -Wno-missing-braces since this has had no effect since ↵Neil1-1/+1
gcc 4.2.
2013-09-04Fix namespace compilation errors when SCI_NAMESPACE defined.Neil2-22/+10
2013-08-15Feature: [feature-requests:#1007]. Option to allow mouse selection toNeil1-1/+4
switch to rectangular by pressing Alt after start of gesture. From Neomi.
2013-08-15Use system symbol for constant.Neil1-1/+1
2013-08-09Move wrapping, edge and visual adjustments from Editor to ViewStyle.Neil1-2/+2
Move printing parameters into a separate struct.
2013-08-07Include lexlib and lexers directory in make dependencies.Unknown2-2/+397
2013-07-23Only use map for character representations instead of unordered_map where ↵nyamatongwe1-3/+0
possible. unordered_map caused too many porting problems.
2013-07-22Added the character representation feature.Neil1-0/+3
2013-07-22Bug: [#1470] Fix GTK+ crash for Hebrew text.Unknown1-2/+14
2013-07-21Normalising order of language headers.Neil2-3/+3
2013-07-21Separating out C and C++ flags so that Clang works agin for C files.Unknown1-5/+6
2013-07-21Add standard compliance flag.Unknown1-2/+2
2013-07-21Replaced M_PI with a local constant kPi since M_PI is not defined by ISO C/C++.Unknown1-2/+4
2013-07-21Standardising header guards and namespaces.Neil1-0/+13
2013-07-19Updated dependencies.Unknown1-12/+18
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil2-30/+14
case conversion of Unicode text in accordance with Unicode.
2013-07-01Added CharacterCategory.Neil1-1/+1
2013-06-18Renaming variables to explain their role better.Unknown1-19/+19