author | zecke <zecke> | 2002-03-05 17:55:08 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-03-05 17:55:08 (UTC) |
commit | 7f0e92c12b41207fa75c82bc0b6f30fc57e7e77d (patch) (side-by-side diff) | |
tree | 81cd1145d106a8f08b1727f60eed60d3cee306b6 | |
parent | 81000382c5869cb26c243ec9364b688524c8a566 (diff) | |
download | opie-7f0e92c12b41207fa75c82bc0b6f30fc57e7e77d.zip opie-7f0e92c12b41207fa75c82bc0b6f30fc57e7e77d.tar.gz opie-7f0e92c12b41207fa75c82bc0b6f30fc57e7e77d.tar.bz2 |
My fileselector patch mentioned on the list
-rw-r--r-- | library/fileselector.cpp | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/library/fileselector.cpp b/library/fileselector.cpp index 365f383..013f43a 100644 --- a/library/fileselector.cpp +++ b/library/fileselector.cpp @@ -4,33 +4,39 @@ ** This file is part of Qtopia Environment. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ + +// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT +// have this class. +#define QTOPIA_INTERNAL_FSLP + #include "fileselector.h" +#include "fileselector_p.h" #include "global.h" #include "resource.h" #include "config.h" #include "applnk.h" #include "storage.h" #include "qpemenubar.h" #include "qcopchannel_qws.h" #include "lnkproperties.h" #include "applnk.h" #include "qpeapplication.h" #include "categorymenu.h" #include <stdlib.h> #include <qdir.h> #include <qwidget.h> @@ -43,64 +49,75 @@ FileSelectorItem::FileSelectorItem( QListView *parent, const DocLnk &f ) : QListViewItem( parent ), fl( f ) { setText( 0, f.name() ); setPixmap( 0, f.pixmap() ); } FileSelectorItem::~FileSelectorItem() { } class FileSelectorViewPrivate { public: CategoryMenu *cm; + bool m_noItems:1; }; FileSelectorView::FileSelectorView( const QString &f, QWidget *parent, const char *name ) : QListView( parent, name ), filter( f ), count( 0 ) { d = new FileSelectorViewPrivate(); d->cm = 0; + d->m_noItems = false; setAllColumnsShowFocus( TRUE ); addColumn( tr( "Name" ) ); header()->hide(); fileManager = new FileManager; reread(); QCopChannel *channel = new QCopChannel( "QPE/Card", this ); connect( channel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardMessage( const QCString &, const QByteArray &)) ); } FileSelectorView::~FileSelectorView() { } void FileSelectorView::reread() { - FileSelectorItem *item = (FileSelectorItem *)selectedItem(); QString oldFile; - if ( item ) - oldFile = item->file().file(); + FileSelectorItem *item; + if( !d->m_noItems ) { // there are items + item = (FileSelectorItem *)selectedItem(); + if ( item ) + oldFile = item->file().file(); + } clear(); DocLnkSet files; Global::findDocuments(&files, filter); count = files.children().count(); + if(count == 0 ){ // No Documents + d->m_noItems = true; + QListViewItem *it = new QListViewItem(this, tr("There are no files in this directory." ), "empty" ); + it->setSelectable(FALSE ); + return; + } QListIterator<DocLnk> dit( files.children() ); for ( ; dit.current(); ++dit ) { if (d->cm) if (!d->cm->isSelected((**dit).categories())) continue; item = new FileSelectorItem( this, **dit ); if ( item->file().file() == oldFile ) setCurrentItem( item ); } if ( !selectedItem() ) setCurrentItem( firstChild() ); } void FileSelectorView::setCategoryFilter(CategoryMenu *cm) { d->cm = cm; @@ -224,41 +241,47 @@ int FileSelector::fileCount() /*! Causes the file selector to act as if the "new" button was chosen. \sa newSelected(), closeMe() */ void FileSelector::createNew() { DocLnk f; emit newSelected( f ); emit closeMe(); } void FileSelector::fileClicked( int button, QListViewItem *i, const QPoint &, int ) { if ( !i ) return; + if(i->text(1) == QString::fromLatin1("empty" ) ) + return; + if ( button == Qt::LeftButton ) { fileClicked( i ); } } void FileSelector::filePressed( int button, QListViewItem *i, const QPoint &, int ) { if ( !i ) return; + if(i->text(1) == QString::fromLatin1("empty" ) ) + return; + if ( button == Qt::RightButton ) { DocLnk l = ((FileSelectorItem *)i)->file(); LnkProperties prop( &l ); prop.showMaximized(); prop.exec(); d->cm->reload(); reread(); } } void FileSelector::fileClicked( QListViewItem *i ) { if ( !i ) return; emit fileSelected( ( (FileSelectorItem*)i )->file() ); emit closeMe(); @@ -308,33 +331,23 @@ void FileSelector::setNewVisible( bool b ) else buttonNew->hide(); } /*! Sets whether a "no document" button is visible, according to \a b. */ void FileSelector::setCloseVisible( bool b ) { if ( b ) buttonClose->show(); else buttonClose->hide(); } /*! - Sets whether a categories menu is visible, according to \a b. -*/ -void FileSelector::setCategoriesVisible( bool b ) -{ - if ( b ) - d->mb->show(); - else - d->mb->hide(); -} - -/*! Rereads the list of files. */ void FileSelector::reread() { view->reread(); } + |