summaryrefslogtreecommitdiff
path: root/src/nautilus-debug.h
Commit message (Collapse)AuthorAgeFilesLines
* general: Remove canvas viewAntónio Fernandes2021-12-291-13/+12
| | | | | | | | | | | | | | | | | | | The new grid view has reached feature parity with the canvas, if we ignore drag-and-drop and clipboard support (which would need to be reimplemented in GTK 4 anyway) and performance scalability (which is a problem of GtkFlowBox and solvable by using GtkGridView in GTK 4). The canvas view relies on extensive custom implementation for layout, drawing, input handling, accessibility, etc., which would be too hard to port to in GT1K4. Furthermore, most of its features, such as support for manual sorting, haven't been used since the "icons on desktop" feature has been taken out from this app. We are actually using a swiss army knife for a job where we only need a single blade -- a simple pocketknife would do! Therefore, we say goodbye to this seasoned veteran widget, who has served us for 2 whole decades.
* general: Rename 'canvas' to 'grid' in enumsAntónio Fernandes2021-12-291-1/+1
| | | | | | These symbols are actually meant for both old and new "grid" views, in opposition to the "list" view, so this is a more appropriate name, considering both share NAUTILUS_VIEW_GRID_ID.
* Add NAUTILUS_DEBUG=TagManager flagSam Thursfield2020-09-021-0/+1
|
* directory-async: Use Nautilus debug loggerErnestas Kulik2018-05-121-16/+17
| | | | This will help avoid some of the spam.
* debug: Add thumbnails flagCarlos Soriano2018-05-031-0/+1
| | | | So we can query them away.
* 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
* general: merge libnautilus-private to srcwip/csoriano/private-to-srcCarlos Soriano2016-04-251-0/+79
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