Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-05-29 | As of GTK+ 3.16, gdk_cursor_new is deprecated and has been replaced with | Neil | 1 | -4/+6 | |
gdk_cursor_new_for_display. | |||||
2015-05-22 | GTK: Fill the scrollbars junction | Colomban Wendling | 1 | -0/+18 | |
Fill the scrollbars junction square with the appropriate style on GTK version having a style for it (GTK >= 3.4). Mostly fixes [bugs:#1611]. | |||||
2015-05-13 | Make a single argument constructor explicit. | Neil | 1 | -1/+1 | |
2015-03-30 | Use inline IME for Korean and decide whether input is Korean more accurately. | Neil | 1 | -6/+7 | |
From johnsonj. | |||||
2015-02-11 | Don't disable adaptive speed of scrolling on OS X with GTK Quartz backend | Jiřà Techet | 1 | -3/+4 | |
There does not seem to be any adaptive scroll speed control when using the Quartz backend so we can use the one provided by Scintilla. | |||||
2015-01-22 | Since gtk_widget_set_double_buffered is deprecated by GTK+ 3.14, only use it | Neil Hodgson | 1 | -0/+2 | |
when building for earlier versions. | |||||
2015-01-22 | Specify methods that do not use this as static. | Neil Hodgson | 1 | -2/+2 | |
2015-01-22 | Fix incorrect call. Was supposed to avoid empty drop. | Neil Hodgson | 1 | -1/+1 | |
2015-01-14 | Make Japanese IME work in windowed mode. | Neil Hodgson | 1 | -1/+1 | |
From johnsonj. | |||||
2015-01-02 | Use gtk_clipboard_request_contents() instead of gtk_selection_convert() for ↵ | Jiří Techet | 1 | -2/+12 | |
paste on GTK When compiling Scintilla on OS X with GTK2 backend (and GTK2 with Quartz backend), gtk_selection_convert() doesn't work. GtkClipboard seems to work fine though. | |||||
2014-12-17 | More natural looping over visual attributes. | Neil | 1 | -3/+3 | |
2014-12-09 | Using indicators for inline IME. | Neil | 1 | -127/+251 | |
From johnsonj. | |||||
2014-12-05 | Extract FillVirtualSpace so it is not repeated and can be made less complex in | Neil | 1 | -4/+1 | |
the future. | |||||
2014-10-11 | GTK: Don't create widgets in the ::realize handler | Colomban Wendling | 1 | -13/+16 | |
Creating a widget may lead to a ::hierarchy-changed signal to be emitted, which itself may lead a tooltip window to be unrealized. This is problematic because it can lead to the ::unrealize handler to be called during the ::realize handler, breaking most of the logic there assuming the widget was properly realized. This fixes adding a Scintilla widget inside a GTK2 tooltip. GTK3 didn't seem to be affected. Also properly destroy the preedit popup window with the widget. | |||||
2014-10-09 | Avoid extra space when pasting from external application on Windows. | Neil | 1 | -0/+7 | |
From Mitchell Foral. | |||||
2014-10-06 | Include <stdexcept> due to report of a problem with compiling Document.h. | Neil | 1 | -0/+1 | |
2014-09-03 | Normalise header inclusion order. | Neil | 1 | -1/+1 | |
2014-08-11 | Handle empty pre-edit string. | Neil | 1 | -1/+1 | |
From johnsonj. | |||||
2014-08-08 | Allow IME to be displayed inline for Korean. | Neil | 1 | -28/+133 | |
From johnsonj. | |||||
2014-08-05 | Create a class to manage pre-edit strings and ensure their resources are freed. | Neil | 1 | -33/+31 | |
2014-07-15 | Implement separate timers for each type of periodic activity and turn them ↵ | Neil Hodgson | 1 | -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-07-08 | Split out EditModel, MarginView, and EditView classes into separate files. | Neil | 1 | -0/+3 | |
2014-07-08 | Specifying some methods as const as they are used from display and measurement | Neil | 1 | -3/+4 | |
code that will be changed to have read-only access. | |||||
2014-05-24 | Header include statements are now in a standardised order with that order | Neil | 1 | -13/+15 | |
defined in scripts/HeaderOrder.txt. | |||||
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 | |