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
@@ -20,2 +20,3 @@
+
#include "inlineedit.h"
@@ -45,2 +46,3 @@
#include <qpainter.h>
+#include <qprogressbar.h>
@@ -49,2 +51,3 @@
#include <sys/stat.h>
+#include <qpe/qpeapplication.h>
@@ -85,3 +88,5 @@ FileItem::FileItem( QListView * parent, const QFileInfo & fi )
pm = Resource::loadPixmap( "library" );
- else
+ else if( ((FileView* )parent)->getShowThumbnails() && mt.id().contains(QRegExp("^image/", FALSE, FALSE)) )
+ pm = drawThumbnail(fi);
+ else
pm = mt.pixmap();
@@ -89,2 +94,3 @@ FileItem::FileItem( QListView * parent, const QFileInfo & fi )
pm = Resource::loadPixmap("UnknownDocument-14");
+
if( fi.isSymLink() ){
@@ -174,2 +180,53 @@ bool FileItem::rename( const QString & name )
+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;
+ }
+}
+
//
@@ -179,3 +236,3 @@ FileView::FileView( const QString & dir, QWidget * parent,
const char * name,
- bool hidden, bool symlinks )
+ bool hidden, bool symlinks, bool thumbnails )
: QListView( parent, name ),
@@ -185,3 +242,4 @@ FileView::FileView( const QString & dir, QWidget * parent,
showHidden( hidden ),
- showSymlinks( symlinks),
+ showSymlinks( symlinks ),
+ showThumbnails( thumbnails ),
menuKeepsOpen( FALSE )
@@ -255,3 +313,2 @@ void FileView::generateDir( const QString & dir )
-
const QFileInfoList * list = d.entryInfoList();
@@ -260,5 +317,18 @@ void FileView::generateDir( const QString & dir )
+ 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;
@@ -266,10 +336,18 @@ void FileView::generateDir( const QString & dir )
}
- 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();
+
}
@@ -465,2 +543,21 @@ void FileView::cut()
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()*/ ){
@@ -715,2 +812,7 @@ void FileView::setShowSymlinks(bool symlinks)
+void FileView::setShowThumbnails(bool thumbnails)
+{
+ showThumbnails=thumbnails;
+}
+
void FileView::setMenuKeepsOpen(bool keepOpen)
@@ -738,2 +840,4 @@ void FileBrowser::init(const QString & dir)
setIcon( Resource::loadPixmap( "filebrowser_icon" ) );
+ connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
+
@@ -743,2 +847,3 @@ void FileBrowser::init(const QString & dir)
bool showSymlinks=(cfg.readEntry("Symlinks","FALSE") == "TRUE");
+ bool showThumbnails=(cfg.readEntry("Thumbnails","FALSE") == "TRUE");
@@ -748,3 +853,3 @@ void FileBrowser::init(const QString & dir)
- fileView = new FileView( dir, this, 0, showHidden, showSymlinks );
+ fileView = new FileView( dir, this, 0, showHidden, showSymlinks, showThumbnails );
fileView->setAllColumnsShowFocus( TRUE );
@@ -778,4 +883,6 @@ void FileBrowser::init(const QString & dir)
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 );
@@ -932,3 +1039,2 @@ void FileView::chPerm() {
QString cmd;
- int err;
@@ -984 +1090,40 @@ void FileBrowser::updateShowSymlinks()
}
+
+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
@@ -47,2 +47,3 @@ private:
QFileInfo fileInfo;
+ QPixmap FileItem::drawThumbnail(const QFileInfo &file);
};
@@ -56,5 +57,6 @@ 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 );
@@ -65,6 +67,8 @@ public:
- 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:
@@ -98,3 +102,2 @@ protected slots:
void endRenaming();
-
private:
@@ -106,5 +109,6 @@ private:
bool selected;
- bool showHidden;
- bool showSymlinks;
- bool menuKeepsOpen;
+ bool showHidden;
+ bool showSymlinks;
+ bool showThumbnails;
+ bool menuKeepsOpen;
@@ -148,6 +152,9 @@ private slots:
void updateSorting();
- void updateShowHidden();
- void updateShowSymlinks();
+ void updateShowHidden();
+ void updateShowSymlinks();
+ void updateShowThumbnails();
void updateDirMenu();
void dirSelected( int id );
+ void cleanUp();
+
};