dolphin/konq-plugins/fsview
2013-04-19 13:27:40 +02:00
..
tests Remove more qt3support - this also fixes the actions in the main popup menu. 2011-01-25 18:50:27 +00:00
CMakeLists.txt fsview is now qt3support-free 2011-01-25 21:31:33 +00:00
fsview.cpp Remove more qt3support - this also fixes the actions in the main popup menu. 2011-01-25 18:50:27 +00:00
fsview.desktop SVN_SILENT made messages (.desktop file) 2013-04-19 13:27:40 +02:00
fsview.h Add some missing includes. 2012-04-10 00:20:22 +02:00
fsview_part.cpp Fixed regressions that prevented file manipulation from working properly. 2012-11-29 07:19:42 -05:00
fsview_part.desktop SVN_SILENT made messages (.desktop file) 2013-03-15 14:57:44 +01:00
fsview_part.h Fixed regressions that prevented file manipulation from working properly. 2012-11-29 07:19:42 -05:00
fsview_part.rc Moved from extragear, to put the konq plugins together with konqueror, as discussed on k-c-d in September. 2011-01-03 09:44:41 +00:00
hi22-app-fsview.png Moved from extragear, to put the konq plugins together with konqueror, as discussed on k-c-d in September. 2011-01-03 09:44:41 +00:00
hi32-app-fsview.png Moved from extragear, to put the konq plugins together with konqueror, as discussed on k-c-d in September. 2011-01-03 09:44:41 +00:00
inode.cpp 'const char* str = qPrintable(n)' is a bad idea and results in very funny colors when ColorMode == Name 2011-01-25 18:06:14 +00:00
inode.h Remove dependency to qt3support lib, only fsview.cpp is using some qt3support functions from QMenu - but linking against qt3support lib is not needed anymore. 2011-01-16 10:39:42 +00:00
main.cpp normalize signals/slots 2011-07-31 13:33:56 +02:00
Messages.sh Moved from extragear, to put the konq plugins together with konqueror, as discussed on k-c-d in September. 2011-01-03 09:44:41 +00:00
README Moved from extragear, to put the konq plugins together with konqueror, as discussed on k-c-d in September. 2011-01-03 09:44:41 +00:00
scan.cpp Add some missing includes. 2012-04-10 00:20:22 +02:00
scan.h - make sure to not realloc ScanDirVector to avoid a dangling pointer in ScanItem which can lead to a crash 2011-01-25 17:02:13 +00:00
treemap.cpp normalize signals/slots 2011-07-31 13:33:56 +02:00
treemap.h port the last menu entry away from qt3support 2011-01-25 21:31:02 +00:00

What's this?
============

Josef Weidendorfer
Josef.Weidendorfer@gmx.de

FSView is a tool for showing disc utilization in a graphical form, much
like the UNIX command 'du'. The visualisation type choosen is a treemap.
Treemaps allow for showing metrics of objects in nested structures, like
sizes of files and directories on your hard disc, where the the size of
directories is defined to be the sum of the size of its children.
Each object is represented by a rectangle which area is proportional to
its metric. The metric must have the property that the sum of the
children's metric of some object is equal or smaller than the objects
metric. This holds true for the file/directory sizes in the use case of
FSView.

It's provided both as a Konqueror KPart plugin for the mime type
inode/directory, and a standalone executable.

This was meant as a small test application and usage tutorial for
the TreeMap widget developed within KCachegrind. As it's quite cool
and small, it is now provided as a Konqueror addon in KDE.

For a full featured graphical 'du', see KDirStat. It's quite similar
to FSView, but allows for lot of cleanup actions.

Happy space hunting,
Josef