summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/mainwindow.cpp
authoralwin <alwin>2004-04-21 09:56:14 (UTC)
committer alwin <alwin>2004-04-21 09:56:14 (UTC)
commitf4ab243362a9b93f17e92bbf3189324f66c8f686 (patch) (unidiff)
tree85fc40502c8a6fb76efb3ad2f2cf3f80c5af2cf6 /noncore/graphics/opie-eye/gui/mainwindow.cpp
parentc61b410ba0051c266501933f7f675291684613f8 (diff)
downloadopie-f4ab243362a9b93f17e92bbf3189324f66c8f686.zip
opie-f4ab243362a9b93f17e92bbf3189324f66c8f686.tar.gz
opie-f4ab243362a9b93f17e92bbf3189324f66c8f686.tar.bz2
polish on fullscreen mode
Diffstat (limited to 'noncore/graphics/opie-eye/gui/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp
index a784f5b..58f02ef 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.cpp
+++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp
@@ -329,7 +329,7 @@ void PMainWindow::slotToggleFullScreen()
329 odebug << "full" << oendl; 329 odebug << "full" << oendl;
330 m_disp->setBackgroundColor(black); 330 m_disp->setBackgroundColor(black);
331 if (!tFrame) { 331 if (!tFrame) {
332 tFrame = new QWidget(0,0,WType_TopLevel|WStyle_NoBorder|WStyle_StaysOnTop); 332 tFrame = new QWidget(0,0,WStyle_Customize|WStyle_NoBorder);
333 tFrame->resize(qApp->desktop()->width(), qApp->desktop()->height()); 333 tFrame->resize(qApp->desktop()->width(), qApp->desktop()->height());
334 tFrame->setMinimumSize(qApp->desktop()->width(), qApp->desktop()->height()); 334 tFrame->setMinimumSize(qApp->desktop()->width(), qApp->desktop()->height());
335 } 335 }
@@ -339,6 +339,7 @@ void PMainWindow::slotToggleFullScreen()
339 m_disp->resize(qApp->desktop()->width(), qApp->desktop()->height()); 339 m_disp->resize(qApp->desktop()->width(), qApp->desktop()->height());
340 tFrame->showFullScreen(); 340 tFrame->showFullScreen();
341 } else { 341 } else {
342 setUpdatesEnabled(false);
342 odebug << "window" << oendl; 343 odebug << "window" << oendl;
343 m_disp->reparent(0,QPoint(0,0)); 344 m_disp->reparent(0,QPoint(0,0));
344 m_disp->showNormal(); 345 m_disp->showNormal();
@@ -352,6 +353,7 @@ void PMainWindow::slotToggleFullScreen()
352 if (m_stack->mode() != Opie::Ui::OWidgetStack::SmallScreen) { 353 if (m_stack->mode() != Opie::Ui::OWidgetStack::SmallScreen) {
353 m_disp->resize(m_disp->minimumSize()); 354 m_disp->resize(m_disp->minimumSize());
354 } 355 }
356 setUpdatesEnabled(true);
355 } 357 }
356} 358}
357 359
@@ -427,6 +429,7 @@ void PMainWindow::closeEvent( QCloseEvent* ev ) {
427} 429}
428 430
429void PMainWindow::raiseIconView() { 431void PMainWindow::raiseIconView() {
432 setUpdatesEnabled(false);
430 if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { 433 if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) {
431 prevButton->hide(); 434 prevButton->hide();
432 nextButton->hide(); 435 nextButton->hide();
@@ -438,6 +441,8 @@ void PMainWindow::raiseIconView() {
438 tFrame->hide(); 441 tFrame->hide();
439 } 442 }
440 m_stack->raiseWidget( IconView ); 443 m_stack->raiseWidget( IconView );
444 setUpdatesEnabled(true);
445 repaint();
441} 446}
442 447
443void PMainWindow::setDocument( const QString& showImg ) { 448void PMainWindow::setDocument( const QString& showImg ) {