From 428b687982966dc2efabaf6dbcc55ad0ea30aa10 Mon Sep 17 00:00:00 2001 From: zecke Date: Mon, 22 Mar 2004 23:32:41 +0000 Subject: Initial Check in of the Eye Of Zilla. This ImageViewer features Image Infos, EXIF, Jpeg,Png,Gif support. It supports scaled loading of Jpegs. an smart image cache.... GUI needs some work and we need to find a bug in QCOP as well. TODO: Add Image Service for example Mailer Add ImageCanvas/Zoomer/Display --- (limited to 'noncore/graphics/opie-eye/gui/filesystem.cpp') diff --git a/noncore/graphics/opie-eye/gui/filesystem.cpp b/noncore/graphics/opie-eye/gui/filesystem.cpp new file mode 100644 index 0000000..91bcf67 --- a/dev/null +++ b/noncore/graphics/opie-eye/gui/filesystem.cpp @@ -0,0 +1,52 @@ +/* + * GPLv2 zecke@handhelds.org + * No WArranty... + */ + +#include +#include + +#include +#include + + +#include "filesystem.h" + +PFileSystem::PFileSystem( QToolBar* bar) + : QToolButton( bar ) +{ + setIconSet( Resource::loadIconSet( "cardmon/pcmcia" ) ); + + m_pop = new QPopupMenu( this ); + connect( m_pop, SIGNAL( activated( int ) ), + this, SLOT(slotSelectDir( int ) ) ); + + m_storage = new StorageInfo(); + connect(m_storage, SIGNAL(disksChanged() ), + this, SLOT( changed() ) ); + changed(); + + setPopup( m_pop ); +} + +PFileSystem::~PFileSystem() { + delete m_storage; +} + + +void PFileSystem::changed() { + m_pop->clear(); + m_dev.clear(); + const QList &fs = m_storage->fileSystems(); + QListIterator 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 )] ); +} -- cgit v0.9.0.2