author | alwin <alwin> | 2004-02-21 21:43:40 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-02-21 21:43:40 (UTC) |
commit | 1a89ecd8e2d11d48a8e80b2fd8b1e95b738a286c (patch) (unidiff) | |
tree | 2c0aaf8487c87c23855dd06599b51c22fa8d6478 | |
parent | c7e563cbb26c20807e66dd4284d1ce9cbf8e1419 (diff) | |
download | opie-1a89ecd8e2d11d48a8e80b2fd8b1e95b738a286c.zip opie-1a89ecd8e2d11d48a8e80b2fd8b1e95b738a286c.tar.gz opie-1a89ecd8e2d11d48a8e80b2fd8b1e95b738a286c.tar.bz2 |
on removable medias take a look into .opiestorage.cf and read the list
of subdirs of the media where to search for documents. If this value isn't
set, it will reduce search to FS+"/Documents" so not the whole media is
searched.
ToDo: Work on mediummount that users can set this values.
Implement same stuff in global.cpp of libqpe.
-rw-r--r-- | core/launcher/documentlist.cpp | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/core/launcher/documentlist.cpp b/core/launcher/documentlist.cpp index 440bf1e..fdba687 100644 --- a/core/launcher/documentlist.cpp +++ b/core/launcher/documentlist.cpp | |||
@@ -63,6 +63,8 @@ public: | |||
63 | const DocLnk *iterate(); | 63 | const DocLnk *iterate(); |
64 | bool store( DocLnk* dl ); | 64 | bool store( DocLnk* dl ); |
65 | void estimatedPercentScanned(); | 65 | void estimatedPercentScanned(); |
66 | void appendDocpath(FileSystem*); | ||
67 | |||
66 | 68 | ||
67 | DocLnkSet dls; | 69 | DocLnkSet dls; |
68 | QDict<void> reference; | 70 | QDict<void> reference; |
@@ -427,6 +429,32 @@ DocumentListPrivate::DocumentListPrivate( ServerInterface *gui ) | |||
427 | tid = 0; | 429 | tid = 0; |
428 | } | 430 | } |
429 | 431 | ||
432 | void DocumentListPrivate::appendDocpath(FileSystem*fs) | ||
433 | { | ||
434 | QDir defPath(fs->path()+"/Documents"); | ||
435 | QFileInfo f(fs->path()+"/.opiestorage.cf"); | ||
436 | if (!f.exists()) { | ||
437 | if (defPath.exists()) { | ||
438 | docPaths+=defPath.path(); | ||
439 | } | ||
440 | return; | ||
441 | } | ||
442 | Config conf(f.filePath(), Config::File ); | ||
443 | conf.setGroup("subdirs"); | ||
444 | QStringList subDirs = conf.readListEntry("subdirs",':'); | ||
445 | if (subDirs.isEmpty()) { | ||
446 | if (defPath.exists()) { | ||
447 | docPaths+=defPath.path(); | ||
448 | } | ||
449 | return; | ||
450 | } | ||
451 | for (unsigned c = 0; c < subDirs.count();++c) { | ||
452 | QDir docDir(QString(fs->path()+"/"+subDirs[c])); | ||
453 | if (docDir.exists()) { | ||
454 | docPaths+=docDir.path(); | ||
455 | } | ||
456 | } | ||
457 | } | ||
430 | 458 | ||
431 | void DocumentListPrivate::initialize() | 459 | void DocumentListPrivate::initialize() |
432 | { | 460 | { |
@@ -441,13 +469,14 @@ void DocumentListPrivate::initialize() | |||
441 | int i = 1; | 469 | int i = 1; |
442 | const QList<FileSystem> &fs = storage->fileSystems(); | 470 | const QList<FileSystem> &fs = storage->fileSystems(); |
443 | QListIterator<FileSystem> it( fs ); | 471 | QListIterator<FileSystem> it( fs ); |
444 | for ( ; it.current(); ++it ) | 472 | for ( ; it.current(); ++it ) { |
445 | if ( (*it)->isRemovable() ) { | 473 | if ( (*it)->isRemovable() ) { |
446 | docPaths += (*it)->path(); | 474 | appendDocpath((*it)); |
447 | i++; | 475 | ++i; |
448 | } | 476 | } |
477 | } | ||
449 | 478 | ||
450 | for ( int i = 0; i < MAX_SEARCH_DEPTH; i++ ) { | 479 | for ( int i = 0; i < MAX_SEARCH_DEPTH; ++i ) { |
451 | if ( listDirs[i] ) { | 480 | if ( listDirs[i] ) { |
452 | delete listDirs[i]; | 481 | delete listDirs[i]; |
453 | listDirs[i] = 0; | 482 | listDirs[i] = 0; |