summaryrefslogtreecommitdiff
path: root/src/filetreemodel.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Ignore conflicts between hidden files (#2148)Jonathan Feenstra2025-05-231-6/+11
| | | | * Ignore conflicts between hidden files * Optimize checks for .mohidden extension
* Hide hidden folders if "show hidden files" is unchecked in data tab (#2146)Jonathan Feenstra2024-10-161-1/+7
|
* Add filter checkbox to data tab to show/hide hidden files (#2136)Jonathan Feenstra2024-10-101-2/+12
|
* Apply clang-format.Mikaël Capelle2023-07-091-211/+175
|
* First pass for Qt6 compatibilityJeremy Rimpo2022-04-191-2/+2
|
* Remove archive parsing attribute from core and use the one from settings ↵Mikaël Capelle2021-01-131-1/+1
| | | | directly.
* Convert FileAlternative and DataArchiveOrigin to classesAL2020-11-021-3/+3
|
* Change Alternatives vector to use a structAL2020-11-021-4/+4
|
* only sort once at the end when fully loading for searchisanae2020-07-201-4/+6
| | | | temporarily disable filtering completely when fully loading instead of just disabling recursive filtering, this could close already expanded nodes if their parent directories didn't match
* fixed crash because items were sorted while being expandedisanae2020-07-191-14/+45
| | | | | when expanding all or updating the tree, only sort once at the end cache file types
* fixed ensureFullyLoaded() taking forever because it was queuing all the ↵isanae2020-07-101-2/+7
| | | | sorts unnecessarily
* now using new common cmakefilesisanae2020-04-231-2/+2
| | | | | fixed includes because shared/ isn't in the path anymore removed unused modeltest files
* removed some debug loggingisanae2020-04-171-2/+2
|
* fixed crashes and empty items in the file treeisanae2020-04-171-17/+137
| | | | sorting and removing items have to be queued since they corrupt various internal structures in Qt when done during layout
* split directoryentryisanae2020-02-181-4/+8
| | | | made classes noncopyable, fixed a few unintended copies
* don't sort items when they're not expandedisanae2020-02-081-4/+4
|
* fixed sorting not emitting layout events and fixing persistent indexesisanae2020-02-071-5/+11
|
* sort on demandisanae2020-02-071-3/+8
|
* disconnect any proxies when fully loadingisanae2020-02-071-1/+15
| | | | disable model when resetting, enable it back after the directory refresh so the tree doesn't appear in a weird state in between
* fixed warning when comparing empty stringsisanae2020-02-051-21/+50
| | | | | | | | | | filter in data tab fixed some bad iterators when removing rows fixed empty directories not being marked as such when refreshing always sort directories first even when reversing the sort order fixed children not being sorted fixed errors about file sizes for directories remember state of checkboxes in data tab
* update tree items when origins changeisanae2020-02-041-14/+25
|
* hidden unique_ptr into FileTreeItemisanae2020-02-041-54/+83
| | | | | | refactored pruning don't show shell menu for directories added collapse all in context menu
* prune empty directoriesisanae2020-02-041-23/+121
|
* don't get meta for fields that are not usedisanae2020-02-041-7/+28
| | | | | show compressed file size if available remember file sizes for files in archives
* sortisanae2020-02-041-13/+67
|
* filetype and last modified columnsisanae2020-02-041-28/+43
|
* file size columnisanae2020-02-041-9/+32
|
* iconsisanae2020-02-041-12/+47
|
* font, tooltip and foregroundisanae2020-02-041-0/+116
|
* createDirectoryItem() and createFileItem()isanae2020-02-041-31/+45
|
* moved a bunch of duplicate stuff in a new class Rangeisanae2020-02-041-105/+135
|
* refactored removeDisappearingFiles() to just check for directories in the ↵isanae2020-02-041-39/+32
| | | | main loop
* faster parent() and indexFromItem() with index guessisanae2020-02-041-26/+211
| | | | implemented files
* implemented fetchMore() and update for subdirectoriesisanae2020-02-041-8/+75
| | | | don't refresh tree on active, it's taken care of by fetchMore()
* rewriting FileTreeModel, implemented add/remove folders in rootisanae2020-02-041-779/+178
|
* removed LEAK_TRACE stuffisanae2020-02-041-13/+53
| | | | | refactored DirectoryEntry for lookup maps filetreemodel: made ensureLoaded() a no-op while refreshing, faster processing for removing rows
* renamed ToLower() to avoid confusion with in-place vs copyisanae2020-02-041-20/+20
| | | | pre-hashed file lookup in DirectoryEntry
* added a map for directories in DirectoryEntryisanae2020-02-041-8/+17
| | | | more optimizations for filetree
* some optimizations to avoid case conversions and memory allocationsisanae2020-02-041-16/+8
|
* put expensive logging in an optional functionisanae2020-02-041-19/+54
|
* split item and modelisanae2020-02-041-0/+872