summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/iconview.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/iconview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/iconview.cpp36
1 files changed, 35 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/iconview.cpp b/noncore/graphics/opie-eye/gui/iconview.cpp
index 2a49786..a06844a 100644
--- a/noncore/graphics/opie-eye/gui/iconview.cpp
+++ b/noncore/graphics/opie-eye/gui/iconview.cpp
@@ -41,6 +41,7 @@ using Opie::Core::OKeyConfigItem;
41namespace { 41namespace {
42 static QPixmap* _dirPix = 0; 42 static QPixmap* _dirPix = 0;
43 static QPixmap* _unkPix = 0; 43 static QPixmap* _unkPix = 0;
44 static QPixmap* _picPix = 0;
44 class IconViewItem : public QIconViewItem { 45 class IconViewItem : public QIconViewItem {
45 public: 46 public:
46 IconViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false); 47 IconViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false);
@@ -49,13 +50,24 @@ namespace {
49 bool isDir()const { return m_isDir; } 50 bool isDir()const { return m_isDir; }
50 void setText( const QString& ); 51 void setText( const QString& );
51 52
53 protected:
54 mutable QPixmap* m_pix;
52 55
53 private: 56 private:
54 mutable QPixmap* m_pix;
55 QString m_path; 57 QString m_path;
56 bool m_isDir : 1; 58 bool m_isDir : 1;
57 bool m_noInfo :1; 59 bool m_noInfo :1;
58 }; 60 };
61 class TextViewItem : public IconViewItem {
62 TextViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false );
63 QPixmap *pixmap()const;
64 void setText( const QString& );
65 };
66 class ThumbViewItem : public IconViewItem {
67 ThumbViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false );
68 QPixmap *pixmap()const;
69 void setText( const QString& );
70 };
59 71
60 72
61/* 73/*
@@ -115,6 +127,7 @@ PIconView::PIconView( QWidget* wid, Opie::Core::OConfig* cfg )
115 QCopEnvelope( "QPE/Application/opie-eye_slave", "refUp()" ); 127 QCopEnvelope( "QPE/Application/opie-eye_slave", "refUp()" );
116 } 128 }
117 m_path = QDir::homeDirPath(); 129 m_path = QDir::homeDirPath();
130 m_mode = 0;
118 131
119 QHBox *hbox = new QHBox( this ); 132 QHBox *hbox = new QHBox( this );
120 QLabel* lbl = new QLabel( hbox ); 133 QLabel* lbl = new QLabel( hbox );
@@ -455,3 +468,24 @@ void PIconView::slotImageInfo() {
455void PIconView::slotImageInfo( const QString& name) { 468void PIconView::slotImageInfo( const QString& name) {
456 emit sig_showInfo( name ); 469 emit sig_showInfo( name );
457} 470}
471
472
473void PIconView::slotChangeMode( int mode ) {
474 if ( mode >= 0 && mode <= 3 )
475 m_mode = mode;
476
477 QIconView::ItemTextPos pos;
478 switch( m_mode ) {
479 case 1:
480 pos = QIconView::Bottom;
481 break;
482 case 2:
483 case 0:
484 default:
485 pos = QIconView::Right;
486 break;
487 }
488 m_view->setItemTextPos( pos );
489
490 slotReloadDir();
491}