Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-02 | Implemented damage region testing on GTK+ 3. | nyamatongwe | 1 | -9/+42 | |
2011-05-01 | For GTK+ 3, performing drawing in draw method instead of expose method. | nyamatongwe | 1 | -3/+135 | |
Type-safe update of clip region but not functional as always set to NULL. | |||||
2011-05-01 | Use accessor function for widget attributes and initialisation for GTK+ 3. | nyamatongwe | 1 | -0/+13 | |
2011-05-01 | Switched to GTK+ 3 calls for setting NULL backing. | nyamatongwe | 1 | -3/+8 | |
2011-05-01 | Switch from SizeRequest to GTK+ 3 preferred width and height. | nyamatongwe | 1 | -0/+19 | |
2011-05-01 | Using new key names for GTK+ 3. | nyamatongwe | 1 | -0/+74 | |
2011-05-01 | Use accessor function for allocation and style for GTK+ 3. | nyamatongwe | 1 | -8/+18 | |
2011-05-01 | Use accessor function for clipboard and drags for GTK+ 3. | nyamatongwe | 1 | -20/+43 | |
2011-05-01 | Use accessor function for adjustments and scrollbars for GTK+ 3. | nyamatongwe | 1 | -5/+53 | |
2011-05-01 | Dropped headers no longer needed and not available in GTK+ 3. | nyamatongwe | 1 | -2/+0 | |
2011-05-01 | Fixing return types of signals connected with g_signal_connect. | nyamatongwe | 1 | -20/+19 | |
2011-05-01 | Use accessor function instead of widget->window for GTK+ 3. | nyamatongwe | 1 | -27/+44 | |
2011-04-07 | Previous change to -1x-1 requisition caused warnings so use 1x1. | nyamatongwe | 1 | -2/+2 | |
2011-03-31 | Fix sizing issue in GTK+ widget. | Matthew Brush | 1 | -2/+2 | |
Rather than use an unusual default size of 600 x SCREEN_HEIGHT, request -1 x -1 for the natural widget size. | |||||
2011-03-30 | Removing empty lines. | nyamatongwe | 1 | -4/+0 | |
2011-03-28 | Reset cursors when Scintilla widget is realized. | Matthew Brush | 1 | -0/+12 | |
Solves problem which occurs when Scintilla widget is unrealized and then re-realized and the cursor is left at GDK_XTERM even over the scrollbars. When the Scintilla widget is unrealized it's GdkWindows are destroyed and so the previous cursors are lost. This commit forces default cursors on the text and scrollbar windows when the widget is realized. References: http://www.mail-archive.com/scintilla-interest@lyra.org/msg01364.html http://git.geany.org/geany/tree/plugins/splitwindow.c#n310 http://www.mail-archive.com/geany@uvena.de/msg00821.html | |||||
2011-03-28 | Fix X PRIMARY selection issue when Scintilla widget is unrealized/re-realized. | Matthew Brush | 1 | -8/+16 | |
When the widget is unrealized (for ex. with gtk_container_remove), the GdkWindows used in the widget are destroyed and when the widget is realized again (for ex. with gtk_container_add), the GdkWindows are re-created. This commit moves the gtk_selection_add_targets() calls into the RealizeThis function, so that when the widget is realized again, the selection targets are re-added on the new GdkWindow. Also add gtk_selection_clear_targets() into UnRealizeThis to remove the registered targets before the GdkWindow is destroyed. References: http://mail.gnome.org/archives/gtk-devel-list/2002-March/msg00078.html http://mail.gnome.org/archives/anjuta-devel-list/2002-March/msg00066.html http://git.geany.org/geany/tree/plugins/splitwindow.c#n310 | |||||
2011-03-26 | Make right mouse click outside selection cancel selection. Bug #3235190 | nyamatongwe | 1 | -0/+2 | |
This is compatible with Windows. From Jérôme LAFORGE. | |||||
2010-12-11 | Make multiple selection multi-paste work when multi-type is off. Bug #3126221. | nyamatongwe | 1 | -1/+1 | |
2010-12-03 | Remove styling idle in destructor to avoid crashing when idle called | nyamatongwe | 1 | -0/+1 | |
after ScintillaGTK instance destroyed. | |||||
2010-11-02 | Can draw with Cairo rather than GDK for compatibility with newer versions of ↵ | nyamatongwe | 1 | -3/+6 | |
GTK+. Will be required for GTK+ 3.0 although not tested with 3.0 or development version 2.9. Can be turned on with USE_CAIRO definition and this is selected automatically for GTK+ 2.22 or later. Cairo is antialiased so some drawing will appear different. | |||||
2010-10-21 | Using non-deprecated functions for manipulating widget flags. | Unknown | 1 | -0/+33 | |
2010-08-18 | GTK+ version-sensitive definitions for widget query functions/macros | Unknown | 1 | -6/+16 | |
to avoid deprecation warnings on GTK+ 2.20. | |||||
2010-08-18 | Avoid deprecated API gtk_type_class. | nyamatongwe | 1 | -1/+1 | |
2010-08-18 | Avoid deprecated API gtk_selection_clear. | nyamatongwe | 1 | -1/+4 | |
2010-08-18 | Removed code that is not used since GTK+ 1.x is no longer supported. | nyamatongwe | 1 | -41/+0 | |
That code used deprecated APIs. | |||||
2010-08-17 | Upgraded deprecated APIs. | nyamatongwe | 1 | -29/+22 | |
2010-08-05 | Removing SC_CP_DBCS as it does not fit into new DBCS processing code. | nyamatongwe | 1 | -2/+1 | |
Updated documentation to describe the common DBCS support between platforms and removed outdated text. | |||||
2010-08-05 | DBCS case folder for GTK+. | Unknown | 1 | -22/+61 | |
2010-08-05 | Removal of line end white space. | nyamatongwe | 1 | -3/+3 | |
2010-08-05 | Added Korean code pages 949 and 1361. | nyamatongwe | 1 | -0/+2 | |
2010-07-13 | Platform files changed for new lexer design. | nyamatongwe | 1 | -5/+7 | |
2010-06-11 | Ensure thread safety with idle callbacks in case application is multithreaded. | nyamatongwe | 1 | -0/+4 | |
See http://library.gnome.org/devel/gdk/unstable/gdk-Threads.html#id2755107 | |||||
2010-05-26 | Drawing optimizations adding a styling idle task redrawing less of the | nyamatongwe | 1 | -8/+27 | |
selection margin and scrolling the window for caret movement when possible. | |||||
2010-05-08 | Switched to using documented parameter for SCI_LOADLEXERLIBRARY | nyamatongwe | 1 | -1/+1 | |
on GTK+. | |||||
2010-04-14 | Silence iconv warnings when creating case mapping tables. | nyamatongwe | 1 | -3/+5 | |
Bug #2986850. | |||||
2010-04-11 | Fixed bug 2984460 Middle-click paste is broken in block select mode | nyamatongwe | 1 | -0/+1 | |
2010-03-25 | Removed support for GTK+ 1.x. | nyamatongwe | 1 | -515/+7 | |
2010-03-25 | New case insensitive searching implementation uses objects implementing | nyamatongwe | 1 | -0/+59 | |
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms. | |||||
2010-03-23 | Upper and lower casing now works on non-ASCII characters. | nyamatongwe | 1 | -0/+52 | |
2010-03-17 | Fix for bug #2971618 Middle-click paste inserts text beyond end of line. | nyamatongwe | 1 | -1/+1 | |
2010-03-17 | Made multiple paste work on GTK+. | nyamatongwe | 1 | -4/+1 | |
2010-03-17 | Fixed bug where extra NUL was inserted when pasting a rectangular | nyamatongwe | 1 | -0/+2 | |
selection. | |||||
2010-03-13 | Removed unused variable and code that calculates it. | nyamatongwe | 1 | -8/+5 | |
2010-01-28 | Avoiding warnings from cppcheck. Mostly removing bodies of private copy | nyamatongwe | 1 | -2/+2 | |
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference. | |||||
2009-08-28 | When pasting into a rectangular selection use the start of the rectangular | nyamatongwe | 1 | -1/+3 | |
selection rather than the start of the main range which is often the last line. | |||||
2009-08-26 | Made Japanese and Chinese code pages 932, 936 and 950 work on GTK+. | nyamatongwe | 1 | -1/+6 | |
2009-08-14 | Fixed problem with drag and drop of rectangular selection | nyamatongwe | 1 | -9/+8 | |
to position after selection where position was not adjusted for removal of every piece of selection. | |||||
2009-07-25 | Protection against NULL pointer when copying empty selection. | nyamatongwe | 1 | -3/+4 | |
2009-07-21 | Using std::string rather than SString. | nyamatongwe | 1 | -0/+1 | |