author | alwin <alwin> | 2004-04-16 21:53:37 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-04-16 21:53:37 (UTC) |
commit | a33ef3772b9603ef60de8c9cfd029436e6cf0399 (patch) (unidiff) | |
tree | bc90f3b3b552be411c18acf3e571316fe2623e0b | |
parent | 217d387def6d97f912352899fd83908b28d75dfc (diff) | |
download | opie-a33ef3772b9603ef60de8c9cfd029436e6cf0399.zip opie-a33ef3772b9603ef60de8c9cfd029436e6cf0399.tar.gz opie-a33ef3772b9603ef60de8c9cfd029436e6cf0399.tar.bz2 |
after hard-testing on real device I hade made some beauty to
the fullscreen mode, now it seems working real fine.
Zecke: I think, on real frontend side most work is finish, now we should
resolve the problems with iconview and co. And find a faster rotate-algorithm ;)
-rw-r--r-- | noncore/graphics/opie-eye/gui/imageview.cpp | 1 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/imageview.h | 1 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/mainwindow.cpp | 17 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/mainwindow.h | 2 |
4 files changed, 19 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageview.cpp b/noncore/graphics/opie-eye/gui/imageview.cpp index 8e7f982..ee4b0a1 100644 --- a/noncore/graphics/opie-eye/gui/imageview.cpp +++ b/noncore/graphics/opie-eye/gui/imageview.cpp | |||
@@ -61,16 +61,17 @@ void ImageView::initKeys() | |||
61 | void ImageView::keyReleaseEvent(QKeyEvent * e) | 61 | void ImageView::keyReleaseEvent(QKeyEvent * e) |
62 | { | 62 | { |
63 | if (!e || e->state()!=0) { | 63 | if (!e || e->state()!=0) { |
64 | return; | 64 | return; |
65 | } | 65 | } |
66 | if (e->key()==Qt::Key_N) slotDispNext(); | 66 | if (e->key()==Qt::Key_N) slotDispNext(); |
67 | if (e->key()==Qt::Key_P) slotDispPrev(); | 67 | if (e->key()==Qt::Key_P) slotDispPrev(); |
68 | if (e->key()==Qt::Key_F) emit toggleFullScreen(); | 68 | if (e->key()==Qt::Key_F) emit toggleFullScreen(); |
69 | if (e->key()==Qt::Key_Escape && fullScreen()) emit hideMe(); | ||
69 | } | 70 | } |
70 | 71 | ||
71 | void ImageView::slotDispNext() | 72 | void ImageView::slotDispNext() |
72 | { | 73 | { |
73 | emit dispNext(); | 74 | emit dispNext(); |
74 | } | 75 | } |
75 | 76 | ||
76 | void ImageView::slotDispPrev() | 77 | void ImageView::slotDispPrev() |
diff --git a/noncore/graphics/opie-eye/gui/imageview.h b/noncore/graphics/opie-eye/gui/imageview.h index 32f7e11..75f798c 100644 --- a/noncore/graphics/opie-eye/gui/imageview.h +++ b/noncore/graphics/opie-eye/gui/imageview.h | |||
@@ -26,16 +26,17 @@ public: | |||
26 | void setFullScreen(bool how){m_isFullScreen = how;} | 26 | void setFullScreen(bool how){m_isFullScreen = how;} |
27 | bool fullScreen(){return m_isFullScreen;} | 27 | bool fullScreen(){return m_isFullScreen;} |
28 | 28 | ||
29 | signals: | 29 | signals: |
30 | void dispImageInfo(const QString&); | 30 | void dispImageInfo(const QString&); |
31 | void dispNext(); | 31 | void dispNext(); |
32 | void dispPrev(); | 32 | void dispPrev(); |
33 | void toggleFullScreen(); | 33 | void toggleFullScreen(); |
34 | void hideMe(); | ||
34 | 35 | ||
35 | protected: | 36 | protected: |
36 | Opie::Core::OConfig * m_cfg; | 37 | Opie::Core::OConfig * m_cfg; |
37 | Opie::Core::OKeyConfigManager*m_viewManager; | 38 | Opie::Core::OKeyConfigManager*m_viewManager; |
38 | void initKeys(); | 39 | void initKeys(); |
39 | bool m_isFullScreen:1; | 40 | bool m_isFullScreen:1; |
40 | 41 | ||
41 | protected slots: | 42 | protected slots: |
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp index 9b929a1..ef6e6df 100644 --- a/noncore/graphics/opie-eye/gui/mainwindow.cpp +++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp | |||
@@ -279,36 +279,41 @@ void PMainWindow::initDisp() { | |||
279 | m_disp->setAutoScale(autoScale); | 279 | m_disp->setAutoScale(autoScale); |
280 | m_disp->setAutoRotate(autoRotate); | 280 | m_disp->setAutoRotate(autoRotate); |
281 | m_disp->setShowZoomer(zoomerOn); | 281 | m_disp->setShowZoomer(zoomerOn); |
282 | m_disp->setBackgroundColor(white); | 282 | m_disp->setBackgroundColor(white); |
283 | connect(m_disp,SIGNAL(dispImageInfo(const QString&)),this,SLOT(slotShowInfo(const QString&))); | 283 | connect(m_disp,SIGNAL(dispImageInfo(const QString&)),this,SLOT(slotShowInfo(const QString&))); |
284 | connect(m_disp,SIGNAL(dispNext()),m_view,SLOT(slotShowNext())); | 284 | connect(m_disp,SIGNAL(dispNext()),m_view,SLOT(slotShowNext())); |
285 | connect(m_disp,SIGNAL(dispPrev()),m_view,SLOT(slotShowPrev())); | 285 | connect(m_disp,SIGNAL(dispPrev()),m_view,SLOT(slotShowPrev())); |
286 | connect(m_disp,SIGNAL(toggleFullScreen()),this,SLOT(slotToggleFullScreen())); | 286 | connect(m_disp,SIGNAL(toggleFullScreen()),this,SLOT(slotToggleFullScreen())); |
287 | connect(m_disp,SIGNAL(hideMe()),this,SLOT(raiseIconView())); | ||
287 | } | 288 | } |
288 | } | 289 | } |
289 | 290 | ||
290 | void PMainWindow::slotToggleFullScreen() | 291 | void PMainWindow::slotToggleFullScreen() |
291 | { | 292 | { |
292 | odebug << "Toggle full " << oendl; | 293 | odebug << "Toggle full " << oendl; |
293 | if (!m_disp) return; | 294 | if (!m_disp) return; |
294 | bool current = !m_disp->fullScreen(); | 295 | bool current = !m_disp->fullScreen(); |
295 | m_disp->setFullScreen(current); | 296 | m_disp->setFullScreen(current); |
296 | odebug << "Current = " << current << oendl; | 297 | odebug << "Current = " << current << oendl; |
297 | if (current) { | 298 | if (current) { |
298 | odebug << "full" << oendl; | 299 | odebug << "full" << oendl; |
299 | m_disp->setBackgroundColor(black); | 300 | m_disp->setBackgroundColor(black); |
300 | m_disp->reparent(0,QPoint(0,0)); | 301 | m_disp->reparent(0,QPoint(0,0)); |
302 | m_disp->setVScrollBarMode(QScrollView::AlwaysOff); | ||
303 | m_disp->setHScrollBarMode(QScrollView::AlwaysOff); | ||
301 | m_disp->resize(qApp->desktop()->width(), qApp->desktop()->height()); | 304 | m_disp->resize(qApp->desktop()->width(), qApp->desktop()->height()); |
302 | m_disp->showFullScreen(); | 305 | m_disp->showFullScreen(); |
303 | } else { | 306 | } else { |
304 | odebug << "window" << oendl; | 307 | odebug << "window" << oendl; |
305 | m_disp->setBackgroundColor(white); | 308 | m_disp->setBackgroundColor(white); |
306 | m_stack->addWidget(m_disp,ImageDisplay); | 309 | m_stack->addWidget(m_disp,ImageDisplay); |
310 | m_disp->setVScrollBarMode(QScrollView::Auto); | ||
311 | m_disp->setHScrollBarMode(QScrollView::Auto); | ||
307 | m_stack->raiseWidget(m_disp); | 312 | m_stack->raiseWidget(m_disp); |
308 | if (m_stack->mode() != Opie::Ui::OWidgetStack::SmallScreen) { | 313 | if (m_stack->mode() != Opie::Ui::OWidgetStack::SmallScreen) { |
309 | m_disp->resize(m_disp->minimumSize()); | 314 | m_disp->resize(m_disp->minimumSize()); |
310 | } | 315 | } |
311 | } | 316 | } |
312 | } | 317 | } |
313 | 318 | ||
314 | /** | 319 | /** |
@@ -326,32 +331,39 @@ void PMainWindow::slotShowInfo( const QString& inf ) { | |||
326 | m_info->setPath( inf ); | 331 | m_info->setPath( inf ); |
327 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { | 332 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { |
328 | prevButton->hide(); | 333 | prevButton->hide(); |
329 | nextButton->hide(); | 334 | nextButton->hide(); |
330 | upButton->hide(); | 335 | upButton->hide(); |
331 | fsButton->hide(); | 336 | fsButton->hide(); |
332 | viewModeButton->hide(); | 337 | viewModeButton->hide(); |
333 | } | 338 | } |
339 | if (m_disp && m_disp->fullScreen() && m_disp->isVisible()) { | ||
340 | m_disp->hide(); | ||
341 | } | ||
334 | m_stack->raiseWidget( ImageInfo ); | 342 | m_stack->raiseWidget( ImageInfo ); |
335 | } | 343 | } |
336 | 344 | ||
337 | void PMainWindow::slotDisplay( const QString& inf ) { | 345 | void PMainWindow::slotDisplay( const QString& inf ) { |
338 | if ( !m_disp ) { | 346 | if ( !m_disp ) { |
339 | initDisp(); | 347 | initDisp(); |
340 | } | 348 | } |
341 | m_disp->setImage( inf ); | 349 | m_disp->setImage( inf ); |
342 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { | 350 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { |
343 | prevButton->show(); | 351 | prevButton->show(); |
344 | nextButton->show(); | 352 | nextButton->show(); |
345 | upButton->hide(); | 353 | upButton->hide(); |
346 | fsButton->hide(); | 354 | fsButton->hide(); |
347 | viewModeButton->hide(); | 355 | viewModeButton->hide(); |
348 | } | 356 | } |
349 | m_stack->raiseWidget( ImageDisplay ); | 357 | if (m_disp->fullScreen()) { |
358 | m_disp->show(); | ||
359 | } else { | ||
360 | m_stack->raiseWidget( ImageDisplay ); | ||
361 | } | ||
350 | } | 362 | } |
351 | 363 | ||
352 | void PMainWindow::slotReturn() { | 364 | void PMainWindow::slotReturn() { |
353 | raiseIconView(); | 365 | raiseIconView(); |
354 | } | 366 | } |
355 | 367 | ||
356 | 368 | ||
357 | void PMainWindow::closeEvent( QCloseEvent* ev ) { | 369 | void PMainWindow::closeEvent( QCloseEvent* ev ) { |
@@ -372,16 +384,19 @@ void PMainWindow::closeEvent( QCloseEvent* ev ) { | |||
372 | void PMainWindow::raiseIconView() { | 384 | void PMainWindow::raiseIconView() { |
373 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { | 385 | if (m_stack->mode() == Opie::Ui::OWidgetStack::SmallScreen) { |
374 | prevButton->hide(); | 386 | prevButton->hide(); |
375 | nextButton->hide(); | 387 | nextButton->hide(); |
376 | upButton->show(); | 388 | upButton->show(); |
377 | fsButton->show(); | 389 | fsButton->show(); |
378 | viewModeButton->show(); | 390 | viewModeButton->show(); |
379 | } | 391 | } |
392 | if (m_disp && m_disp->fullScreen() && m_disp->isVisible()) { | ||
393 | m_disp->hide(); | ||
394 | } | ||
380 | m_stack->raiseWidget( IconView ); | 395 | m_stack->raiseWidget( IconView ); |
381 | } | 396 | } |
382 | 397 | ||
383 | void PMainWindow::setDocument( const QString& showImg ) { | 398 | void PMainWindow::setDocument( const QString& showImg ) { |
384 | QString file = showImg; | 399 | QString file = showImg; |
385 | DocLnk lnk(showImg); | 400 | DocLnk lnk(showImg); |
386 | if (lnk.isValid() ) | 401 | if (lnk.isValid() ) |
387 | file = lnk.file(); | 402 | file = lnk.file(); |
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.h b/noncore/graphics/opie-eye/gui/mainwindow.h index 4cfc39c..d238763 100644 --- a/noncore/graphics/opie-eye/gui/mainwindow.h +++ b/noncore/graphics/opie-eye/gui/mainwindow.h | |||
@@ -41,17 +41,17 @@ public slots: | |||
41 | void slotDisplay( const QString& inf ); | 41 | void slotDisplay( const QString& inf ); |
42 | void slotReturn(); | 42 | void slotReturn(); |
43 | void slotRotateToggled(bool); | 43 | void slotRotateToggled(bool); |
44 | void slotScaleToggled(bool); | 44 | void slotScaleToggled(bool); |
45 | void slotZoomerToggled(bool); | 45 | void slotZoomerToggled(bool); |
46 | void setDocument( const QString& ); | 46 | void setDocument( const QString& ); |
47 | virtual void slotToggleFullScreen(); | 47 | virtual void slotToggleFullScreen(); |
48 | 48 | ||
49 | protected: | 49 | protected slots: |
50 | void raiseIconView(); | 50 | void raiseIconView(); |
51 | void closeEvent( QCloseEvent* ); | 51 | void closeEvent( QCloseEvent* ); |
52 | 52 | ||
53 | private: | 53 | private: |
54 | template<class T> void initT( const char* name, T**, int ); | 54 | template<class T> void initT( const char* name, T**, int ); |
55 | void initInfo(); | 55 | void initInfo(); |
56 | void initDisp(); | 56 | void initDisp(); |
57 | 57 | ||