summaryrefslogtreecommitdiff
path: root/noncore/unsupported/filebrowser
authorllornkcor <llornkcor>2002-05-14 22:02:16 (UTC)
committer llornkcor <llornkcor>2002-05-14 22:02:16 (UTC)
commite325f9cfb783010caa8618608a4d57884c0107c5 (patch) (side-by-side diff)
tree92e5ad3d4df7e4da10c6a2f18a89bfa0887cd733 /noncore/unsupported/filebrowser
parent654f18b7201655379a515d12e30e06de4ae2e564 (diff)
downloadopie-e325f9cfb783010caa8618608a4d57884c0107c5.zip
opie-e325f9cfb783010caa8618608a4d57884c0107c5.tar.gz
opie-e325f9cfb783010caa8618608a4d57884c0107c5.tar.bz2
thumbnail for images for 'hash', also added secret config [View] ThumbSize = 72 for specifying thumbnail size, and added cleanup for tmp dir
Diffstat (limited to 'noncore/unsupported/filebrowser') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.cpp171
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.h33
2 files changed, 178 insertions, 26 deletions
diff --git a/noncore/unsupported/filebrowser/filebrowser.cpp b/noncore/unsupported/filebrowser/filebrowser.cpp
index 8c01655..10e50f0 100644
--- a/noncore/unsupported/filebrowser/filebrowser.cpp
+++ b/noncore/unsupported/filebrowser/filebrowser.cpp
@@ -15,12 +15,13 @@
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
+
#include "inlineedit.h"
#include "filebrowser.h"
#include "filePermissions.h"
#include <qpe/resource.h>
#include <qpe/global.h>
#include <qpe/mimetype.h>
@@ -40,16 +41,18 @@
#include <qaction.h>
#include <qstringlist.h>
#include <qcursor.h>
#include <qmultilineedit.h>
#include <qfont.h>
#include <qpainter.h>
+#include <qprogressbar.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
+#include <qpe/qpeapplication.h>
//
// FileItem
//
FileItem::FileItem( QListView * parent, const QFileInfo & fi )
: QListViewItem( parent ),
@@ -80,16 +83,19 @@ FileItem::FileItem( QListView * parent, const QFileInfo & fi )
pm = Resource::loadPixmap( "folder" );
}
else if( !fi.isReadable() )
pm = Resource::loadPixmap( "locked" );
else if( isLib() )
pm = Resource::loadPixmap( "library" );
- else
+ else if( ((FileView* )parent)->getShowThumbnails() && mt.id().contains(QRegExp("^image/", FALSE, FALSE)) )
+ pm = drawThumbnail(fi);
+ else
pm = mt.pixmap();
if ( pm.isNull() )
pm = Resource::loadPixmap("UnknownDocument-14");
+
if( fi.isSymLink() ){
// overlay link image
QPixmap lnk = Resource::loadPixmap( "filebrowser/symlink" );
QPainter painter( &pm );
painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
pm.setMask( pm.createHeuristicMask( FALSE ) );
@@ -169,24 +175,76 @@ bool FileItem::rename( const QString & name )
if ( ::rename( (const char *) oldpath, (const char *) newpath ) != 0 )
return FALSE;
else
return TRUE;
}
+QPixmap FileItem::drawThumbnail(const QFileInfo &file) {
+
+ /*
+ * this thing is sloooooow, and it also doesn't load
+ * dynamicly (like a web browser). if anyone knows how to
+ * do that, please do!
+ */
+ QString cacheDir = "/tmp/filebrowserThumbnailCache";
+ QFileInfo cachedFile (cacheDir + file.filePath());
+
+ if (cachedFile.exists() && cachedFile.lastModified() == file.lastModified()) {
+
+ QPixmap cachedImage (cachedFile.filePath());
+ return cachedImage;
+ }
+ else {
+
+ QImage image (file.filePath());
+
+ // if inside of cache dir, don't render thumbnails! recursive error!
+ if (image.isNull() || file.filePath().contains(QRegExp("^" + cacheDir))) {
+ DocLnk doc (file.filePath());
+ return doc.pixmap();
+ }
+ Config cfg("Filebrowser");
+ cfg.setGroup("View");
+ int size;
+ size =cfg.readNumEntry("ThumbSize", 72);
+ QPixmap thumb (size, size);
+
+ double scale = (double)image.height() / (double)image.width();
+ int newHeight = int(size * scale);
+ thumb.convertFromImage (image.smoothScale(size, newHeight));
+
+ if (!cachedFile.dir().exists()) {
+ QString cmd = "/bin/mkdir -p \"" + cachedFile.dirPath() +"\"";
+ system( (const char *) cmd );
+ }
+
+ if (thumb.save(cachedFile.filePath(), QPixmap::imageFormat(file.filePath()), 70)) {
+ // make thumbnail modify time the same as the image
+ QString cmd = "/bin/touch -r \"" + file.filePath() +"\" " +
+ "\"" + cachedFile.filePath() + "\"";
+ system( (const char *) cmd );
+
+ }
+
+ return thumb;
+ }
+}
+
//
// FileView
//
FileView::FileView( const QString & dir, QWidget * parent,
const char * name,
- bool hidden, bool symlinks )
+ bool hidden, bool symlinks, bool thumbnails )
: QListView( parent, name ),
menuTimer( this ),
le( NULL ),
itemToRename( NULL ),
showHidden( hidden ),
- showSymlinks( symlinks),
+ showSymlinks( symlinks ),
+ showThumbnails( thumbnails ),
menuKeepsOpen( FALSE )
{
addColumn( "Name" );
addColumn( "Size" );
addColumn( "Date" );
addColumn( "Type" );
@@ -250,31 +308,51 @@ void FileView::generateDir( const QString & dir )
d.setFilter( QDir::Dirs | QDir::Files );
else
d.setFilter( QDir::Dirs | QDir::Files |QDir::Hidden | QDir::All);
d.setSorting( QDir::Name | QDir::DirsFirst | QDir::IgnoreCase | QDir::Reversed );
-
const QFileInfoList * list = d.entryInfoList();
QFileInfoListIterator it( *list );
QFileInfo *fi;
+ QProgressBar *thumbProgress = 0;
+ if (showThumbnails) {
+
+ thumbProgress = new QProgressBar(it.count(), this);
+ thumbProgress->show();
+ }
+
clear();
- while( (fi = it.current()) ){
- if( (fi->fileName() == ".") || (fi->fileName() == "..") ){
+
+ int fileCount = 1; // used in the thumbnail progress meter
+ while( (fi = it.current()) ){
+ if( (fi->fileName() == ".") || (fi->fileName() == "..") ){
+ ++it;
+ continue;
+ }
+ if(!showSymlinks && fi->isSymLink()){
++it;
continue;
}
- if(!showSymlinks && fi->isSymLink()){
+ // thumbnail progress
+ if (showThumbnails) {
+
+ thumbProgress->setProgress(fileCount);
+ }
+ (void) new FileItem( (QListView *) this, *fi );
+
++it;
- continue;
+ ++fileCount;
+ }
+
+ if (showThumbnails) {
+ thumbProgress->close();
}
- (void) new FileItem( (QListView *) this, *fi );
- ++it;
- }
emit dirChanged();
+
}
void FileView::rename()
{
itemToRename = (FileItem *) currentItem();
const QPixmap * pm;
@@ -460,12 +538,31 @@ void FileView::cut()
FileItem * item;
if((item = (FileItem *) firstChild()) == 0) return;
flist.clear();
while( item ){
+ if( ite
+ // ##### a better inmplementation might be to rename the CUT file
+ // ##### to ".QPE-FILEBROWSER-MOVING" rather than copying it.
+ QString cmd, dest, basename, cd = "/tmp/qpemoving";
+ QStringList newflist;
+ newflist.clear();
+
+ cmd = "rm -rf " + cd;
+ system ( (const char *) cmd );
+ cmd = "mkdir " + cd;
+ system( (const char *) cmd );
+
+// get the names of the files to cut
+ FileItem * item;
+
+ if((item = (FileItem *) firstChild()) == 0) return;
+
+ flist.clear();
+ while( item ){
if( item->isSelected() /*&& !item->isDir()*/ ){
flist += item->getFilePath();
}
item = (FileItem *) item->nextSibling();
}
@@ -710,12 +807,17 @@ void FileView::setShowHidden(bool hidden)
void FileView::setShowSymlinks(bool symlinks)
{
showSymlinks=symlinks;
}
+void FileView::setShowThumbnails(bool thumbnails)
+{
+ showThumbnails=thumbnails;
+}
+
void FileView::setMenuKeepsOpen(bool keepOpen)
{
menuKeepsOpen=keepOpen;
}
FileBrowser::FileBrowser( QWidget * parent,
@@ -733,23 +835,26 @@ FileBrowser::FileBrowser( const QString & dir, QWidget * parent,
}
void FileBrowser::init(const QString & dir)
{
setCaption( tr("File Manager") );
setIcon( Resource::loadPixmap( "filebrowser_icon" ) );
+ connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
+
Config cfg("Filebrowser");
cfg.setGroup("View");
bool showHidden=(cfg.readEntry("Hidden","FALSE") == "TRUE");
bool showSymlinks=(cfg.readEntry("Symlinks","FALSE") == "TRUE");
+ bool showThumbnails=(cfg.readEntry("Thumbnails","FALSE") == "TRUE");
cfg.setGroup("Menu");
bool menuKeepsOpen=(cfg.readEntry("KeepOpen", "FALSE") == "TRUE");
- fileView = new FileView( dir, this, 0, showHidden, showSymlinks );
+ fileView = new FileView( dir, this, 0, showHidden, showSymlinks, showThumbnails );
fileView->setAllColumnsShowFocus( TRUE );
fileView->setMenuKeepsOpen(menuKeepsOpen);
setCentralWidget( fileView );
setToolBarsMovable( FALSE );
@@ -773,14 +878,16 @@ void FileBrowser::init(const QString & dir)
sortMenu->setItemChecked( sortMenu->idAt( 5 ), TRUE );
sortMenu->setItemChecked( sortMenu->idAt( 0 ), TRUE );
viewMenu = new QPopupMenu( this);
viewMenu->insertItem( tr( "Hidden"), this, SLOT( updateShowHidden() ) );
viewMenu->insertItem( tr( "Symlinks"), this, SLOT( updateShowSymlinks() ) );
+ viewMenu->insertItem( tr( "Thumbnails"), this, SLOT( updateShowThumbnails() ) );
viewMenu->setItemChecked( viewMenu->idAt( 0 ), showHidden );
viewMenu->setItemChecked( viewMenu->idAt( 1 ), showSymlinks );
+ viewMenu->setItemChecked( viewMenu->idAt( 2 ), showThumbnails );
menuBar->insertItem( tr("View"), viewMenu );
toolBar = new QPEToolBar( this );
lastAction = new QAction( tr("Previous dir"), Resource::loadIconSet( "back" ),
@@ -927,13 +1034,12 @@ void FileBrowser::updateSorting()
}
void FileView::chPerm() {
FileItem * i;
QStringList fl;
QString cmd;
- int err;
if((i = (FileItem *) firstChild()) == 0) return;
while( i ){
if( i->isSelected() ){
fl += i->getFilePath();
@@ -979,6 +1085,45 @@ void FileBrowser::updateShowSymlinks()
Config cfg("Filebrowser");
cfg.setGroup("View");
cfg.writeEntry("Symlinks",valShowSymlinks?"TRUE":"FALSE");
fileView->updateDir();
}
+
+void FileBrowser::updateShowThumbnails()
+{
+ bool valShowThumbnails=viewMenu->isItemChecked( viewMenu->idAt( 2 ) );
+ valShowThumbnails=!valShowThumbnails;
+ viewMenu->setItemChecked( viewMenu->idAt( 2 ), valShowThumbnails );
+ fileView->setShowThumbnails(valShowThumbnails);
+
+ Config cfg("Filebrowser");
+ cfg.setGroup("View");
+ cfg.writeEntry("Thumbnails",valShowThumbnails?"TRUE":"FALSE");
+
+ fileView->updateDir();
+}
+
+void FileBrowser::cleanUp() {
+ QString cmdr = "rm -rf /tmp/filebrowserThumbnailCache";
+// qDebug("exit");
+ system(cmdr.latin1());
+}
+
+{
+ bool valShowThumbnails=viewMenu->isItemChecked( viewMenu->idAt( 2 ) );
+ valShowThumbnails=!valShowThumbnails;
+ viewMenu->setItemChecked( viewMenu->idAt( 2 ), valShowThumbnails );
+ fileView->setShowThumbnails(valShowThumbnails);
+
+ Config cfg("Filebrowser");
+ cfg.setGroup("View");
+ cfg.writeEntry("Thumbnails",valShowThumbnails?"TRUE":"FALSE");
+
+ fileView->updateDir();
+}
+
+void FileBrowser::cleanUp() {
+ QString cmdr = "rm -rf /tmp/filebrowserThumbnailCache";
+// qDebug("exit");
+ system(cmdr.latin1());
+}
diff --git a/noncore/unsupported/filebrowser/filebrowser.h b/noncore/unsupported/filebrowser/filebrowser.h
index 983e58e..549d463 100644
--- a/noncore/unsupported/filebrowser/filebrowser.h
+++ b/noncore/unsupported/filebrowser/filebrowser.h
@@ -42,34 +42,38 @@ public:
bool isLib();
int launch();
bool rename( const QString & name );
private:
QString sizeString( unsigned int size );
QFileInfo fileInfo;
+ QPixmap FileItem::drawThumbnail(const QFileInfo &file);
};
class FileView : public QListView
{
Q_OBJECT
public:
FileView( const QString & dir, QWidget * parent = 0,
- const char * name = 0,
- bool hidden = FALSE,
- bool symlinks = FALSE );
+ const char * name = 0,
+ bool hidden = FALSE,
+ bool symlinks = FALSE,
+ bool thumbnails = FALSE );
void setDir( const QString & dir );
QString cd(){ return currentDir; }
QStringList history() const { return dirHistory; }
bool showingHidden;
- void setShowHidden(bool hidden);
- void setShowSymlinks(bool symlinks);
- void setMenuKeepsOpen(bool keepOpen);
-
+ void setShowHidden(bool hidden);
+ void setShowSymlinks(bool symlinks);
+ void setShowThumbnails(bool thumbnails);
+ bool getShowThumbnails () const { return showThumbnails; }
+ void setMenuKeepsOpen(bool keepOpen);
+
public slots:
void updateDir();
void parentDir();
void lastDir();
void rename();
@@ -93,23 +97,23 @@ protected slots:
void cancelMenuTimer();
void selectAll(){ QListView::selectAll( TRUE ); }
void deselectAll(){ QListView::selectAll( FALSE ); }
void addToDocuments();
void run();
void endRenaming();
-
private:
QString currentDir;
QStringList dirHistory, flist;
QTimer menuTimer;
InlineEdit * le;
FileItem * itemToRename;
bool selected;
- bool showHidden;
- bool showSymlinks;
- bool menuKeepsOpen;
+ bool showHidden;
+ bool showSymlinks;
+ bool showThumbnails;
+ bool menuKeepsOpen;
bool copyFile( const QString & dest, const QString & src );
signals:
void dirChanged();
void textViewActivated( QWidget * w );
@@ -143,13 +147,16 @@ private slots:
void sortName();
void sortDate();
void sortSize();
void sortType();
void updateSorting();
- void updateShowHidden();
- void updateShowSymlinks();
+ void updateShowHidden();
+ void updateShowSymlinks();
+ void updateShowThumbnails();
void updateDirMenu();
void dirSelected( int id );
+ void cleanUp();
+
};
#endif