summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop
Commit message (Collapse)AuthorAgeFilesLines
* Bug 411203 - [Retina] screen capture via cmd shift control 4 is notSilenio Quarti2013-07-101-0/+17
| | | | working as expected
* Bug 408895 - Do the annual javadoc/copyright bash for 4.3Carolyn MacLeod2013-05-2861-61/+61
|
* Bug 392774 - [GTK3] Need to implementArun Thondapu2013-05-013-67/+105
| | | Table/TreeDragSourceEffect.getDragSourceImage
* Bug 389702 - Drag and drop a tab item to desktop/Finder, a text file is ↵Silenio Quarti2012-11-161-3/+13
| | | | created, not a web link is generated
* Remove pre Gtk 2.6 conditionals.Alexander Kurtakov2012-11-061-16/+4
| | | | Gtk prior to version 2.6 are no longer supported so let's clean our code a bit.
* inline to avoid compiler warnings-> override non public methodSilenio Quarti2012-11-021-18/+8
|
* add OS.GTK3 flag and use everywhere instead of VERSION(3,0,0)Silenio Quarti2012-11-024-6/+6
|
* remove gdk_gc_new from GTK3, all calls are protected except for Tracker (see ↵Silenio Quarti2012-10-242-0/+6
| | | | bug#380287)
* Remove Gtk 2.2-2.4 checks.Alexander Kurtakov2012-10-163-6/+2
| | | | Now that we require 2.6.0+ it makes no sense to clutter the code with useless checks.
* Do not use GtkTargetPair and remove it.Alexander Kurtakov2012-10-151-4/+2
| | | | | | | | It was used in DropTarget.setEventData where the list was iterated using g_list_nth and GtkTargetPair struct recreated on the java side. It is way more simple and effective to use g_list_nth_data which gives us exactly what we need, reduces java/c roundtrips and allows to be compiled on GTK 3.
* GdkDragContext replaced by function calls.Alexander Kurtakov2012-10-092-10/+28
| | | | | When struct is sealed we don't have access to the members directly so they have to be accessed via function calls.
* Use gtk_selection_data_get* functions instead of GtkSelectionData structAlexander Kurtakov2012-10-084-35/+102
| | | | | | 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.
* Replace gdk_window_get_pointer with gdk_window_get_device_position GTK3Anatoly Spektor2012-10-041-1/+18
|
* Bug 390699 - Table.showItem is broken on LinuxSilenio Quarti2012-10-011-1/+1
|
* Bug 385258 - dragSetData calls before dropAccept in Cocoa DND with ↵Silenio Quarti2012-09-284-5/+5
| | | | FileTransfer - use OS const instead of public.file-url
* Bug 385258 - dragSetData calls before dropAccept in Cocoa DND with FileTransferSilenio Quarti2012-09-284-61/+34
|
* Bug 389702 - Drag and drop a tab item to desktop/Finder, a text file is ↵Silenio Quarti2012-09-284-5/+5
| | | | created, not a web link is generated. - use OS const for public.url
* Bug 389702 - Drag and drop a tab item to desktop/Finder, a text file is ↵Silenio Quarti2012-09-284-5/+5
| | | | created, not a web link is generated.
* Bug 388528 add GdkDevice* cast for gdk_device_get_associated_device()Arun Thondapu2012-09-281-1/+1
|
* Bug 388528 Use gdk_device_ungrab () instead of gdk_keyboard_ungrab () for GTK+3Anatoly Spektor2012-09-281-1/+3
|
* Bug 388528 Fix formattingArun Thondapu2012-09-281-3/+3
|
* Bug 388528 Use gdk_device_ungrab() instead of gdk_pointer_ungrab() in GTK3+Anatoly Spektor2012-09-281-1/+8
|
* Make 64-bit the default source codeSilenio Quarti2012-09-2436-301/+301
|
* Omit use of deprecated gdk_utf8_to_compound_text() in newer GTK+Anatoly Spektor2012-08-281-1/+6
|
* Omit use of gdk_drawable_get_size for newer GTK+ and make it dynamicAnatoly Spektor2012-08-142-2/+10
|
* Bug 386145 Use gtk_widget_get_window() instead of GTK_WIDGET_WINDOW in newer ↵Anatoly Spektor2012-08-061-2/+6
| | | | GTK+
* Bug 345296 - Remove qt from org.eclipse.swtGrant Gayed2012-08-0216-2918/+0
|
* Bug 384381 - HTMLTransfer uses UTF-16 to copy to clipboard (should useCarolyn MacLeod2012-07-241-5/+4
| | | UTF-8 to be compatible with paste)
* Bug 383069 - SWT Cocoa's URLTransfer does not return correct file url on Mac ↵Silenio Quarti2012-06-201-0/+1
| | | | OS X
* Bug 376448 - [DBCS4.2] AIX 7, DirectoryDialog returns 'null' if selectedSilenio Quarti2012-06-181-3/+5
| | | | | | path contains DBCS characters Bug 377246 - [DBCS] AIX 7: FileDialog returns 'null' if selected path contains DBCS characters
* Bug 380560 - Do the annual javadoc/copyright bash for 3.8 and 4.2Carolyn MacLeod2012-06-019-9/+9
|
* Bug 379005 - NullPointerException in ClipboardGrant Gayed2012-05-161-0/+2
|
* Bug 376589 - clipboard.getContents(HTMLTransfer.getInstance()) returnsCarolyn MacLeod2012-04-171-4/+16
| | | gibberish on gtk
* Convert all files with CRLF and CR to LFBogdan Gheorghe2012-04-112-10/+173
|
* Bug 373794 - Malformed Javadoc commentsGrant Gayed2012-03-091-1/+1
|
* Use gdk_text_property_to_utf8_list + _for_display.Alexander Kurtakov2012-03-051-1/+1
| | | | | | Usage of gdk_text_property_to_utf8_list is deprecated and removed in gtk3 but gdk_text_property_to_utf8_list_for_display is still here for usage.
* Use gdk_get_default_root_window instead of GDK_ROOT_PARENT.Alexander Kurtakov2012-02-282-4/+4
| | | | | The new function used is in GTK at least from version 2.0 and the macro is deprecated and removed from GTK 3. All usages are fixed.
* Bug 354978 - Use Cairo as backend for graphics operations (comment#18)Silenio Quarti2012-02-062-4/+0
|
* Merge master into Bug354978Bogdan Gheorghe2012-01-183-3/+11
|\
| * Bug 367120 - gtk_tree_selection_get_selected_rows() invocations areGrant Gayed2011-12-192-2/+6
| | | | | | leaking
| * Bug 364762 - Conditional usage of GtkTreeView newer coord function. ↵Silenio Quarti2011-11-251-2/+2
| | | | | | | | (condition wrong)
| * Bug 364762 - Conditional usage of GtkTreeView newer coord function.Alexander Kurtakov2011-11-251-1/+5
| |
* | Temporarily disable DND effects in Tree/Table when using CairoBogdan Gheorghe2012-01-182-2/+4
| |
* | GC CopyArea for scrollingBogdan Gheorghe2012-01-172-0/+2
| |
* | share code to create image from pixbuf. fixed pasting of images with alphaSilenio Quarti2011-10-191-14/+12
| |
* | Use ImageList.createPixbuf in ImageTransfer. fixed images with alphaSilenio Quarti2011-10-191-31/+26
| |
* | shared copies of Display.createPixbufSilenio Quarti2011-10-191-57/+1
|/ | | | shared copies of Display.createPixbuf
* fix permission of filesSilenio2011-09-2338-0/+0
|
* Bug 345279 - Do the annual javadoc/copyright bash for 3.7Carolyn MacLeod2011-05-161-1/+1
|
* Bug 341895-DND actions in AbstractTreeViewer lead to NPE and application freezeLakshmi Shanmugam2011-05-161-0/+1
|