| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2011-06-25 | Initial implementation of RGBA images. | nyamatongwe | 2 | -31/+86 | |
| 2011-06-22 | Made IME work on GTK+ 2.x with Cairo. Bug #3311423. | nyamatongwe | 1 | -1/+6 | |
| 2011-06-22 | Support IME on GTK+ 3. | nyamatongwe | 1 | -1/+41 | |
| 2011-05-12 | Make rounded rectangle work on Cairo versions before 1.2. | nyamatongwe | 1 | -0/+5 | |
| 2011-05-12 | Switching to function that works on all supported versions of GTK+. | nyamatongwe | 1 | -1/+1 | |
| 2011-06-19 | Fix problems when using CAIRO on older GTK+ versions. Bug #3322351. | Marko Njezic | 1 | -3/+31 | |
| 2011-06-18 | Updating AlphaRectangle for Cairo mode with no palette. | nyamatongwe | 1 | -8/+10 | |
| 2011-06-16 | Moved style attach calls to before background setting which | nyamatongwe | 1 | -3/+3 | |
| uses the style. From Mitchell Foral. | |||||
| 2011-06-15 | Fix colours appearing wrong on some systems. | nyamatongwe | 1 | -8/+2 | |
| 2011-06-10 | Windows headers are system headers so use angle brackets. | nyamatongwe | 1 | -1/+1 | |
| 2011-05-02 | Retreated from turning gdk_cursor_unref into g_object_unref as this caused ↵ | nyamatongwe | 2 | -6/+6 | |
| crashes. | |||||
| 2011-05-02 | Switching to non-deprecated APIs. | nyamatongwe | 2 | -9/+51 | |
| 2011-05-02 | Making scroll bars 1 pixel shorter as this prevents shrink caused | nyamatongwe | 1 | -2/+2 | |
| by touching resize corner. | |||||
| 2011-05-02 | Switching from deprecated gdk_cursor_unref to g_object_unref. | nyamatongwe | 2 | -7/+9 | |
| 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 | For GTK+ 3, define SurfaceID to be cairo_t* as this is what is received | nyamatongwe | 1 | -5/+27 | |
| by draw methods. Disable palette as can't find an equivalent for GTK+ 3. | |||||
| 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 | 2 | -13/+37 | |
| 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 | 2 | -6/+63 | |
| 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 | 2 | -32/+57 | |
| 2011-05-01 | Disable all use of GdkFont with DISABLE_GDK_FONT since the identifier | nyamatongwe | 1 | -3/+13 | |
| is missing in GTK+ 3. | |||||
| 2011-05-01 | Enable building for GTK+ 3.0 with "make GTK3=1". | nyamatongwe | 1 | -2/+10 | |
| 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-04-04 | Fix font rendering in the GTK+ backend when using Cairo | Colomban Wendling | 1 | -21/+5 | |
| Always get the Pango context though GTK+ API rather than creating it from a Cairo context to always get a context set up for the screen. This fixes font size issues when using Cairo rendering. | |||||
| 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. | |||||
| 2011-03-26 | Command line option to check for deprecated calls. | nyamatongwe | 1 | -1/+3 | |
| 2011-02-23 | Avoid some cppcheck warnings. | nyamatongwe | 1 | -2/+2 | |
| 2011-02-13 | Make work on Windows. | nyamatongwe | 1 | -2/+2 | |
| 2011-02-01 | Fix memory leak when using Cairo for drawing. Bug #3157655. | nyamatongwe | 1 | -0/+1 | |
| 2011-01-22 | Check for Win32 and use DEL instead of rm. Ensures 'make clean' works on ↵ | nyamatongwe | 1 | -1/+9 | |
| Windows. | |||||
| 2010-12-29 | Clean whitespace. | nyamatongwe | 1 | -5/+5 | |
| 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-05 | Horizontal or vertical lines can be more precisely drawn as a filled | nyamatongwe | 1 | -17/+31 | |
| rectangle as this avoids antialiasing the end points which makes them less intense. | |||||
| 2010-11-05 | Turn Cairo back on. | nyamatongwe | 1 | -1/+1 | |
| 2010-11-05 | Change fold markers to connect better with Cairo drawing that | nyamatongwe | 1 | -5/+5 | |
| avoids last pixel with LineTo. Changed RectangleDraw and Ellipse to align better with lines and so match fold markers. | |||||
| 2010-11-05 | Make Cairo line drawing more compatible with GDK by not drawing last | nyamatongwe | 1 | -2/+20 | |
| pixel when this is easy. | |||||
| 2010-11-02 | Can draw with Cairo rather than GDK for compatibility with newer versions of ↵ | nyamatongwe | 2 | -22/+259 | |
| 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 | |
