Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-05-19 | Fix missing redraws on GTK < 3.9.2 | Colomban Wendling | 1 | -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-14 | GTK: Avoid flickering when wrapping lines | Colomban Wendling | 1 | -1/+1 | |
2014-05-14 | Bug [#1567]. Fix display flashing when scrolling with Gtk+ 3.10. | Neil | 1 | -4/+23 | |
Includes work from Sébastien Granjoux and Colomban Wendling. | |||||
2014-05-02 | Use exact SciFnDirect function signature for DirectFunction as earlier version | Neil | 1 | -3/+3 | |
depended on undefined behaviour. | |||||
2014-05-01 | Consolidate insertion for paste into Editor class and perform line end | Neil | 1 | -9/+3 | |
conversion in Editor. | |||||
2014-04-18 | Fix calls deprecated in GTK+ 3.10. | Neil | 1 | -2/+11 | |
2014-04-16 | Allow filtering of insertions. | Neil | 1 | -2/+3 | |
2014-01-21 | Using ELEMENTS for clarity and safety. Avoid memset for safety. | Neil | 1 | -2/+3 | |
2013-12-15 | Make single argument constructors explicit to avoid unexpected conversions. | Neil | 1 | -2/+2 | |
2013-11-16 | ScintillaGTK: Call superclass finalize() in ScintillaObject | Thomas Martitz | 1 | -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-14 | ScintillaGTK: Call superclass finalize() in ScintillaObject | Thomas Martitz | 1 | -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-07 | Bug [#1546]. Fix horizontal scroll bar range to not be double the needed width. | Unknown | 1 | -5/+5 | |
2013-11-03 | Clean line-end whitespace. | Unknown | 1 | -2/+2 | |
2013-11-03 | Avoid warnings for scope and unused value set. | Neil | 1 | -2/+3 | |
2013-11-03 | Report control key as SCI_META for mouse down events for GTK+ on OS X. | nyamatongwe | 1 | -7/+13 | |
Also enables more flexibility with modifier keys. | |||||
2013-09-30 | Added FocusIn and FocusOut notification events (SCN_FOCUSIN/SCN_FOCUSOUT) to be | Neil | 1 | -0/+1 | |
used in preference to the SCEN_SETFOCUS and SCEN_KILLFOCUS command events. | |||||
2013-09-10 | Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵ | Neil | 1 | -2/+2 | |
gcc. | |||||
2013-09-04 | Fix namespace compilation errors when SCI_NAMESPACE defined. | Neil | 1 | -9/+9 | |
2013-08-15 | Feature: [feature-requests:#1007]. Option to allow mouse selection to | Neil | 1 | -1/+4 | |
switch to rectangular by pressing Alt after start of gesture. From Neomi. | |||||
2013-08-15 | Use system symbol for constant. | Neil | 1 | -1/+1 | |
2013-08-09 | Move wrapping, edge and visual adjustments from Editor to ViewStyle. | Neil | 1 | -2/+2 | |
Move printing parameters into a separate struct. | |||||
2013-07-23 | Only use map for character representations instead of unordered_map where ↵ | nyamatongwe | 1 | -3/+0 | |
possible. unordered_map caused too many porting problems. | |||||
2013-07-22 | Added the character representation feature. | Neil | 1 | -0/+3 | |
2013-07-21 | Normalising order of language headers. | Neil | 1 | -2/+2 | |
2013-07-11 | Include case conversion data in Scintilla so that all platforms will perform | Neil | 1 | -29/+13 | |
case conversion of Unicode text in accordance with Unicode. | |||||
2013-06-18 | Renaming variables to explain their role better. | Unknown | 1 | -19/+19 | |
2013-06-18 | Bug: [#1488] Simplify gtk scrollbar resize code. | Unknown | 1 | -10/+3 | |
From Todd Whiteman at ActiveState. | |||||
2013-06-06 | Disable methods required for GTK+ 3 when building for GTK+ 2. | Unknown | 1 | -0/+6 | |
2013-05-26 | Switch SelectionText to use a std::string to hold the data and to provide ↵ | nyamatongwe | 1 | -14/+15 | |
accessors to this data. Add a length argument to DropAt, although previous signature still available. | |||||
2013-05-25 | Use simplified call to set SelectionText from std::string. | Neil Hodgson | 1 | -16/+18 | |
Change input argument of ConvertText to const as it is not changed. | |||||
2013-05-25 | Bug: [#1481]. Incorrect event copying on GTK+ 3.x. | Neil Hodgson | 1 | -5/+14 | |
2013-05-25 | Fix crashes with SelectionText instances that did not have \0 terminators. | Neil Hodgson | 1 | -7/+7 | |
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -2/+2 | |
2013-05-23 | Always display editor text in LTR direction | Yosef Or Boczko | 1 | -1/+4 | |
2013-05-23 | Switch to calls compatible with old compilers/run times so that cross compiling | nyamatongwe | 1 | -1/+1 | |
Linux -> OS X works. From Mitchell Foral. | |||||
2013-05-06 | Indentation formatting. | Neil Hodgson | 1 | -16/+15 | |
2013-05-06 | Simplify CaseMapString by grouping the code that requires conversion | Neil Hodgson | 1 | -19/+26 | |
from and to UTF-8 together. Wrapping the allocation ensures deallocation in all cases. | |||||
2013-05-04 | Replacing raw pointers and allocations with std::vector and std::string. | Neil Hodgson | 1 | -106/+63 | |
2013-05-01 | Removed SVector.h and all references as it is no longer used. | nyamatongwe | 1 | -1/+0 | |
2013-04-19 | Remove unused methods. | nyamatongwe | 1 | -30/+0 | |
2013-03-13 | Implement high-priority idle work on Cocoa to avoid abandoning paints in ↵ | nyamatongwe | 1 | -1/+1 | |
some situations. Rename IdleStyling to IdleWork. | |||||
2013-03-13 | Call UpdateUI before blit scrolling so caret change will have been processed | Unknown | 1 | -0/+1 | |
and brace highlighting updated before painting. | |||||
2013-03-13 | Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded. | Unknown | 1 | -5/+5 | |
Ask to perform update UI work for some selection moves. | |||||
2013-01-01 | Avoid deprecated threads APIs when using GDK >= 3.6. | Neil Hodgson | 1 | -0/+8 | |
2012-09-05 | Fix crashes on Ubuntu with GTK+3 where scroll bar changes invalidate the | nyamatongwe | 1 | -0/+4 | |
drawing surface. | |||||
2012-05-27 | Disable a warning that clang 3.0 gives incorrectly. | Neil Hodgson | 1 | -0/+5 | |
2012-05-08 | Add some casts to avoid narrowing warnings from g++ 4.7. | nyamatongwe | 1 | -2/+2 | |
2012-04-29 | Ignore smooth scrolling events. | nyamatongwe | 1 | -0/+7 | |
2012-04-29 | Fix deprecation warning for GTK+ 3.4. | nyamatongwe | 1 | -0/+5 | |
2012-03-11 | Make mouse wheel scrolling work again on recent GTK+. Bug #3501321. | nyamatongwe | 1 | -0/+1 | |
From Sébastien Granjoux. |