summaryrefslogtreecommitdiffstats
path: root/bundles
Commit message (Collapse)AuthorAgeFilesLines
...
| * Get rid of gtk_calendar_display_options.Alexander Kurtakov2012-01-315-41/+3
| | | | | | | | | | This function has been used only for pre-2.4 GTK, is deprecated for long time and is removed in GTK 3.
| * Bug 368757 - Using ESC as accelerator does not work on OS X, but onSilenio Quarti2012-01-315-3/+23
| | | | | | Windows
| * Bug 369599 - Weird window flash when opening tooltipSilenio Quarti2012-01-311-1/+4
| |
| * 368993 - Label with size hint {0, 0} layouted to {64, 64}Bogdan Gheorghe2012-01-316-7/+9
| |
| * Bug 358022-Set text editor background to black, mouseLakshmi Shanmugam2012-01-316-7/+53
| | | | | | cursor becomes invisible
| * Bug 369757 - [3.7.x] GLCanvas maintenance fix causesSilenio Quarti2012-01-261-2/+5
| | | | | | | | NullPointerException when changing parent on Mac
| * v3820v3820aSilenio Quarti2012-01-251-0/+6
| |
| * 357559 - [4.2] CTabFolders in some views show overly-large buttons or cheeseBogdan Gheorghe2012-01-252-3/+7
| |
| * Bug 356414 - TreeItem.setExpanded(false) can cause blank lines in aSilenio Quarti2012-01-253-12/+13
| | | | | | virtual tree.
| * v3820v3820Silenio Quarti2012-01-205-5/+11
| |
| * Bug 369228 - Kill pre GTK 2.4 leftovers from Tree. (review)Silenio Quarti2012-01-205-68/+3
| |
| * Kill pre GTK 2.4 leftovers from Tree.Alexander Kurtakov2012-01-201-128/+14
| | | | | | | | Code is not used and just keeps calls to deprecated functions in GTK.
| * Bug 369227 - Kill pre GTK 2.4 leftovers from List. (review)Silenio Quarti2012-01-201-10/+2
| |
| * Kill pre GTK 2.4 leftovers from List.Alexander Kurtakov2012-01-201-53/+2
| | | | | | | | | | This cleanups the code and eases the task to remove deprecated gtk functions usage.
| * Bug 369226 - Cleanup pre GTK 2.4 leftovers in Table. (review)Silenio Quarti2012-01-201-23/+4
| |
| * Cleanup pre GTK 2.4 leftovers in Table.Alexander Kurtakov2012-01-201-130/+16
| | | | | | | | | | Removing all of the old and unused code to prevent it from keeping calls to old and deprecated functions.
| * Bug 369225 - Cleanup pre GTK 2.4 leftovers. (reviewed)Alexander Kurtakov2012-01-201-12/+0
| |
| * Cleanup pre GTK 2.4 leftovers.Alexander Kurtakov2012-01-202-416/+126
| | | | | | | | | | This is a lot of code that can not be used nowadays but just makes it harder to kill deprecated functions in order to use newer GTK versions.
| * Get rid of gdk_free_text_list.Alexander Kurtakov2012-01-204-24/+2
| | | | | | | | | | The function is deprecated (removed in GTK 3) and it's not used anywhere in the SWT codebase.
| * Get rid of gdk_pixbuf_render_to_drawable_alpha.Alexander Kurtakov2012-01-205-38/+3
| | | | | | | | | | 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-205-24/+2
| | | | | | | | | | | | 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-205-2/+16
| |
| * Bug 369151 - Make gtk_tooltips_data_get dynamic.Alexander Kurtakov2012-01-203-2/+11
| |
| * Make gtk_tooltips_enable/disable dynamic.Alexander Kurtakov2012-01-204-6/+28
| | | | | | | | | | | | 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-205-4/+17
| | | | | | | | | | It's only called in special cases and a upper limit for gtk version has been added to the checks.
| * remove compiler warningSilenio Quarti2012-01-201-1/+1
| |
| * v3819v3819Silenio Quarti2012-01-195-5/+11
| |
| * Merge branch 'Bug354978'Bogdan Gheorghe2012-01-1937-544/+1691
| |\
| | * Fix drawBackground for Tree/Table with clippingBogdan Gheorghe2012-01-191-1/+4
| | |
| | * cleanup before merging into masterSilenio Quarti2012-01-195-98/+105
| | |
| | * Fix Cairo XOR and drawImage width and heightBogdan Gheorghe2012-01-182-20/+15
| | |
| | * Merge master into Bug354978Bogdan Gheorghe2012-01-18117-2381/+3872
| | |\
| | * | Add a new property to enable Cairo graphicsBogdan Gheorghe2012-01-182-3/+10
| | | |
| | * | Temporarily disable DND effects in Tree/Table when using CairoBogdan Gheorghe2012-01-182-2/+4
| | | |
| | * | GC CopyArea for scrollingBogdan Gheorghe2012-01-1711-7/+56
| | | |
| | * | missing dynamic function namesSilenio Quarti2012-01-171-1/+3
| | | |
| | * | Add cairo_push_group and cairo_pop_groupBogdan Gheorghe2012-01-174-3/+69
| | | |
| | * | Draw Caret with CairoBogdan Gheorghe2012-01-172-22/+56
| | | |
| | * | 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-165-3/+28
| | | |
| | * | adding cairo_surface_flush PISilenio Quarti2012-01-135-5/+28
| | | |
| | * | Bug 354978 - Use Cairo as backend for graphics operations (comment#5Arun Thondapu2011-11-146-3/+57
| | | | | | | | | | | | patch)
| | * | fix Control.setBackgroundImage()Silenio Quarti2011-10-217-4/+68
| | | |
| | * | root window is not a pixmapSilenio Quarti2011-10-211-1/+1
| | | |
| | * | support Images with xlib surface, performance of large images surfaces is badSilenio Quarti2011-10-2112-14/+125
| | | |
| | * | remove floating point math for pre-multiplied alphaSilenio Quarti2011-10-212-16/+12
| | | |