summaryrefslogtreecommitdiff
path: root/src/nautilus-canvas-container.h
Commit message (Collapse)AuthorAgeFilesLines
* Add support for the SelectionEvent previewer signalCosimo Cecchi2019-08-291-0/+2
| | | | | | | And handle it by moving the selection in the current view. Once in a following commit we have the previewer follow the view selection, we'll achieve the desired effect of moving the preview with the selection.
* canvas-container: Remove unused signalCarlos Soriano2019-02-251-3/+0
| | | | | | | To be honest I don't know when it was used and where, but it's unused now. Fixes: https://gitlab.gnome.org/GNOME/nautilus/issues/801
* nautilus-canvas-container: Remove the "include visible area" logic.Xiang Fan2018-07-131-1/+0
| | | | | | | | | | | | | | canvas_set_scroll_region_include_visible_area() was added in ec054c80981e26b71c8bb2e6853b035dc2063e7d to fix https://bugzilla.gnome.org/show_bug.cgi?id=42068 ("Dragging icons adjusts scroll area in a way that causes immediate scrolling"). This is no longer the case, because now icons remain in place when being dragged and are not allowed to be rearranged. ec054c80981e26b71c8bb2e6853b035dc2063e7d causes issues relating to extra scrolling space (#340), hence the removal. Fixes #340.
* general: Clean up headers and their inclusionsErnestas Kulik2018-05-181-4/+8
| | | | | | | This commit removes redundant header inclusions and tries to optimize headers by using forward declarations of types in headers. Such optimization should generally make builds speedier in that changes in certain headers will not cause unrelated sources to be rebuilt.
* general: Remove include guards in favor of pragma onceAlexandru Fazakas2018-03-191-4/+1
| | | | | | | | | | | | | | | | | | The traditional include guards are not as easy to handle and require extra thought into the names. Pragma once is an easier, more contributor friendly approach. Closes https://gitlab.gnome.org/GNOME/nautilus/issues/294 general: Remove include guards in favor of pragma once The traditional include guards are not as easy to handle and require extra thought into the names. Pragma once is an easier, more contributor friendly approach. Closes https://gitlab.gnome.org/GNOME/nautilus/issues/294
* canvas-container: Drop get_selected_icons_bounding_box APIAntónio Fernandes2018-01-301-1/+0
| | | | | | | | | This is not used anymore. We only need one bounding box, which is provided by the new nautilus_canvas_container_get_icon_bounding_box(). So remove unused API. We can always revert this if we need it.
* files-view: Pop up context menu near selectionAntónio Fernandes2018-01-301-0/+3
| | | | | | | | | | | | | | | | | | Context menus pop up where the pointer is, which is at the selection if the pointing device is used to open the menu. However, if the <Menu> key or <Shift>+<F10> keyboard shortcut are used, context menus still shows up wherever the pointer is, which may not be near the selected item at all. Instead, when the context menu is activated from the keyboard, show it next to the selected item. If multiple items are selected, show it next to the focused item. If the focus is not on a selected item, show it next to the selected item which is sorted the lowest. In all cases, scroll as necessary to make sure the whole item is visible. Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=102666
* general: remove desktop supportErnestas Kulik2018-01-021-32/+2
|
* general: merge libnautilus-private to srcwip/csoriano/private-to-srcCarlos Soriano2016-04-251-0/+324
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