author | zecke <zecke> | 2002-03-22 16:59:27 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-03-22 16:59:27 (UTC) |
commit | 966b7c4d3a691c59b428ffba34e6e3a0149e4698 (patch) (side-by-side diff) | |
tree | 88854ce123cd1a7c7e3bb7241d4702f24518a62c | |
parent | f6f0cd02ceec72a971616de253d736a94a730397 (diff) | |
download | opie-966b7c4d3a691c59b428ffba34e6e3a0149e4698.zip opie-966b7c4d3a691c59b428ffba34e6e3a0149e4698.tar.gz opie-966b7c4d3a691c59b428ffba34e6e3a0149e4698.tar.bz2 |
make something kewl possible
-rw-r--r-- | core/launcher/launcher.cpp | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp index 8fe41f7..222592b 100644 --- a/core/launcher/launcher.cpp +++ b/core/launcher/launcher.cpp @@ -1,4 +1,5 @@ /********************************************************************** +** Copyright (c) 2002 Holger zecke Freyther ** Copyright (C) 2000 Trolltech AS. All rights reserved. ** ** This file is part of Qtopia Environment. @@ -22,6 +23,7 @@ // have this class. #define QTOPIA_INTERNAL_FSLP +#include <opie/oconfig.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/resource.h> #include <qpe/applnk.h> @@ -32,6 +34,7 @@ #include <qpe/storage.h> #include <qpe/palmtoprecord.h> +#include <qdatetime.h> #include <qdir.h> #include <qwindowsystem_qws.h> #include <qtimer.h> @@ -66,6 +69,8 @@ #include <mntent.h> #endif +#include <qpe/storage.h> +#include "mediummountgui.h" //#define SHOW_ALL CategoryTabWidget::CategoryTabWidget( QWidget* parent ) : @@ -417,6 +422,7 @@ Launcher::Launcher( QWidget* parent, const char* name, WFlags fl ) tabs = 0; rootFolder = 0; docsFolder = 0; + m_timeStamp = QDateTime::currentDateTime().toString(); tabs = new CategoryTabWidget( this ); tabs->setMaximumWidth( qApp->desktop()->width() ); @@ -492,11 +498,40 @@ void Launcher::updateMimeTypes(AppLnkSet* folder) } } -void Launcher::loadDocs() +void Launcher::loadDocs() // ok here comes a hack belonging to Global:: { delete docsFolder; docsFolder = new DocLnkSet; - Global::findDocuments(docsFolder); + // find out wich filesystems are new in this round + // We will do this by having a timestamp inside each mountpoint + // if the current timestamp doesn't match this is a new file system and + // come up with our MediumMountGui :) let the hacking begin + QString newStamp = QDateTime::currentDateTime().toString(); + StorageInfo storage; + const QList<FileSystem> &fileSystems = storage.fileSystems(); + QListIterator<FileSystem> it ( fileSystems ); + for ( ; it.current(); ++it ) { + if ( (*it)->isRemovable() ) { // let's find out if we should search on it + OConfig cfg( (*it)->path() + "/.opiestorage.cf"); + cfg.setGroup("main"); + QString stamp = cfg.readEntry("timestamp", QDateTime::currentDateTime().toString() ); + if( stamp == m_timeStamp ){ // ok we know this card + cfg.writeEntry("timestamp", newStamp ); + // we need to scan the list now. Hopefully the cache will be there + }else{ // come up with the gui + MediumMountGui medium((*it)->path() + "/.opiestorage.cf" ); + if( medium.check() ){ + if( medium.exec() ){ //ok + // speicher + } + }else{ + // do something different see what we need to do + } + } + } + } + Global::findDocuments(docsFolder); // get rid of this call later + m_timeStamp = newStamp; } void Launcher::updateTabs() |