-rw-r--r-- | noncore/graphics/opie-eye/gui/imageview.cpp | 41 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/imageview.h | 11 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/mainwindow.cpp | 3 |
3 files changed, 17 insertions, 38 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageview.cpp b/noncore/graphics/opie-eye/gui/imageview.cpp index 5b00dea..03f3c1c 100644 --- a/noncore/graphics/opie-eye/gui/imageview.cpp +++ b/noncore/graphics/opie-eye/gui/imageview.cpp @@ -16,6 +16,6 @@ ImageView::ImageView(Opie::Core::OConfig *cfg, QWidget* parent, const char* name m_viewManager = 0; - m_focus_out = false; - block_next_focus = true; + focus_in_count = 0; m_cfg = cfg; m_isFullScreen = false; + m_ignore_next_in = false; QPEApplication::setStylusOperation(viewport(),QPEApplication::RightOnHold); @@ -109,3 +109,2 @@ void ImageView::contentsMousePressEvent ( QMouseEvent * e) } -// if (!fullScreen()) return; odebug << "Popup " << oendl; @@ -127,6 +126,2 @@ void ImageView::contentsMousePressEvent ( QMouseEvent * e) delete m; - /* if we were fullScreen() and must overlap the taskbar again */ - if (fullScreen() && old) { - enableFullscreen(); - } } @@ -141,8 +136,6 @@ void ImageView::focusInEvent(QFocusEvent *) // Always do it here, no matter the size. - odebug << "Focus in" << oendl; -} - -void ImageView::focusOutEvent(QFocusEvent *) -{ - odebug << "Focus out" << oendl; + odebug << "Focus in (view)" << oendl; + //if (fullScreen()) parentWidget()->showNormal(); + if (m_ignore_next_in){m_ignore_next_in=false;return;} + if (fullScreen()) enableFullscreen(); } @@ -153,15 +146,15 @@ void ImageView::enableFullscreen() // correctly if the widget already considers itself to be fullscreen. + if (!fullScreen()) return; + if (m_ignore_next_in) {m_ignore_next_in = false;return;} + setUpdatesEnabled(false); - odebug << "showNormal();" << oendl; parentWidget()->showNormal(); - odebug << "showNormal(); done " << oendl; // This is needed because showNormal() forcefully changes the window // style to WSTyle_TopLevel. - odebug << " reparent(0, WStyle_Customize | WStyle_NoBorder, QPoint(0,0));" << oendl; parentWidget()->reparent(0, WStyle_Customize | WStyle_NoBorder, QPoint(0,0)); - odebug << " reparent(0, WStyle_Customize | WStyle_NoBorder, QPoint(0,0)); done" << oendl; // Enable fullscreen. - odebug << "showFullScreen();" << oendl; + /* this is the trick - I don't now why, but after a showFullScreen QTE toggles the focus + * so we must block it here! */ + m_ignore_next_in = true; parentWidget()->showFullScreen(); - odebug << "showFullScreen(); done" << oendl; setUpdatesEnabled(true); @@ -169,12 +162,2 @@ void ImageView::enableFullscreen() -void ImageWidget::show() -{ - QWidget::show(); -} - -void ImageWidget::hide() -{ - QWidget::hide(); -} - ImageWidget::ImageWidget(QWidget * parent, const char * name, WFlags f) diff --git a/noncore/graphics/opie-eye/gui/imageview.h b/noncore/graphics/opie-eye/gui/imageview.h index 5f15bc9..f3c37b5 100644 --- a/noncore/graphics/opie-eye/gui/imageview.h +++ b/noncore/graphics/opie-eye/gui/imageview.h @@ -33,4 +33,4 @@ public: void setFullScreen(bool how); - virtual void enableFullscreen(); bool fullScreen(){return m_isFullScreen;} + virtual void enableFullscreen(); @@ -51,7 +51,6 @@ protected: bool m_isFullScreen:1; - bool m_focus_out:1; - bool block_next_focus:1; - + bool m_ignore_next_in:1; + int focus_in_count; virtual void focusInEvent ( QFocusEvent * ); - virtual void focusOutEvent ( QFocusEvent * ); + @@ -73,4 +72,2 @@ protected: public slots: - virtual void show(); - virtual void hide(); diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp index fa1680c..cdaf34c 100644 --- a/noncore/graphics/opie-eye/gui/mainwindow.cpp +++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp @@ -400,4 +400,3 @@ void PMainWindow::slotDisplay( const QString& inf ) { if (m_disp->fullScreen()) { -// tFrame->showFullScreen(); - m_disp->enableFullscreen(); + tFrame->show();//FullScreen(); } else { |