summaryrefslogtreecommitdiff
path: root/src/nautilus-dnd.c
Commit message (Collapse)AuthorAgeFilesLines
* general: Remove remaining desktop-file-related codeErnestas Kulik2018-05-121-9/+0
|
* general: Remove NautilusLinkCarlos Soriano2018-05-091-1/+0
| | | | | | | | | It was used for desktop files, netscape url links and other links. However this is not really useful anymore with the desktop gone, so it makes sense to remove it from Nautilus and have a big clean up. This also was one of the blockers for the backend rework.
* general: remove desktop supportErnestas Kulik2018-01-021-83/+0
|
* Prefer local (file://) URIs than native ones (smb:// for example).Colin Leroy2017-10-121-1/+7
| | | | | | This allows drag and dropping files from network shares in Thunar to other applications that don't handle native URIs (Claws Mail, Chromium, Firefox...)
* general: use gtk_menu_popup_at_pointerAlexandru Pandelea2017-03-091-2/+2
| | | | | | Since gtk_menu_popup is deprecated, use gtk_menu_popup_at_poiner instead. https://bugzilla.gnome.org/show_bug.cgi?id=779775
* Revert "use gtk_menu_popup_at_pointer"Alexandru Pandelea2017-03-091-2/+2
| | | | This reverts commit eff346505bb6dd9654fa6bb8c0e92a3642d0b5db.
* use gtk_menu_popup_at_pointerAlexandru Pandelea2017-03-091-2/+2
| | | | | | Since gtk_menu_popup is deprecated, use gtk_menu_popup instead. https://bugzilla.gnome.org/show_bug.cgi?id=779775
* general: fix typoCarlos Soriano2016-12-101-1/+1
| | | | Mis hojos!
* general: run uncrustifyCarlos Soriano2016-08-291-696/+809
| | | | | | | | And make the style of Nautilus the same for all files. Hopefully we can fix all the style issues we can find in the next days, so expect a little of movement on this. https://bugzilla.gnome.org/show_bug.cgi?id=770564
* general: merge libnautilus-private to srcwip/csoriano/private-to-srcCarlos Soriano2016-04-251-0/+952
And fix make distcheck. Although libnautilus-private seem self contained, it was actually depending on the files on src/ for dnd. Not only that, but files in libnautilus-private also were depending on dnd files, which you can guess it's wrong. Before the desktop split, this was working because the files were distributed, but now was a problem since we reestructured the code, and now nautilus being a library make distcheck stop working. First solution was try to fix this inter dependency of files, but at some point I realized that there was no real point on splitting some of those files, because for example, is perfectly fine for dnd to need to access the window functions, and it's perfectly fine for the widgets in the private library to need to access to all dnd functions. So seems to me the private library of nautilus is somehow an artificial split, which provides more problems than solutions. We needed libnautilus-private to have a private library that we could isolate from extensions, but I don't think it worth given the problems it provides, and also, this not so good logical split. Right now, since with the desktop split we created a libnautilus to be used by the desktop part of nautilus, extensions have access to all the API of nautilus. We will think in future how this can be handled if we want. So for now, merge the libnautilus-private into src, and let's rethink a better logic to split the code and the private parts of nautilus than what we had. Thanks a lot to Rafael Fonseca for helping in get this done. https://bugzilla.gnome.org/show_bug.cgi?id=765543