summaryrefslogtreecommitdiff
path: root/noncore/graphics
authorzecke <zecke>2004-04-07 23:47:43 (UTC)
committer zecke <zecke>2004-04-07 23:47:43 (UTC)
commit10ec13c9068e7e4ca0acf75e5843ebd91e4e8566 (patch) (side-by-side diff)
tree9889be205ecb8d65aeca3b280d1db7ed0f07791c /noncore/graphics
parent61cb9c9ad238e5aec6aaa1384549e0aab99d14bf (diff)
downloadopie-10ec13c9068e7e4ca0acf75e5843ebd91e4e8566.zip
opie-10ec13c9068e7e4ca0acf75e5843ebd91e4e8566.tar.gz
opie-10ec13c9068e7e4ca0acf75e5843ebd91e4e8566.tar.bz2
Implement setDocument so now we could start replacing showimg
Diffstat (limited to 'noncore/graphics') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.cpp10
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.h1
2 files changed, 11 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp
index 21a668a..3650493 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.cpp
+++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp
@@ -21,6 +21,7 @@
#include <qpe/resource.h>
#include <qpe/config.h>
#include <qpe/ir.h>
+#include <qpe/applnk.h>
#include <qtoolbar.h>
#include <qtoolbutton.h>
@@ -281,3 +282,12 @@ void PMainWindow::closeEvent( QCloseEvent* ev ) {
void PMainWindow::raiseIconView() {
m_stack->raiseWidget( IconView );
}
+
+void PMainWindow::setDocument( const QString& showImg ) {
+ QString file = showImg;
+ DocLnk lnk(showImg);
+ if (lnk.isValid() )
+ file = lnk.file();
+
+ slotDisplay( file );
+}
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.h b/noncore/graphics/opie-eye/gui/mainwindow.h
index 5de2f42..042d568 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.h
+++ b/noncore/graphics/opie-eye/gui/mainwindow.h
@@ -39,6 +39,7 @@ public slots:
void slotReturn();
void slotRotateToggled(bool);
void slotScaleToggled(bool);
+ void setDocument( const QString& );
protected:
void raiseIconView();