gavioto / stexbar

Automatically exported from code.google.com/p/stexbar
0 stars 1 forks source link

Enhancement: Allow "filtering" of files in current view #37

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
A feature that would complete stexbar. Use the edit box, and as you type,
it will perform a regex search on the files in the current view, and only
show those that have a match.

E.g.

Files in view:

mytextfile.txt
animage.jpg
another.jpg
stexbar.zip

In the edit box, when you type: 'jpg' the following files will be the only
ones in the fiew:

animage.jpg
another.jpg

similarly, if you type: 'e':

mytextfile.txt
another.jpg
stexbar.zip

Original issue reported on code.google.com by Validato...@gmail.com on 12 Dec 2008 at 6:00

GoogleCodeExporter commented 9 years ago
Would be a great feature, but unfortunately I've tried that and couldn't get it 
to
work. I think it's not possible to do that in Explorer (removing items from the 
view
will actually *delete* them, not just from the view but from the harddrive).

If someone finds out how this could be done, I'll implement it right away...

Original comment by tortoisesvn on 12 Dec 2008 at 6:46

GoogleCodeExporter commented 9 years ago
Either QT Tab Bar or QT Address Bar has this feature (screenshot here:
http://my.malloc.us/evilseph/files/2007/12/qttabbar_after.png
"Search" is in the box)

Original comment by Validato...@gmail.com on 12 Dec 2008 at 7:07

GoogleCodeExporter commented 9 years ago
I'll take a look.

Original comment by tortoisesvn on 13 Dec 2008 at 9:41

GoogleCodeExporter commented 9 years ago
I can't find an interface which allows me to remove items from the view without 
them
getting deleted for real. Not sure how QTTabBar does this - I'll try accessing 
the
list control directly, even though I'm not really comfortable with that.

Original comment by tortoisesvn on 13 Dec 2008 at 1:42

GoogleCodeExporter commented 9 years ago
hmm - theres IShellFolderView :
http://msdn.microsoft.com/en-us/library/bb774989(VS.85).aspx
but it's 'deprecated'.
I'll risk it...

Original comment by tortoisesvn on 13 Dec 2008 at 2:20

GoogleCodeExporter commented 9 years ago
Implemented in r182.

Original comment by tortoisesvn on 14 Dec 2008 at 8:04