summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/imageinfoui.cpp
authorzecke <zecke>2004-04-05 20:01:22 (UTC)
committer zecke <zecke>2004-04-05 20:01:22 (UTC)
commitecdd2845abeb5f3d00f58540e9b222799d6610e8 (patch) (unidiff)
tree7199007b1dc296bb4572f2c96178d47d2f36bc02 /noncore/graphics/opie-eye/gui/imageinfoui.cpp
parentcb3097d5249b6bd576d0212394ab57e885f9e9da (diff)
downloadopie-ecdd2845abeb5f3d00f58540e9b222799d6610e8.zip
opie-ecdd2845abeb5f3d00f58540e9b222799d6610e8.tar.gz
opie-ecdd2845abeb5f3d00f58540e9b222799d6610e8.tar.bz2
Make use of OWidgetStack
Diffstat (limited to 'noncore/graphics/opie-eye/gui/imageinfoui.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/imageinfoui.cpp29
1 files changed, 27 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageinfoui.cpp b/noncore/graphics/opie-eye/gui/imageinfoui.cpp
index 3463ba6..74a9ea4 100644
--- a/noncore/graphics/opie-eye/gui/imageinfoui.cpp
+++ b/noncore/graphics/opie-eye/gui/imageinfoui.cpp
@@ -16,17 +16,28 @@
16#include <lib/slavemaster.h> 16#include <lib/slavemaster.h>
17#include <lib/imagecache.h> 17#include <lib/imagecache.h>
18 18
19#include <qpe/qcopenvelope_qws.h> 19#include <qpe/qcopenvelope_qws.h>
20#include <qpe/resource.h> 20#include <qpe/resource.h>
21 21
22#define THUMBSIZE 128 22static const int THUMBSIZE = 128;
23
24
25imageinfo::imageinfo(QWidget* parent, const char* name, WFlags fl )
26 : QWidget( parent, name, fl )
27{
28 init(name);
29}
23 30
24imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WFlags fl ) 31imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WFlags fl )
25 : QWidget( parent, name, fl ),currentFile(_path) 32 : QWidget( parent, name, fl ),currentFile(_path)
26{ 33{
34 init(name);
35 slotChangeName(_path);
36}
37void imageinfo::init(const char* name) {
27 { 38 {
28 QCopEnvelope( "QPE/Application/opie-eye_slave", "refUp()" ); 39 QCopEnvelope( "QPE/Application/opie-eye_slave", "refUp()" );
29 } 40 }
30 if ( !name ) 41 if ( !name )
31 setName( "imageinfo" ); 42 setName( "imageinfo" );
32 resize( 289, 335 ); 43 resize( 289, 335 );
@@ -59,13 +70,12 @@ imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WF
59 70
60 SlaveMaster* master = SlaveMaster::self(); 71 SlaveMaster* master = SlaveMaster::self();
61 connect( master, SIGNAL(sig_fullInfo(const QString&, const QString&)), 72 connect( master, SIGNAL(sig_fullInfo(const QString&, const QString&)),
62 this, SLOT(slot_fullInfo(const QString&, const QString&)) ); 73 this, SLOT(slot_fullInfo(const QString&, const QString&)) );
63 connect(master, SIGNAL( sig_thumbNail(const QString&, const QPixmap&)), 74 connect(master, SIGNAL( sig_thumbNail(const QString&, const QPixmap&)),
64 this, SLOT(slotThumbNail(const QString&, const QPixmap&))); 75 this, SLOT(slotThumbNail(const QString&, const QPixmap&)));
65 slotChangeName(_path);
66} 76}
67 77
68void imageinfo::slotChangeName(const QString&_path) 78void imageinfo::slotChangeName(const QString&_path)
69{ 79{
70 currentFile=_path; 80 currentFile=_path;
71 QFileInfo fi(_path); 81 QFileInfo fi(_path);
@@ -108,12 +118,25 @@ void imageinfo::slotThumbNail(const QString&_path, const QPixmap&_pix)
108 PixmapLabel1->setPixmap( _pix ); 118 PixmapLabel1->setPixmap( _pix );
109 PixmapLabel1->resize(QSize(_pix.width(),_pix.height())); 119 PixmapLabel1->resize(QSize(_pix.width(),_pix.height()));
110 } 120 }
111 } 121 }
112} 122}
113 123
124void imageinfo::setPath( const QString& str ) {
125 slotChangeName( str );
126}
127
128void imageinfo::setDestructiveClose() {
129 WFlags fl = getWFlags();
130 /* clear it just in case */
131 fl &= ~WDestructiveClose;
132 fl |= WDestructiveClose;
133 setWFlags( fl );
134}
135
136
114/* for testing */ 137/* for testing */
115infoDlg::infoDlg(const QString&fname,QWidget * parent, const char * name) 138infoDlg::infoDlg(const QString&fname,QWidget * parent, const char * name)
116 :QDialog(parent,name,true,WStyle_ContextHelp) 139 :QDialog(parent,name,true,WStyle_ContextHelp)
117{ 140{
118 QVBoxLayout*dlglayout = new QVBoxLayout(this); 141 QVBoxLayout*dlglayout = new QVBoxLayout(this);
119 dlglayout->setSpacing(2); 142 dlglayout->setSpacing(2);
@@ -122,6 +145,8 @@ infoDlg::infoDlg(const QString&fname,QWidget * parent, const char * name)
122 dlglayout->addWidget(inf); 145 dlglayout->addWidget(inf);
123} 146}
124 147
125infoDlg::~infoDlg() 148infoDlg::~infoDlg()
126{ 149{
127} 150}
151
152