1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:05:26 +03:00

The method FileLister::browse() now takes an optional boolean argument.

If set to "false", the previous list of files/directories won't be cleared when browsing another directory.
It will allow us to have file choosers that list files contained on different directories.
This commit is contained in:
Ayla 2011-04-01 18:17:33 +02:00
parent 3db5844f3c
commit d8204706d7
2 changed files with 6 additions and 4 deletions

View File

@ -65,10 +65,12 @@ void FileLister::setFilter(const string &filter)
this->filter = filter;
}
void FileLister::browse()
void FileLister::browse(bool clean)
{
directories.clear();
files.clear();
if (clean) {
directories.clear();
files.clear();
}
if (showDirectories || showFiles) {
DIR *dirp;

View File

@ -36,7 +36,7 @@ private:
public:
FileLister(const string &startPath = "/boot/local", bool showDirectories = true, bool showFiles = true);
void browse();
void browse(bool clean = true);
unsigned int size();
unsigned int dirCount();