-rw-r--r-- | noncore/graphics/opie-eye/gui/filesystem.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/filesystem.cpp b/noncore/graphics/opie-eye/gui/filesystem.cpp index 91bcf67..6f1c64a 100644 --- a/noncore/graphics/opie-eye/gui/filesystem.cpp +++ b/noncore/graphics/opie-eye/gui/filesystem.cpp @@ -1,17 +1,17 @@ /* * GPLv2 zecke@handhelds.org * No WArranty... */ - +#include <stdlib.h> #include <qpopupmenu.h> #include <qtoolbar.h> #include <qpe/resource.h> #include <qpe/storage.h> #include "filesystem.h" PFileSystem::PFileSystem( QToolBar* bar) : QToolButton( bar ) { @@ -28,24 +28,32 @@ PFileSystem::PFileSystem( QToolBar* bar) setPopup( m_pop ); } PFileSystem::~PFileSystem() { delete m_storage; } void PFileSystem::changed() { m_pop->clear(); m_dev.clear(); + + /* home dir, too */ + QString f = getenv( "HOME" ); + if (!f.isEmpty()) { + m_dev.insert("Home directory",f); + m_pop->insertItem("Home directory"); + } + const QList<FileSystem> &fs = m_storage->fileSystems(); QListIterator<FileSystem> it(fs ); for ( ; it.current(); ++it ) { const QString disk = (*it)->name(); const QString path = (*it)->path(); m_dev.insert( disk, path ); m_pop->insertItem( disk ); } } void PFileSystem::slotSelectDir( int id ) { emit changeDir( m_dev[m_pop->text(id )] ); |