summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/imageview.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/imageview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/imageview.cpp53
1 files changed, 41 insertions, 12 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageview.cpp b/noncore/graphics/opie-eye/gui/imageview.cpp
index 5b34ca2..53376c0 100644
--- a/noncore/graphics/opie-eye/gui/imageview.cpp
+++ b/noncore/graphics/opie-eye/gui/imageview.cpp
@@ -107,5 +107,3 @@ void ImageView::contentsMousePressEvent ( QMouseEvent * e)
107 } 107 }
108 if (!fullScreen()) return; 108// if (!fullScreen()) return;
109#if 0
110 // doesn't work right (repainting problems)
111 odebug << "Popup " << oendl; 109 odebug << "Popup " << oendl;
@@ -113,9 +111,13 @@ void ImageView::contentsMousePressEvent ( QMouseEvent * e)
113 if (!m) return; 111 if (!m) return;
114 m->insertItem(tr("Previous image"),ShowPrevious); 112 bool old = fullScreen();
115 m->insertItem(tr("Next image"),ShowNext); 113 m->insertItem(tr("Toggle fullscreen"),this, SIGNAL(toggleFullScreen()));
116 m->insertSeparator(); 114 if (fullScreen()) {
117 m->insertItem(tr("Toggle fullscreen"),FullScreen); 115 m->insertSeparator();
118 m->insertItem(tr("Toggle autoscale"),Autoscale); 116 m->insertItem(tr("Previous image"),this,SIGNAL(dispPrev()));
119 m->insertItem(tr("Toggle autorotate"),Autorotate); 117 m->insertItem(tr("Next image"),this,SIGNAL(dispNext()));
120 m->insertItem(tr("Toggle thumbnail"),Zoomer); 118 m->insertSeparator();
119 m->insertItem(tr("Toggle autoscale"),this, SIGNAL(toggleAutoscale()));
120 m->insertItem(tr("Toggle autorotate"),this, SIGNAL(toggleAutorotate()));
121 m->insertItem(tr("Toggle thumbnail"),this, SIGNAL(toggleZoomer()));
122 }
121 m->setFocus(); 123 m->setFocus();
@@ -123,4 +125,8 @@ void ImageView::contentsMousePressEvent ( QMouseEvent * e)
123 delete m; 125 delete m;
124 parentWidget()->showFullScreen(); 126 /* if we were fullScreen() and must overlap the taskbar again */
125#endif 127 if (fullScreen() && old) {
128 enableFullscreen();
129// parentWidget()->hide();
130// parentWidget()->show();
131 }
126} 132}
@@ -131 +137,24 @@ void ImageView::setFullScreen(bool how)
131} 137}
138
139void ImageView::focusInEvent(QFocusEvent *)
140{
141 // Always do it here, no matter the size.
142 /* result in an endless loop */
143// if (fullScreen()) enableFullscreen();
144}
145
146void ImageView::enableFullscreen()
147{
148 if (!fullScreen()) return;
149 // Make sure size is correct
150 parentWidget()->setFixedSize(qApp->desktop()->size());
151 // This call is needed because showFullScreen won't work
152 // correctly if the widget already considers itself to be fullscreen.
153 parentWidget()->showNormal();
154 // This is needed because showNormal() forcefully changes the window
155 // style to WSTyle_TopLevel.
156 parentWidget()->reparent(0, WStyle_Customize | WStyle_NoBorder, QPoint(0,0));
157 // Enable fullscreen.
158 parentWidget()->showFullScreen();
159}
160