summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use gtk_cell_renderer_get_preferred_size() for GTK+ 3 gtk3_cell_rendererAnatoly Spektor2012-10-1510-11/+75
| | | | This patch replaces gtk_cell_renderer_get_size wth gtk_cell_renderer_get_preferred_size for GTK+ 3
* Bug 391722 - Avoid setting the same tooltip text in ToolItemBogdan Gheorghe2012-10-111-0/+1
|
* Bug 391675 - CLabel documentation says class is not intended to beGrant Gayed2012-10-112-11/+3
| | | subclassed, then recommends subclassing
* compile solaris sparc against GTK 2.10Silenio Quarti2012-10-111-1/+1
|
* Bug 377019-Specific file name filter not working on Mac OS XLakshmi Shanmugam2012-10-111-0/+1
|
* Bug 387755 - GC.copyArea() not work correctly on Mac retina screenSilenio Quarti2012-10-104-7/+31
|
* Use Cairo instead of gdk_draw_drawable and gdk_gc_set_exposuresAnatoly Spektor2012-10-101-5/+14
|
* Update s390 build script for RHEL5Silenio Quarti2012-10-091-4/+4
|
* Update 390 build script for RHEL5Bogdan Gheorghe2012-10-091-1/+1
|
* Bug 390699 - Table.showItem is broken on Linux - add build checkSilenio Quarti2012-10-091-0/+20
|
* Bug #391477 - Do not compile GtkSelectionData memmove/sizeof for Gtk3+Alexander Kurtakov2012-10-091-0/+3
| | | Defines added to ignore these functions compilation.
* Update 390 build script for RHEL5Bogdan Gheorghe2012-10-091-2/+2
|
* Update 390 build script for RHEL5Bogdan Gheorghe2012-10-091-2/+2
|
* GdkDragContext replaced by function calls.Alexander Kurtakov2012-10-098-10/+179
| | | | | When struct is sealed we don't have access to the members directly so they have to be accessed via function calls.
* Bug#391413 - Remove GdkGCValues_sizeof.Alexander Kurtakov2012-10-095-16/+0
| | | | Native was called to init the GdkGCValues class sizeof member which itself was not read anywhere.
* Fix bug#391408 - Remove GdkVisual_sizeof.Alexander Kurtakov2012-10-094-15/+0
| | | Unused function that breaks compilation on GTK 3.x.
* Fix for bug#391404 - Remove GdkImage_sizeof.Alexander Kurtakov2012-10-094-15/+0
| | | Method is not used anywhere and just breaks compilation.
* Fix for bug#391398. Alexander Kurtakov2012-10-096-3/+43
| | | Use gdk_visual_ functions instead of accessing struct members.
* Fix gtk_render_frame parameters.Alexander Kurtakov2012-10-082-2/+2
| | | | There was an error in the GTK 3 (untestable for now) code. Spotted by Arun Thondapu.
* Use gtk_selection_data_get* functions instead of GtkSelectionData structAlexander Kurtakov2012-10-089-35/+282
| | | | | | Fix for bug 391370. Struct members should not be accessed directly and using the members will allow to remove the memmove/sizeof bindings for GtkSelectionData which fail to compile on GTK 3.x. New implementation is used for GTK 2.14+ when the functions were introduced.
* Bug 383369-Mac cocoa combo draw wrong and spews long error messageLakshmi Shanmugam2012-10-084-5/+49
| | | when input multi-lines
* Bug 391269 - NPE pressing enter on DateTime widget if using SWT.TIMELakshmi Shanmugam2012-10-081-1/+3
| | | only
* Use gtk_render_check instead of gtk_paint_check for GTK+ 3Anatoly Spektor2012-10-086-3/+60
|
* v4308Silenio Quarti2012-10-054-5/+5
|
* Fix version check for GTK 3.0 not 3.2.Alexander Kurtakov2012-10-051-1/+1
|
* Revert Sparc changesBogdan Gheorghe2012-10-051-2/+2
|
* Correct GTK path for SparcBogdan Gheorghe2012-10-051-1/+1
|
* Correct GTK path for SparcBogdan Gheorghe2012-10-051-1/+1
|
* Enable HPUX 64 buildBogdan Gheorghe2012-10-051-5/+5
|
* Enable HPUX 64 buildBogdan Gheorghe2012-10-051-2/+2
|
* Enable HPUX 64 buildBogdan Gheorghe2012-10-051-1/+1
|
* Use gtk_render_focus instead of gtk_paint_focus for GTK+ 3Anatoly Spektor2012-10-059-5/+212
|
* Enable HPUX 64 buildBogdan Gheorghe2012-10-051-0/+1
|
* Use gtk_render_frame_gap instead of gtk_paint_box_gap for GTK+ 3Anatoly Spektor2012-10-056-3/+63
|
* Enable HPUX 64 buildBogdan Gheorghe2012-10-051-2/+1
|
* Removed outdated pkgconfig entries in build.sh for switch to RHEL5Bogdan Gheorghe2012-10-051-3/+3
|
* Use gtk_render_layout instead of gtk_paint_layout for GTK+3 and higherAnatoly Spektor2012-10-056-3/+60
|
* Bug 391250 - Wrong Xulrunner library on PPC64Bogdan Gheorghe2012-10-051-1/+1
|
* Bug 391250 - Wrong Xulrunner library on PPC64Bogdan Gheorghe2012-10-051-1/+1
|
* Use gtk_render_option instead of gtk_paint_option for GTK+3 and higherAnatoly Spektor2012-10-056-2/+60
|
* Bug 391035 - JVM Crash when starting fresh download of JunoBogdan Gheorghe2012-10-051-1/+1
|
* cannot have cairo_t casts when compiling on RHEL4Silenio Quarti2012-10-052-12/+8
|
* Bug 388574 - [Mac OS X 10.8] Text control loses focus upon its movement Silenio Quarti2012-10-042-0/+10
|
* Use gdk_device_get_window_at_position instead of gdk_window_at_pointerAnatoly Spektor2012-10-047-2/+77
|
* Use gtk_render_frame and gtk_render_background instead of gtk_paint_boxAnatoly Spektor2012-10-0412-10/+82
| | | | | This patch also fixes change in Shell.java where wrong helper function (gtk_render_frame) was used instead of gtk_render_box.
* Use gtk_render_frame instead of gtk_paint_flat_box for GTK+ 3 and higher.Anatoly Spektor2012-10-0412-12/+83
|
* Fix indentation of switch.Alexander Kurtakov2012-10-042-16/+16
|
* Use gtk_redner_line() instead of gtk_paint_vline/hline for GTK+3Anatoly Spektor2012-10-046-6/+77
|
* Use gtk_render_handle() instead of gtk_paint_handle() for GTK+ 3Anatoly Spektor2012-10-046-3/+93
|
* Replace gdk_window_get_pointer with gdk_window_get_device_position GTK3Anatoly Spektor2012-10-0414-14/+125
|