summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of gdk_pixbuf_render_to_drawable_alpha.Alexander Kurtakov2012-01-201-9/+1
| | | | | The function is deprecated (removed in gtk 3) and was used only for GTK older than 2.2.0 which is unsupported by SWT nowadays.
* Get rid of gdk_rgb_init.Alexander Kurtakov2012-01-201-1/+0
| | | | | | This function is deprecated even in gtk 2.0 and is a no-op practically for the whole gtk 2 life. Also it's dropped in gtk 3.0 and makes no sense to keep it in.
* Bug 369152 - Make gtk_set_locale dynamic. (reviewed)Alexander Kurtakov2012-01-201-1/+3
|
* Make gtk_tooltips_enable/disable dynamic.Alexander Kurtakov2012-01-201-2/+6
| | | | | | Both calls were guarded by if tooltipsHandle !=0 and tooltiopsHandle is created only for gtk versions lower than 2.12 that's why the guard has been expanded to be (tooltipsHandle != 0 && GTK_vrsion < 2.12).
* Bug 369149 - Make gtk_tooltips_force_window dynamic. (review 2)Silenio Quarti2012-01-201-1/+1
|
* Bug 369149 - Make gtk_tooltips_force_window dynamic. (review)Silenio Quarti2012-01-201-1/+1
|
* Make gtk_tooltips_force_window dynamic.Alexander Kurtakov2012-01-202-2/+6
| | | | | It's only called in special cases and a upper limit for gtk version has been added to the checks.
* Fix drawBackground for Tree/Table with clippingBogdan Gheorghe2012-01-191-1/+4
|
* cleanup before merging into masterSilenio Quarti2012-01-194-97/+105
|
* Fix Cairo XOR and drawImage width and heightBogdan Gheorghe2012-01-181-7/+14
|
* Merge master into Bug354978Bogdan Gheorghe2012-01-1822-1054/+496
|\
| * 348205 - NullPointerException in xml editorBogdan Gheorghe2012-01-101-0/+1
| |
| * Bug 367414 - Table#getSelection() throws an AIOOBEGrant Gayed2011-12-222-7/+7
| |
| * Bug 367120 - gtk_tree_selection_get_selected_rows() invocations areGrant Gayed2011-12-193-0/+14
| | | | | | leaking
| * 354126 - Tooltips do not appear for any Eclipse iconsBogdan Gheorghe2011-12-191-4/+2
| |
| * 365807 - Tooltips follow cursor on old versions of GTKBogdan Gheorghe2011-12-061-0/+11
| |
| * 364593 - Memory leak in Table when changing cell background colorsBogdan Gheorghe2011-12-061-0/+1
| |
| * 364593 - Memory leak in Table when changing cell background colorsArun Thondapu2011-12-054-5/+69
| |
| * Revert "364593 - Memory leak in Table when changing cell background colors"Felipe Heidrich2011-12-054-70/+5
| | | | | | | | This reverts commit e0e004ceb02d4870eb82258243938757bd2367dc.
| * 364593 - Memory leak in Table when changing cell background colorsArun Kumar Thondapu2011-12-054-5/+70
| |
| * 354126 - Tooltips do not appear for any Eclipse iconsBogdan Gheorghe2011-12-051-1/+3
| |
| * Protect gtk_tooltips_set tip for gtk prior to version 2.12.0.Alexander Kurtakov2011-11-251-1/+5
| |
| * gtk_tooltips_set_tip is dynamic nowAlexander Kurtakov2011-11-251-4/+8
| | | | | | | | Code using it was either conditionalized before or done with this patch.
| * Bug 364761 - Add gtk_cell_layout_get_cells and use it when gtk >=2.12.0.Alexander Kurtakov2011-11-252-6/+37
| |
| * Bug 364762 - Conditional usage of GtkTreeView newer coord function.Alexander Kurtakov2011-11-253-3/+15
| |
| * Conditionaly use gtk_menu_item_remove_submenu and make it dynamic.Alexander Kurtakov2011-11-251-1/+5
| | | | | | | | The new API is to use gtk_menu_item_set_submenu with null/0.
| * Bug 364764 - Kill GtkFileSelection.Alexander Kurtakov2011-11-252-277/+0
| |
| * Bug 364766 - Use gtk_orientable_set_orientation if gtk >= 2.16.0.Alexander Kurtakov2011-11-251-1/+5
| |
| * Bug 364769 - Remove gtk_timeout_remove and gtk_timeout_addAlexander Kurtakov2011-11-253-16/+16
| |
| * Remove unused code (<2.4.x) in ComboAlexander Kurtakov2011-11-251-382/+225
| | | | | | | | | | | | A major cleanup removing a lot of code that is irrelevant now that SWT requires gtk 2.4 or newer. Additionally formatting has been fixed.
| * Bug 354126 - Tooltips do not appear for any Eclipse iconsSilenio Quarti2011-11-232-0/+8
| |
| * Bug 361004 - Remove GtkList related functions (comment#1 patch)Alexander Kurtakov2011-11-161-120/+1
| |
| * Bug 360872 - Remove GtkCombo and friends. (comment#0)Alexander Kurtakov2011-11-161-50/+0
| |
| * Bug 350362 - "Go to the next word (Ctrl+Right)" in text file does not work ↵Felipe Heidrich2011-11-161-4/+9
| | | | | | | | for certain cases
| * Bug 297186 - defaultButton for a Shell is not getting unset after clicking ↵Bogdan Gheorghe2011-11-141-1/+1
| | | | | | | | on any button on the Shell
| * Bug 335962 - ScrollBar.getVisible() is wrong under gtkBogdan Gheorghe2011-11-111-2/+2
| |
| * Bug 337269 - ToolTip still visible after calling disposeBogdan Gheorghe2011-11-111-2/+4
| |
| * Bug 275159 - Accessible should not add dispose listener to its controlCarolyn MacLeod2011-11-071-0/+3
| |
| * Bug 362999 - SWTGraphics#scale is broken when used with Printer onSilenio Quarti2011-11-092-1/+4
| | | | | | Eclipse 3.7 / GTK
| * underline and strikeout color have priority over selectionFelipe Heidrich2011-10-241-0/+2
| |
| * Bug 359869 - cannot see mouse selection in highlighted text in StyledTextSilenio Quarti2011-10-241-188/+47
| |
| * Bug 304001 - [mac] No SWT API to set highlighted image for status itemFelipe Heidrich2011-10-191-0/+13
| |
* | Add a new property to enable Cairo graphicsBogdan Gheorghe2012-01-181-1/+3
| |
* | GC CopyArea for scrollingBogdan Gheorghe2012-01-178-6/+53
| |
* | Draw Caret with CairoBogdan Gheorghe2012-01-171-22/+55
| |
* | Fixed for copying wrong portion of source windowBogdan Gheorghe2012-01-161-11/+16
| |
* | getSize is wrong when damage is not the whole widgetBogdan Gheorghe2012-01-161-2/+4
| |
* | No XOR support for CairoBogdan Gheorghe2012-01-161-1/+3
| |
* | have to mark dirty when creating from pixelsSilenio Quarti2012-01-161-1/+3
| |
* | adding cairo_surface_flush PISilenio Quarti2012-01-131-0/+1
| |