summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye
authoralwin <alwin>2004-04-14 08:25:56 (UTC)
committer alwin <alwin>2004-04-14 08:25:56 (UTC)
commit3ed50198400e432b308ca58178f562e2e256de0e (patch) (unidiff)
tree309807f0fcd25684a32c74e742089755553e9c11 /noncore/graphics/opie-eye
parent79558e549b0ce1fa17fe79fc437859d137ad821f (diff)
downloadopie-3ed50198400e432b308ca58178f562e2e256de0e.zip
opie-3ed50198400e432b308ca58178f562e2e256de0e.tar.gz
opie-3ed50198400e432b308ca58178f562e2e256de0e.tar.bz2
in BigScreen mode the imagedisplay will get a minimum size half of the screen
Zecke: I had to deactivate your viewbuttons 'cause you forgot to add the files for it ;)
Diffstat (limited to 'noncore/graphics/opie-eye') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.cpp23
-rw-r--r--noncore/graphics/opie-eye/phunk_view.pro8
2 files changed, 23 insertions, 8 deletions
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp
index dd9cced..f63b5a1 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.cpp
+++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp
@@ -8,8 +8,9 @@
8#include "filesystem.h" 8#include "filesystem.h"
9#include "imageinfoui.h" 9#include "imageinfoui.h"
10#include "imageview.h" 10#include "imageview.h"
11#if 0
11#include "viewmodebutton.h" 12#include "viewmodebutton.h"
12 13#endif
13#include <iface/ifaceinfo.h> 14#include <iface/ifaceinfo.h>
14#include <iface/dirview.h> 15#include <iface/dirview.h>
15 16
@@ -62,6 +63,8 @@ PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style)
62 connect(m_view, SIGNAL(sig_showInfo(const QString&)), 63 connect(m_view, SIGNAL(sig_showInfo(const QString&)),
63 this, SLOT(slotShowInfo(const QString&)) ); 64 this, SLOT(slotShowInfo(const QString&)) );
64 65
66 m_stack->forceMode(Opie::Ui::OWidgetStack::NoForce);
67
65 QToolButton *btn = new QToolButton( bar ); 68 QToolButton *btn = new QToolButton( bar );
66 btn->setIconSet( Resource::loadIconSet( "up" ) ); 69 btn->setIconSet( Resource::loadIconSet( "up" ) );
67 connect( btn, SIGNAL(clicked()), 70 connect( btn, SIGNAL(clicked()),
@@ -88,10 +91,11 @@ PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style)
88 connect( btn, SIGNAL(clicked() ), 91 connect( btn, SIGNAL(clicked() ),
89 m_view, SLOT(slotTrash() ) ); 92 m_view, SLOT(slotTrash() ) );
90 93
94#if 0
91 btn = new ViewModeButton( bar ); 95 btn = new ViewModeButton( bar );
92 connect( btn, SIGNAL(changeMode(int)), 96 connect( btn, SIGNAL(changeMode(int)),
93 m_view, SLOT(slotChangeMode(int))); 97 m_view, SLOT(slotChangeMode(int)));
94 98#endif
95 btn = new QToolButton( bar ); 99 btn = new QToolButton( bar );
96 btn->setIconSet( Resource::loadIconSet( "SettingsIcon" ) ); 100 btn->setIconSet( Resource::loadIconSet( "SettingsIcon" ) );
97 connect( btn, SIGNAL(clicked() ), 101 connect( btn, SIGNAL(clicked() ),
@@ -100,9 +104,17 @@ PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style)
100 rotateButton = new QToolButton(bar); 104 rotateButton = new QToolButton(bar);
101 rotateButton->setIconSet( Resource::loadIconSet( "rotate" ) ); 105 rotateButton->setIconSet( Resource::loadIconSet( "rotate" ) );
102 rotateButton->setToggleButton(true); 106 rotateButton->setToggleButton(true);
103 rotateButton->setOn(true); 107
108 odebug << "Mode = " << m_stack->mode() << oendl;
109 if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) {
110 rotateButton->setOn(true);
111 autoRotate = true;
112 } else {
113 rotateButton->setOn(false);
114 autoRotate = false;
115 }
116
104 connect(rotateButton,SIGNAL(toggled(bool)),this,SLOT(slotRotateToggled(bool))); 117 connect(rotateButton,SIGNAL(toggled(bool)),this,SLOT(slotRotateToggled(bool)));
105 autoRotate = true;
106 118
107 btn = new QToolButton(bar); 119 btn = new QToolButton(bar);
108 btn->setIconSet( Resource::loadIconSet( "1to1" ) ); 120 btn->setIconSet( Resource::loadIconSet( "1to1" ) );
@@ -248,6 +260,9 @@ void PMainWindow::initInfo() {
248void PMainWindow::initDisp() { 260void PMainWindow::initDisp() {
249 initT<ImageView>( "Image ScrollView", &m_disp, ImageDisplay ); 261 initT<ImageView>( "Image ScrollView", &m_disp, ImageDisplay );
250 if (m_disp) { 262 if (m_disp) {
263 if (m_stack->mode() != Opie::Ui::OWidgetStack::SmallScreen) {
264 m_disp->setMinimumSize(QApplication::desktop()->size()/2);
265 }
251 m_disp->setAutoScale(autoScale); 266 m_disp->setAutoScale(autoScale);
252 m_disp->setAutoRotate(autoRotate); 267 m_disp->setAutoRotate(autoRotate);
253 m_disp->setShowZoomer(zoomerOn); 268 m_disp->setShowZoomer(zoomerOn);
diff --git a/noncore/graphics/opie-eye/phunk_view.pro b/noncore/graphics/opie-eye/phunk_view.pro
index e9459ad..0aa7e14 100644
--- a/noncore/graphics/opie-eye/phunk_view.pro
+++ b/noncore/graphics/opie-eye/phunk_view.pro
@@ -12,8 +12,8 @@ HEADERS = gui/iconview.h gui/filesystem.h gui/mainwindow.h \
12 iface/slaveiface.h \ 12 iface/slaveiface.h \
13 gui/imageinfoui.h gui/imagescrollview.h \ 13 gui/imageinfoui.h gui/imagescrollview.h \
14 gui/imageview.h \ 14 gui/imageview.h \
15 lib/oimagezoomer.h \ 15 lib/oimagezoomer.h #\
16 gui/viewmodebutton.h 16 # gui/viewmodebutton.h
17 17
18# A list header files 18# A list header files
19 19
@@ -25,8 +25,8 @@ SOURCES = gui/iconview.cpp gui/filesystem.cpp gui/mainwindow.cpp \
25 impl/dir/dir_ifaceinfo.cpp lib/slavemaster.cpp \ 25 impl/dir/dir_ifaceinfo.cpp lib/slavemaster.cpp \
26 gui/imageinfoui.cpp gui/imagescrollview.cpp \ 26 gui/imageinfoui.cpp gui/imagescrollview.cpp \
27 gui/imageview.cpp \ 27 gui/imageview.cpp \
28 lib/oimagezoomer.cpp \ 28 lib/oimagezoomer.cpp #\
29 gui/viewmodebutton.cpp 29 # gui/viewmodebutton.cpp
30# A list of source files 30# A list of source files
31 31
32INTERFACES = 32INTERFACES =