summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui
authorzecke <zecke>2004-04-13 22:21:20 (UTC)
committer zecke <zecke>2004-04-13 22:21:20 (UTC)
commit79558e549b0ce1fa17fe79fc437859d137ad821f (patch) (side-by-side diff)
treef8a504778d5a95abaed9f1cf3e451e31c94c5681 /noncore/graphics/opie-eye/gui
parente61f3d63c310e4e560bc38f41c1390f246b5f670 (diff)
downloadopie-79558e549b0ce1fa17fe79fc437859d137ad821f.zip
opie-79558e549b0ce1fa17fe79fc437859d137ad821f.tar.gz
opie-79558e549b0ce1fa17fe79fc437859d137ad821f.tar.bz2
First bits of different IconView Views
Diffstat (limited to 'noncore/graphics/opie-eye/gui') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/iconview.cpp36
-rw-r--r--noncore/graphics/opie-eye/gui/iconview.h3
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.cpp5
3 files changed, 43 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
@@ -38,27 +38,39 @@ using Opie::Core::OKeyConfigItem;
/*
* The Icons, Request Cache and IconViewItem for the IconView
*/
namespace {
static QPixmap* _dirPix = 0;
static QPixmap* _unkPix = 0;
+ static QPixmap* _picPix = 0;
class IconViewItem : public QIconViewItem {
public:
IconViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false);
QPixmap* pixmap()const;
QString path()const { return m_path; }
bool isDir()const { return m_isDir; }
void setText( const QString& );
+ protected:
+ mutable QPixmap* m_pix;
private:
- mutable QPixmap* m_pix;
QString m_path;
bool m_isDir : 1;
bool m_noInfo :1;
};
+ class TextViewItem : public IconViewItem {
+ TextViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false );
+ QPixmap *pixmap()const;
+ void setText( const QString& );
+ };
+ class ThumbViewItem : public IconViewItem {
+ ThumbViewItem( QIconView*, const QString& path, const QString& name, bool isDir = false );
+ QPixmap *pixmap()const;
+ void setText( const QString& );
+ };
/*
* If we request an Image or String
* we add it to the map
*/
@@ -112,12 +124,13 @@ PIconView::PIconView( QWidget* wid, Opie::Core::OConfig* cfg )
: QVBox( wid ), m_cfg( cfg ), m_updatet( false )
{
{
QCopEnvelope( "QPE/Application/opie-eye_slave", "refUp()" );
}
m_path = QDir::homeDirPath();
+ m_mode = 0;
QHBox *hbox = new QHBox( this );
QLabel* lbl = new QLabel( hbox );
lbl->setText( tr("View as" ) );
m_views = new QComboBox( hbox, "View As" );
@@ -452,6 +465,27 @@ void PIconView::slotImageInfo() {
slotImageInfo( name );
}
void PIconView::slotImageInfo( const QString& name) {
emit sig_showInfo( name );
}
+
+
+void PIconView::slotChangeMode( int mode ) {
+ if ( mode >= 0 && mode <= 3 )
+ m_mode = mode;
+
+ QIconView::ItemTextPos pos;
+ switch( m_mode ) {
+ case 1:
+ pos = QIconView::Bottom;
+ break;
+ case 2:
+ case 0:
+ default:
+ pos = QIconView::Right;
+ break;
+ }
+ m_view->setItemTextPos( pos );
+
+ slotReloadDir();
+}
diff --git a/noncore/graphics/opie-eye/gui/iconview.h b/noncore/graphics/opie-eye/gui/iconview.h
index 9cf7b3e..af41aef 100644
--- a/noncore/graphics/opie-eye/gui/iconview.h
+++ b/noncore/graphics/opie-eye/gui/iconview.h
@@ -67,16 +67,19 @@ private slots:
void addFiles( const QStringList& );
void slotClicked(QIconViewItem* );
/**/
void slotThumbInfo(const QString&, const QString&);
void slotThumbNail(const QString&, const QPixmap&);
+
+ void slotChangeMode( int );
private:
Opie::Core::OKeyConfigManager *m_viewManager;
Opie::Core::OConfig *m_cfg;
QComboBox* m_views;
QIconView* m_view;
QString m_path;
bool m_updatet : 1;
+ int m_mode;
};
#endif
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp
index ef23f79..dd9cced 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.cpp
+++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp
@@ -5,12 +5,13 @@
#include "mainwindow.h"
#include "iconview.h"
#include "filesystem.h"
#include "imageinfoui.h"
#include "imageview.h"
+#include "viewmodebutton.h"
#include <iface/ifaceinfo.h>
#include <iface/dirview.h>
#include <opie2/odebug.h>
#include <opie2/owidgetstack.h>
@@ -84,12 +85,16 @@ PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style)
btn = new QToolButton( bar );
btn->setIconSet( Resource::loadIconSet( "trash" ) );
connect( btn, SIGNAL(clicked() ),
m_view, SLOT(slotTrash() ) );
+ btn = new ViewModeButton( bar );
+ connect( btn, SIGNAL(changeMode(int)),
+ m_view, SLOT(slotChangeMode(int)));
+
btn = new QToolButton( bar );
btn->setIconSet( Resource::loadIconSet( "SettingsIcon" ) );
connect( btn, SIGNAL(clicked() ),
this, SLOT(slotConfig() ) );
rotateButton = new QToolButton(bar);