-rw-r--r-- | noncore/graphics/opie-eye/gui/iconview.cpp | 20 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/iconview.h | 4 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/viewmodebutton.cpp | 29 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/viewmodebutton.h | 2 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/lib/oimagezoomer.cpp | 9 |
5 files changed, 56 insertions, 8 deletions
diff --git a/noncore/graphics/opie-eye/gui/iconview.cpp b/noncore/graphics/opie-eye/gui/iconview.cpp index a06844a..e61f9d9 100644 --- a/noncore/graphics/opie-eye/gui/iconview.cpp +++ b/noncore/graphics/opie-eye/gui/iconview.cpp | |||
@@ -282,210 +282,222 @@ void PIconView::slotTrash() { | |||
282 | 282 | ||
283 | currentView()->dirLister()->deleteImage( pa ); | 283 | currentView()->dirLister()->deleteImage( pa ); |
284 | delete m_view->currentItem(); | 284 | delete m_view->currentItem(); |
285 | } | 285 | } |
286 | 286 | ||
287 | /* | 287 | /* |
288 | * see what views are available | 288 | * see what views are available |
289 | */ | 289 | */ |
290 | void PIconView::loadViews() { | 290 | void PIconView::loadViews() { |
291 | ViewMap::Iterator it; | 291 | ViewMap::Iterator it; |
292 | ViewMap* map = viewMap(); | 292 | ViewMap* map = viewMap(); |
293 | for ( it = map->begin(); it != map->end(); ++it ) | 293 | for ( it = map->begin(); it != map->end(); ++it ) |
294 | m_views->insertItem( QObject::tr(it.key() ) ); | 294 | m_views->insertItem( QObject::tr(it.key() ) ); |
295 | } | 295 | } |
296 | 296 | ||
297 | void PIconView::resetView() { | 297 | void PIconView::resetView() { |
298 | slotViewChanged(m_views->currentItem()); | 298 | slotViewChanged(m_views->currentItem()); |
299 | } | 299 | } |
300 | 300 | ||
301 | /* | 301 | /* |
302 | *swicth view reloadDir and connect signals | 302 | *swicth view reloadDir and connect signals |
303 | */ | 303 | */ |
304 | void PIconView::slotViewChanged( int i) { | 304 | void PIconView::slotViewChanged( int i) { |
305 | if (!m_views->count() ) { | 305 | if (!m_views->count() ) { |
306 | setCurrentView( 0l); | 306 | setCurrentView( 0l); |
307 | return; | 307 | return; |
308 | } | 308 | } |
309 | 309 | ||
310 | PDirView* cur = currentView(); | 310 | PDirView* cur = currentView(); |
311 | delete cur; | 311 | delete cur; |
312 | QString str = m_views->text(i); | 312 | QString str = m_views->text(i); |
313 | cur = (*(*viewMap())[str])(*m_cfg); | 313 | cur = (*(*viewMap())[str])(*m_cfg); |
314 | setCurrentView( cur ); | 314 | setCurrentView( cur ); |
315 | 315 | ||
316 | /* connect to the signals of the lister */ | 316 | /* connect to the signals of the lister */ |
317 | PDirLister* lis = cur->dirLister(); | 317 | PDirLister* lis = cur->dirLister(); |
318 | connect(lis, SIGNAL(sig_thumbInfo(const QString&, const QString& )), | 318 | connect(lis, SIGNAL(sig_thumbInfo(const QString&, const QString& )), |
319 | this, SLOT( slotThumbInfo(const QString&, const QString&))); | 319 | this, SLOT( slotThumbInfo(const QString&, const QString&))); |
320 | connect(lis, SIGNAL( sig_thumbNail(const QString&, const QPixmap&)), | 320 | connect(lis, SIGNAL( sig_thumbNail(const QString&, const QPixmap&)), |
321 | this, SLOT(slotThumbNail(const QString&, const QPixmap&))); | 321 | this, SLOT(slotThumbNail(const QString&, const QPixmap&))); |
322 | connect(lis, SIGNAL(sig_start()), | 322 | connect(lis, SIGNAL(sig_start()), |
323 | this, SLOT(slotStart())); | 323 | this, SLOT(slotStart())); |
324 | connect(lis, SIGNAL(sig_end()) , | 324 | connect(lis, SIGNAL(sig_end()) , |
325 | this, SLOT(slotEnd()) ); | 325 | this, SLOT(slotEnd()) ); |
326 | 326 | ||
327 | 327 | ||
328 | /* reload now */ | 328 | /* reload now */ |
329 | QTimer::singleShot( 0, this, SLOT(slotReloadDir())); | 329 | QTimer::singleShot( 0, this, SLOT(slotReloadDir())); |
330 | } | 330 | } |
331 | 331 | ||
332 | 332 | ||
333 | void PIconView::slotReloadDir() { | 333 | void PIconView::slotReloadDir() { |
334 | slotChangeDir( m_path ); | 334 | slotChangeDir( m_path ); |
335 | } | 335 | } |
336 | 336 | ||
337 | 337 | ||
338 | /* | 338 | /* |
339 | * add files and folders | 339 | * add files and folders |
340 | */ | 340 | */ |
341 | void PIconView::addFolders( const QStringList& lst) { | 341 | void PIconView::addFolders( const QStringList& lst) { |
342 | QStringList::ConstIterator it; | 342 | QStringList::ConstIterator it; |
343 | 343 | ||
344 | for(it=lst.begin(); it != lst.end(); ++it ) | 344 | for(it=lst.begin(); it != lst.end(); ++it ) |
345 | (void)new IconViewItem( m_view, m_path+"/"+(*it), (*it), true ); | 345 | (void)new IconViewItem( m_view, m_path+"/"+(*it), (*it), true ); |
346 | 346 | ||
347 | 347 | ||
348 | } | 348 | } |
349 | 349 | ||
350 | void PIconView::addFiles( const QStringList& lst) { | 350 | void PIconView::addFiles( const QStringList& lst) { |
351 | QStringList::ConstIterator it; | 351 | QStringList::ConstIterator it; |
352 | for (it=lst.begin(); it!= lst.end(); ++it ) | 352 | for (it=lst.begin(); it!= lst.end(); ++it ) |
353 | (void)new IconViewItem( m_view, m_path+"/"+(*it), (*it) ); | 353 | (void)new IconViewItem( m_view, m_path+"/"+(*it), (*it) ); |
354 | 354 | ||
355 | } | 355 | } |
356 | 356 | ||
357 | /* | 357 | /* |
358 | * user clicked on the item. Change dir or view | 358 | * user clicked on the item. Change dir or view |
359 | */ | 359 | */ |
360 | void PIconView::slotClicked(QIconViewItem* _it) { | 360 | void PIconView::slotClicked(QIconViewItem* _it) { |
361 | if(!_it ) | 361 | if(!_it ) |
362 | return; | 362 | return; |
363 | 363 | ||
364 | IconViewItem* it = static_cast<IconViewItem*>(_it); | 364 | IconViewItem* it = static_cast<IconViewItem*>(_it); |
365 | if( it->isDir() ) | 365 | if( it->isDir() ) |
366 | slotChangeDir( it->path() ); | 366 | slotChangeDir( it->path() ); |
367 | else // view image | 367 | else // view image |
368 | slotShowImage(); | 368 | slotShowImage(); |
369 | } | 369 | } |
370 | 370 | ||
371 | /* | 371 | /* |
372 | * got thumb info add to the cache if items is visible | 372 | * got thumb info add to the cache if items is visible |
373 | * we later need update after processing of slave is done | 373 | * we later need update after processing of slave is done |
374 | */ | 374 | */ |
375 | void PIconView::slotThumbInfo( const QString& _path, const QString& str ) { | 375 | void PIconView::slotThumbInfo( const QString& _path, const QString& str ) { |
376 | IconViewItem* item = g_stringInf[_path]; | 376 | IconViewItem* item = g_stringInf[_path]; |
377 | if (!item ) | 377 | if (!item ) |
378 | return; | 378 | return; |
379 | 379 | ||
380 | if ( item->intersects(QRect( m_view->contentsX(),m_view->contentsY(), | 380 | if ( item->intersects(QRect( m_view->contentsX(),m_view->contentsY(), |
381 | m_view->contentsWidth(), m_view->contentsHeight() ) ) ) | 381 | m_view->contentsWidth(), m_view->contentsHeight() ) ) ) |
382 | m_updatet = true; | 382 | m_updatet = true; |
383 | 383 | ||
384 | item->setText( str ); | 384 | item->setText( str ); |
385 | g_stringInf.remove( _path ); | 385 | g_stringInf.remove( _path ); |
386 | } | 386 | } |
387 | 387 | ||
388 | /* | 388 | /* |
389 | * got thumbnail and see if it is visible so we need to update later | 389 | * got thumbnail and see if it is visible so we need to update later |
390 | */ | 390 | */ |
391 | void PIconView::slotThumbNail(const QString& _path, const QPixmap &pix) { | 391 | void PIconView::slotThumbNail(const QString& _path, const QPixmap &pix) { |
392 | IconViewItem* item = g_stringPix[_path]; | 392 | IconViewItem* item = g_stringPix[_path]; |
393 | if (!item ) | 393 | if (!item ) |
394 | return; | 394 | return; |
395 | 395 | ||
396 | if ( item->intersects(QRect( m_view->contentsX(),m_view->contentsY(), | 396 | if ( item->intersects(QRect( m_view->contentsX(),m_view->contentsY(), |
397 | m_view->contentsWidth(), m_view->contentsHeight() ) ) ) | 397 | m_view->contentsWidth(), m_view->contentsHeight() ) ) ) |
398 | m_updatet = true; | 398 | m_updatet = true; |
399 | 399 | ||
400 | if (pix.width()>0) | 400 | if (pix.width()>0) |
401 | PPixmapCache::self()->insertImage( _path, pix, 64, 64 ); | 401 | PPixmapCache::self()->insertImage( _path, pix, 64, 64 ); |
402 | 402 | ||
403 | 403 | ||
404 | g_stringPix.remove( _path ); | 404 | g_stringPix.remove( _path ); |
405 | } | 405 | } |
406 | 406 | ||
407 | 407 | ||
408 | /* | 408 | /* |
409 | * FIXME rename | 409 | * FIXME rename |
410 | */ | 410 | */ |
411 | void PIconView::slotRename() { | 411 | void PIconView::slotRename() { |
412 | 412 | ||
413 | } | 413 | } |
414 | 414 | ||
415 | 415 | ||
416 | /* | 416 | /* |
417 | * BEAM the current file | 417 | * BEAM the current file |
418 | */ | 418 | */ |
419 | void PIconView::slotBeam() { | 419 | void PIconView::slotBeam() { |
420 | bool isDir; | 420 | bool isDir; |
421 | QString pa = currentFileName( isDir ); | 421 | QString pa = currentFileName( isDir ); |
422 | if ( isDir && pa.isEmpty() ) | 422 | if ( isDir && pa.isEmpty() ) |
423 | return; | 423 | return; |
424 | 424 | ||
425 | Ir* ir = new Ir( this ); | 425 | Ir* ir = new Ir( this ); |
426 | connect( ir, SIGNAL(done(Ir*)), | 426 | connect( ir, SIGNAL(done(Ir*)), |
427 | this, SLOT(slotBeamDone(Ir*))); | 427 | this, SLOT(slotBeamDone(Ir*))); |
428 | ir->send(pa, tr( "Image" ) ); | 428 | ir->send(pa, tr( "Image" ) ); |
429 | } | 429 | } |
430 | 430 | ||
431 | /* | 431 | /* |
432 | * BEAM done clean up | 432 | * BEAM done clean up |
433 | */ | 433 | */ |
434 | void PIconView::slotBeamDone( Ir* ir) { | 434 | void PIconView::slotBeamDone( Ir* ir) { |
435 | delete ir; | 435 | delete ir; |
436 | } | 436 | } |
437 | 437 | ||
438 | void PIconView::slotStart() { | 438 | void PIconView::slotStart() { |
439 | m_view->viewport()->setUpdatesEnabled( false ); | 439 | m_view->viewport()->setUpdatesEnabled( false ); |
440 | } | 440 | } |
441 | 441 | ||
442 | void PIconView::slotEnd() { | 442 | void PIconView::slotEnd() { |
443 | if ( m_updatet ) | 443 | if ( m_updatet ) |
444 | m_view->arrangeItemsInGrid( ); | 444 | m_view->arrangeItemsInGrid( ); |
445 | m_view->viewport()->setUpdatesEnabled( true ); | 445 | m_view->viewport()->setUpdatesEnabled( true ); |
446 | m_updatet = false; | 446 | m_updatet = false; |
447 | } | 447 | } |
448 | 448 | ||
449 | void PIconView::slotShowImage() | 449 | void PIconView::slotShowImage() |
450 | { | 450 | { |
451 | bool isDir = false; | 451 | bool isDir = false; |
452 | QString name = currentFileName(isDir); | 452 | QString name = currentFileName(isDir); |
453 | if (isDir) return; | 453 | if (isDir) return; |
454 | 454 | ||
455 | slotShowImage( name ); | 455 | slotShowImage( name ); |
456 | } | 456 | } |
457 | void PIconView::slotShowImage( const QString& name) { | 457 | void PIconView::slotShowImage( const QString& name) { |
458 | emit sig_display( name ); | 458 | emit sig_display( name ); |
459 | } | 459 | } |
460 | void PIconView::slotImageInfo() { | 460 | void PIconView::slotImageInfo() { |
461 | bool isDir = false; | 461 | bool isDir = false; |
462 | QString name = currentFileName(isDir); | 462 | QString name = currentFileName(isDir); |
463 | if (isDir) return; | 463 | if (isDir) return; |
464 | 464 | ||
465 | slotImageInfo( name ); | 465 | slotImageInfo( name ); |
466 | } | 466 | } |
467 | 467 | ||
468 | void PIconView::slotImageInfo( const QString& name) { | 468 | void PIconView::slotImageInfo( const QString& name) { |
469 | emit sig_showInfo( name ); | 469 | emit sig_showInfo( name ); |
470 | } | 470 | } |
471 | 471 | ||
472 | 472 | ||
473 | void PIconView::slotChangeMode( int mode ) { | 473 | void PIconView::slotChangeMode( int mode ) { |
474 | if ( mode >= 0 && mode <= 3 ) | 474 | if ( mode >= 1 && mode <= 3 ) |
475 | m_mode = mode; | 475 | m_mode = mode; |
476 | 476 | ||
477 | QIconView::ItemTextPos pos; | 477 | QIconView::ItemTextPos pos; |
478 | switch( m_mode ) { | 478 | switch( m_mode ) { |
479 | case 1: | 479 | case 2: |
480 | pos = QIconView::Bottom; | 480 | pos = QIconView::Bottom; |
481 | break; | 481 | break; |
482 | case 2: | 482 | case 3: |
483 | case 0: | 483 | case 1: |
484 | default: | 484 | default: |
485 | pos = QIconView::Right; | 485 | pos = QIconView::Right; |
486 | break; | 486 | break; |
487 | } | 487 | } |
488 | m_view->setItemTextPos( pos ); | 488 | m_view->setItemTextPos( pos ); |
489 | 489 | ||
490 | calculateGrid(); | ||
490 | slotReloadDir(); | 491 | slotReloadDir(); |
491 | } | 492 | } |
493 | |||
494 | |||
495 | void PIconView::resizeEvent( QResizeEvent* re ) { | ||
496 | QVBox::resizeEvent( re ); | ||
497 | calculateGrid(); | ||
498 | } | ||
499 | |||
500 | |||
501 | void PIconView::calculateGrid() { | ||
502 | |||
503 | } | ||
diff --git a/noncore/graphics/opie-eye/gui/iconview.h b/noncore/graphics/opie-eye/gui/iconview.h index af41aef..903c4fd 100644 --- a/noncore/graphics/opie-eye/gui/iconview.h +++ b/noncore/graphics/opie-eye/gui/iconview.h | |||
@@ -1,85 +1,89 @@ | |||
1 | /* | 1 | /* |
2 | * GPLv2 zecke@handhelds.org | 2 | * GPLv2 zecke@handhelds.org |
3 | * No WArranty... | 3 | * No WArranty... |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #ifndef PHUNK_ICON_VIEW_H | 6 | #ifndef PHUNK_ICON_VIEW_H |
7 | #define PHUNK_ICON_VIEW_H | 7 | #define PHUNK_ICON_VIEW_H |
8 | 8 | ||
9 | #include <qvbox.h> | 9 | #include <qvbox.h> |
10 | 10 | ||
11 | 11 | ||
12 | class QIconView; | 12 | class QIconView; |
13 | class QIconViewItem; | 13 | class QIconViewItem; |
14 | class QComboBox; | 14 | class QComboBox; |
15 | class PIconViewItem; | 15 | class PIconViewItem; |
16 | class PDirLister; | 16 | class PDirLister; |
17 | class Ir; | 17 | class Ir; |
18 | 18 | ||
19 | namespace Opie { | 19 | namespace Opie { |
20 | namespace Core{ | 20 | namespace Core{ |
21 | class OConfig; | 21 | class OConfig; |
22 | class OKeyConfigManager; | 22 | class OKeyConfigManager; |
23 | } | 23 | } |
24 | } | 24 | } |
25 | 25 | ||
26 | class PIconView : public QVBox { | 26 | class PIconView : public QVBox { |
27 | Q_OBJECT | 27 | Q_OBJECT |
28 | friend class PIconViewItem; | 28 | friend class PIconViewItem; |
29 | enum ActionIds { | 29 | enum ActionIds { |
30 | BeamItem, DeleteItem, ViewItem, InfoItem | 30 | BeamItem, DeleteItem, ViewItem, InfoItem |
31 | }; | 31 | }; |
32 | public: | 32 | public: |
33 | PIconView( QWidget* wid, Opie::Core::OConfig *cfg ); | 33 | PIconView( QWidget* wid, Opie::Core::OConfig *cfg ); |
34 | ~PIconView(); | 34 | ~PIconView(); |
35 | void resetView(); | 35 | void resetView(); |
36 | Opie::Core::OKeyConfigManager* manager(); | 36 | Opie::Core::OKeyConfigManager* manager(); |
37 | 37 | ||
38 | signals: | 38 | signals: |
39 | void sig_showInfo( const QString& ); | 39 | void sig_showInfo( const QString& ); |
40 | void sig_display( const QString& ); | 40 | void sig_display( const QString& ); |
41 | 41 | ||
42 | protected: | ||
43 | void resizeEvent( QResizeEvent* ); | ||
44 | |||
42 | private: | 45 | private: |
43 | void initKeys(); | 46 | void initKeys(); |
44 | QString currentFileName(bool &isDir)const; | 47 | QString currentFileName(bool &isDir)const; |
45 | void loadViews(); | 48 | void loadViews(); |
49 | void calculateGrid(); | ||
46 | 50 | ||
47 | private slots: | 51 | private slots: |
48 | void slotDirUp(); | 52 | void slotDirUp(); |
49 | void slotChangeDir(const QString&); | 53 | void slotChangeDir(const QString&); |
50 | void slotTrash(); | 54 | void slotTrash(); |
51 | void slotViewChanged( int ); | 55 | void slotViewChanged( int ); |
52 | void slotReloadDir(); | 56 | void slotReloadDir(); |
53 | void slotRename(); | 57 | void slotRename(); |
54 | void slotBeam(); | 58 | void slotBeam(); |
55 | void slotBeamDone( Ir* ); | 59 | void slotBeamDone( Ir* ); |
56 | 60 | ||
57 | void slotShowImage(); | 61 | void slotShowImage(); |
58 | void slotShowImage( const QString& ); | 62 | void slotShowImage( const QString& ); |
59 | void slotImageInfo(); | 63 | void slotImageInfo(); |
60 | void slotImageInfo( const QString& ); | 64 | void slotImageInfo( const QString& ); |
61 | 65 | ||
62 | void slotStart(); | 66 | void slotStart(); |
63 | void slotEnd(); | 67 | void slotEnd(); |
64 | 68 | ||
65 | /* for performance reasons make it inline in the future */ | 69 | /* for performance reasons make it inline in the future */ |
66 | void addFolders( const QStringList& ); | 70 | void addFolders( const QStringList& ); |
67 | void addFiles( const QStringList& ); | 71 | void addFiles( const QStringList& ); |
68 | void slotClicked(QIconViewItem* ); | 72 | void slotClicked(QIconViewItem* ); |
69 | 73 | ||
70 | /**/ | 74 | /**/ |
71 | void slotThumbInfo(const QString&, const QString&); | 75 | void slotThumbInfo(const QString&, const QString&); |
72 | void slotThumbNail(const QString&, const QPixmap&); | 76 | void slotThumbNail(const QString&, const QPixmap&); |
73 | 77 | ||
74 | void slotChangeMode( int ); | 78 | void slotChangeMode( int ); |
75 | private: | 79 | private: |
76 | Opie::Core::OKeyConfigManager *m_viewManager; | 80 | Opie::Core::OKeyConfigManager *m_viewManager; |
77 | Opie::Core::OConfig *m_cfg; | 81 | Opie::Core::OConfig *m_cfg; |
78 | QComboBox* m_views; | 82 | QComboBox* m_views; |
79 | QIconView* m_view; | 83 | QIconView* m_view; |
80 | QString m_path; | 84 | QString m_path; |
81 | bool m_updatet : 1; | 85 | bool m_updatet : 1; |
82 | int m_mode; | 86 | int m_mode; |
83 | }; | 87 | }; |
84 | 88 | ||
85 | #endif | 89 | #endif |
diff --git a/noncore/graphics/opie-eye/gui/viewmodebutton.cpp b/noncore/graphics/opie-eye/gui/viewmodebutton.cpp index fdf4e77..0e4a7cb 100644 --- a/noncore/graphics/opie-eye/gui/viewmodebutton.cpp +++ b/noncore/graphics/opie-eye/gui/viewmodebutton.cpp | |||
@@ -1,24 +1,45 @@ | |||
1 | #include "viewmodebutton.h" | 1 | #include "viewmodebutton.h" |
2 | 2 | ||
3 | #include <opie2/odebug.h> | ||
4 | |||
3 | #include <qtoolbar.h> | 5 | #include <qtoolbar.h> |
4 | #include <qpopupmenu.h> | 6 | #include <qpopupmenu.h> |
5 | 7 | ||
6 | ViewModeButton::ViewModeButton( QToolBar* bar ) | 8 | ViewModeButton::ViewModeButton( QToolBar* bar ) |
7 | : QToolButton( bar ) | 9 | : QToolButton( bar ) |
8 | { | 10 | { |
9 | setIconSet( Resource::loadIconSet( "toys" ) ); | 11 | slotChange( 1 ); |
10 | QPopupMenu *pop= new QPopupMenu( this ); | 12 | QPopupMenu *pop= new QPopupMenu( this ); |
11 | pop->setCheckable( true ); | 13 | pop->setCheckable( true ); |
12 | pop->insertItem( tr("Thumbnail and Imageinfo"), 0 ); | 14 | pop->insertItem( tr("Thumbnail and Imageinfo"), 1 ); |
13 | pop->insertItem( tr("Thumbnail and Name" ), 1 ); | 15 | pop->insertItem( tr("Thumbnail and Name" ), 2 ); |
14 | pop->insertItem( tr("Name Only" ), 2 ); | 16 | pop->insertItem( tr("Name Only" ), 3 ); |
15 | connect(pop, SIGNAL(activated(int)), | 17 | connect(pop, SIGNAL(activated(int)), |
16 | this, SIGNAL(changeMode(int)) ); | 18 | this, SIGNAL(changeMode(int)) ); |
19 | connect(pop, SIGNAL(activated(int)), | ||
20 | this, SLOT(slotChange(int)) ); | ||
17 | 21 | ||
18 | 22 | ||
19 | setPopup( pop ); | 23 | setPopup( pop ); |
20 | } | 24 | } |
21 | 25 | ||
22 | ViewModeButton::~ViewModeButton() { | 26 | ViewModeButton::~ViewModeButton() { |
27 | } | ||
28 | |||
29 | void ViewModeButton::slotChange( int i ) { | ||
30 | QString name; | ||
31 | switch( i ) { | ||
32 | case 1: | ||
33 | name = "opie-eye/opie-eye-thumb"; | ||
34 | break; | ||
35 | case 2: | ||
36 | name = "opie-eye/opie-eye-thumbonly"; | ||
37 | break; | ||
38 | case 3: | ||
39 | name = "opie-eye/opie-eye-textview"; | ||
40 | break; | ||
41 | } | ||
23 | 42 | ||
43 | qWarning("foo %d" +name, i ); | ||
44 | setIconSet( Resource::loadIconSet( name ) ); | ||
24 | } | 45 | } |
diff --git a/noncore/graphics/opie-eye/gui/viewmodebutton.h b/noncore/graphics/opie-eye/gui/viewmodebutton.h index 44f2228..3247114 100644 --- a/noncore/graphics/opie-eye/gui/viewmodebutton.h +++ b/noncore/graphics/opie-eye/gui/viewmodebutton.h | |||
@@ -1,23 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | * GPLv2 only | 2 | * GPLv2 only |
3 | * zecke@handhelds.org | 3 | * zecke@handhelds.org |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #ifndef PHUNK_VIEW_MODE_BUTTON_H | 6 | #ifndef PHUNK_VIEW_MODE_BUTTON_H |
7 | #define PHUNK_VIEW_MODE_BUTTON_H | 7 | #define PHUNK_VIEW_MODE_BUTTON_H |
8 | 8 | ||
9 | #include <qpe/resource.h> | 9 | #include <qpe/resource.h> |
10 | 10 | ||
11 | #include <qtoolbutton.h> | 11 | #include <qtoolbutton.h> |
12 | 12 | ||
13 | class ViewModeButton : public QToolButton { | 13 | class ViewModeButton : public QToolButton { |
14 | Q_OBJECT | 14 | Q_OBJECT |
15 | public: | 15 | public: |
16 | ViewModeButton( QToolBar* ); | 16 | ViewModeButton( QToolBar* ); |
17 | ~ViewModeButton(); | 17 | ~ViewModeButton(); |
18 | 18 | ||
19 | signals: | 19 | signals: |
20 | void changeMode( int ); | 20 | void changeMode( int ); |
21 | private slots: | ||
22 | void slotChange( int i ); | ||
21 | }; | 23 | }; |
22 | 24 | ||
23 | #endif | 25 | #endif |
diff --git a/noncore/graphics/opie-eye/lib/oimagezoomer.cpp b/noncore/graphics/opie-eye/lib/oimagezoomer.cpp index 4df5dcc..00b93e2 100644 --- a/noncore/graphics/opie-eye/lib/oimagezoomer.cpp +++ b/noncore/graphics/opie-eye/lib/oimagezoomer.cpp | |||
@@ -1,210 +1,219 @@ | |||
1 | #include "oimagezoomer.h" | 1 | #include "oimagezoomer.h" |
2 | 2 | ||
3 | #include <qimage.h> | 3 | #include <qimage.h> |
4 | #include <qpixmap.h> | 4 | #include <qpixmap.h> |
5 | #include <qpainter.h> | 5 | #include <qpainter.h> |
6 | #include <qrect.h> | 6 | #include <qrect.h> |
7 | #include <qpoint.h> | 7 | #include <qpoint.h> |
8 | #include <qsize.h> | 8 | #include <qsize.h> |
9 | 9 | ||
10 | namespace Opie { | 10 | namespace Opie { |
11 | namespace MM { | 11 | namespace MM { |
12 | 12 | ||
13 | /** | 13 | /** |
14 | * \brief The most simple c'tor | 14 | * \brief The most simple c'tor |
15 | * The main c'tor. You still need to set a QPixmap/QIMage, | 15 | * The main c'tor. You still need to set a QPixmap/QIMage, |
16 | * setImageSize,setViewPortSize,setVisiblePoint | 16 | * setImageSize,setViewPortSize,setVisiblePoint |
17 | * | 17 | * |
18 | * @param parent The parent widget | 18 | * @param parent The parent widget |
19 | * @param name A name for this widget | 19 | * @param name A name for this widget |
20 | * @param fl The widget flags | 20 | * @param fl The widget flags |
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | OImageZoomer::OImageZoomer( QWidget* parent, const char* name, WFlags fl ) | 23 | OImageZoomer::OImageZoomer( QWidget* parent, const char* name, WFlags fl ) |
24 | : QFrame( parent, name, fl ) { | 24 | : QFrame( parent, name, fl ) { |
25 | init(); | 25 | init(); |
26 | } | 26 | } |
27 | 27 | ||
28 | 28 | ||
29 | /** | 29 | /** |
30 | * \brief This c'tor takes a QPixmap additional | 30 | * \brief This c'tor takes a QPixmap additional |
31 | * | 31 | * |
32 | * You initially set the QPixmap but you still need to provide | 32 | * You initially set the QPixmap but you still need to provide |
33 | * the additional data to make this widget useful | 33 | * the additional data to make this widget useful |
34 | * | 34 | * |
35 | * @param pix A Pixmap it'll be converted to a QImage later! | 35 | * @param pix A Pixmap it'll be converted to a QImage later! |
36 | * @param par The parent widget | 36 | * @param par The parent widget |
37 | * @param name The name of this widget | 37 | * @param name The name of this widget |
38 | * @param fl The widget flags | 38 | * @param fl The widget flags |
39 | */ | 39 | */ |
40 | OImageZoomer::OImageZoomer( const QPixmap& pix, QWidget* par, const char* name, WFlags fl ) | 40 | OImageZoomer::OImageZoomer( const QPixmap& pix, QWidget* par, const char* name, WFlags fl ) |
41 | : QFrame( par, name, fl ) { | 41 | : QFrame( par, name, fl ) { |
42 | init(); | 42 | init(); |
43 | setImage( pix ); | 43 | setImage( pix ); |
44 | } | 44 | } |
45 | 45 | ||
46 | 46 | ||
47 | /** | 47 | /** |
48 | * \brief This c'tor takes a QImage instead | 48 | * \brief This c'tor takes a QImage instead |
49 | * You just provide a QImage which is saved. It behaves the same as the others. | 49 | * You just provide a QImage which is saved. It behaves the same as the others. |
50 | * | 50 | * |
51 | * @param img A Image which will be used for the zoomer content | 51 | * @param img A Image which will be used for the zoomer content |
52 | * @param par The parent of the widget | 52 | * @param par The parent of the widget |
53 | * @param name The name of the widget | 53 | * @param name The name of the widget |
54 | * @param fl The widgets flags | 54 | * @param fl The widgets flags |
55 | */ | 55 | */ |
56 | OImageZoomer::OImageZoomer( const QImage& img, QWidget* par, const char* name, WFlags fl) | 56 | OImageZoomer::OImageZoomer( const QImage& img, QWidget* par, const char* name, WFlags fl) |
57 | : QFrame( par, name, fl ) { | 57 | : QFrame( par, name, fl ) { |
58 | init(); | 58 | init(); |
59 | setImage( img ); | 59 | setImage( img ); |
60 | } | 60 | } |
61 | 61 | ||
62 | 62 | ||
63 | /** | 63 | /** |
64 | * \brief overloaded c'tor | 64 | * \brief overloaded c'tor |
65 | * | 65 | * |
66 | * This differs only in the arguments it takes | 66 | * This differs only in the arguments it takes |
67 | * | 67 | * |
68 | * | 68 | * |
69 | * @param pSize The size of the Page you show | 69 | * @param pSize The size of the Page you show |
70 | * @param vSize The size of the viewport. The size of the visible part of the widget | 70 | * @param vSize The size of the viewport. The size of the visible part of the widget |
71 | * @param par The parent of the widget | 71 | * @param par The parent of the widget |
72 | * @param name The name | 72 | * @param name The name |
73 | * @param fl The window flags | 73 | * @param fl The window flags |
74 | */ | 74 | */ |
75 | OImageZoomer::OImageZoomer( const QSize& pSize, const QSize& vSize, QWidget* par, | 75 | OImageZoomer::OImageZoomer( const QSize& pSize, const QSize& vSize, QWidget* par, |
76 | const char* name, WFlags fl ) | 76 | const char* name, WFlags fl ) |
77 | : QFrame( par, name, fl ), m_imgSize( pSize ),m_visSize( vSize ) { | 77 | : QFrame( par, name, fl ), m_imgSize( pSize ),m_visSize( vSize ) { |
78 | init(); | 78 | init(); |
79 | } | 79 | } |
80 | 80 | ||
81 | /** | 81 | /** |
82 | * d'tor | 82 | * d'tor |
83 | */ | 83 | */ |
84 | OImageZoomer::~OImageZoomer() { | 84 | OImageZoomer::~OImageZoomer() { |
85 | 85 | ||
86 | } | 86 | } |
87 | 87 | ||
88 | void OImageZoomer::init() { | 88 | void OImageZoomer::init() { |
89 | setFrameStyle( Panel | Sunken ); | 89 | setFrameStyle( Panel | Sunken ); |
90 | } | 90 | } |
91 | 91 | ||
92 | 92 | ||
93 | /** | 93 | /** |
94 | * \brief set the page/image size | 94 | * \brief set the page/image size |
95 | * Tell us the QSize of the Data you show to the user. We need this | 95 | * Tell us the QSize of the Data you show to the user. We need this |
96 | * to do the calculations | 96 | * to do the calculations |
97 | * | 97 | * |
98 | * @param size The size of the stuff you want to zoom on | 98 | * @param size The size of the stuff you want to zoom on |
99 | */ | 99 | */ |
100 | void OImageZoomer::setImageSize( const QSize& size ) { | 100 | void OImageZoomer::setImageSize( const QSize& size ) { |
101 | m_imgSize = size; | 101 | m_imgSize = size; |
102 | repaint(); | 102 | repaint(); |
103 | } | 103 | } |
104 | 104 | ||
105 | /** | 105 | /** |
106 | * \brief Set the size of the viewport | 106 | * \brief Set the size of the viewport |
107 | * Tell us the QSize of the viewport. The viewport is the part | 107 | * Tell us the QSize of the viewport. The viewport is the part |
108 | * of the widget which is exposed on the screen | 108 | * of the widget which is exposed on the screen |
109 | * | 109 | * |
110 | * @param size Te size of the viewport | 110 | * @param size Te size of the viewport |
111 | * | 111 | * |
112 | * @see QScrollView::viewport() | 112 | * @see QScrollView::viewport() |
113 | */ | 113 | */ |
114 | void OImageZoomer::setViewPortSize( const QSize& size ) { | 114 | void OImageZoomer::setViewPortSize( const QSize& size ) { |
115 | m_visSize = size; | 115 | m_visSize = size; |
116 | repaint(); | 116 | repaint(); |
117 | } | 117 | } |
118 | 118 | ||
119 | /** | 119 | /** |
120 | * \brief the point in the topleft corner which is currently visible | 120 | * \brief the point in the topleft corner which is currently visible |
121 | * Set the visible point. This most of the times relate to QScrollView::contentsX() | 121 | * Set the visible point. This most of the times relate to QScrollView::contentsX() |
122 | * and QScrollView::contentsY() | 122 | * and QScrollView::contentsY() |
123 | * | 123 | * |
124 | * @see setVisiblePoint(int,int) | 124 | * @see setVisiblePoint(int,int) |
125 | */ | 125 | */ |
126 | void OImageZoomer::setVisiblePoint( const QPoint& pt ) { | 126 | void OImageZoomer::setVisiblePoint( const QPoint& pt ) { |
127 | m_visPt = pt; | 127 | m_visPt = pt; |
128 | repaint(); | 128 | repaint(); |
129 | } | 129 | } |
130 | 130 | ||
131 | 131 | ||
132 | /** | 132 | /** |
133 | * Set the Image. The image will be resized on resizeEvent | 133 | * Set the Image. The image will be resized on resizeEvent |
134 | * and it'll set the QPixmap background | 134 | * and it'll set the QPixmap background |
135 | * | 135 | * |
136 | * @param img The image will be stored internally and used as the background | 136 | * @param img The image will be stored internally and used as the background |
137 | */ | 137 | */ |
138 | void OImageZoomer::setImage( const QImage& img) { | 138 | void OImageZoomer::setImage( const QImage& img) { |
139 | m_img = img; | 139 | m_img = img; |
140 | resizeEvent( 0 ); | 140 | resizeEvent( 0 ); |
141 | repaint(); | 141 | repaint(); |
142 | } | 142 | } |
143 | 143 | ||
144 | /** | 144 | /** |
145 | * overloaded function it calls the QImage version | 145 | * overloaded function it calls the QImage version |
146 | */ | 146 | */ |
147 | void OImageZoomer::setImage( const QPixmap& pix) { | 147 | void OImageZoomer::setImage( const QPixmap& pix) { |
148 | setImage( pix.convertToImage() ); | 148 | setImage( pix.convertToImage() ); |
149 | } | 149 | } |
150 | 150 | ||
151 | void OImageZoomer::resizeEvent( QResizeEvent* ev ) { | 151 | void OImageZoomer::resizeEvent( QResizeEvent* ev ) { |
152 | QFrame::resizeEvent( ev ); | 152 | QFrame::resizeEvent( ev ); |
153 | setBackgroundOrigin( QWidget::WidgetOrigin ); | 153 | setBackgroundOrigin( QWidget::WidgetOrigin ); |
154 | // TODO Qt3 use PalettePixmap and use size | 154 | // TODO Qt3 use PalettePixmap and use size |
155 | QPixmap pix; pix.convertFromImage( m_img.smoothScale( size().width(), size().height() ) ); | 155 | QPixmap pix; pix.convertFromImage( m_img.smoothScale( size().width(), size().height() ) ); |
156 | setBackgroundPixmap( pix); | 156 | setBackgroundPixmap( pix); |
157 | } | 157 | } |
158 | 158 | ||
159 | void OImageZoomer::drawContents( QPainter* p ) { | 159 | void OImageZoomer::drawContents( QPainter* p ) { |
160 | /* | 160 | /* |
161 | * if the page size | 161 | * if the page size |
162 | */ | 162 | */ |
163 | if ( m_imgSize.isEmpty() ) | 163 | if ( m_imgSize.isEmpty() ) |
164 | return; | 164 | return; |
165 | 165 | ||
166 | /* | 166 | /* |
167 | * paint a red rect which represents the visible size | 167 | * paint a red rect which represents the visible size |
168 | * | 168 | * |
169 | * We need to recalculate x,y and width and height of the | 169 | * We need to recalculate x,y and width and height of the |
170 | * rect. So image size relates to contentRect | 170 | * rect. So image size relates to contentRect |
171 | * | 171 | * |
172 | */ | 172 | */ |
173 | QRect c( contentsRect() ); | 173 | QRect c( contentsRect() ); |
174 | p->setPen( Qt::red ); | 174 | p->setPen( Qt::red ); |
175 | 175 | ||
176 | /* | ||
177 | * the contentRect is set equal to the size of the image | ||
178 | * Rect/Original = NewRectORWidth/OriginalVisibleStuff and then simply we | ||
179 | * need to add the c.y/x due usage of QFrame | ||
180 | * For x and y we use the visiblePoint | ||
181 | * For height and width we use the size of the viewport | ||
182 | * if width/height would be bigger than our widget we use this width/height | ||
183 | * | ||
184 | */ | ||
176 | int len = m_imgSize.width(); | 185 | int len = m_imgSize.width(); |
177 | int x = (c.width()*m_visPt.x())/len + c.x(); | 186 | int x = (c.width()*m_visPt.x())/len + c.x(); |
178 | int w = (c.width()*m_visSize.width() )/len + c.x(); | 187 | int w = (c.width()*m_visSize.width() )/len + c.x(); |
179 | if ( w > c.width() ) w = c.width(); | 188 | if ( w > c.width() ) w = c.width(); |
180 | 189 | ||
181 | len = m_imgSize.height(); | 190 | len = m_imgSize.height(); |
182 | int y = (c.height()*m_visPt.y() )/len + c.y(); | 191 | int y = (c.height()*m_visPt.y() )/len + c.y(); |
183 | int h = (c.height()*m_visSize.height() )/len + c.y(); | 192 | int h = (c.height()*m_visSize.height() )/len + c.y(); |
184 | if ( h > c.height() ) h = c.height(); | 193 | if ( h > c.height() ) h = c.height(); |
185 | 194 | ||
186 | p->drawRect( x, y, w, h ); | 195 | p->drawRect( x, y, w, h ); |
187 | } | 196 | } |
188 | 197 | ||
189 | void OImageZoomer::mousePressEvent( QMouseEvent* ) { | 198 | void OImageZoomer::mousePressEvent( QMouseEvent* ) { |
190 | m_mouseX = m_mouseY = -1; | 199 | m_mouseX = m_mouseY = -1; |
191 | } | 200 | } |
192 | 201 | ||
193 | void OImageZoomer::mouseMoveEvent( QMouseEvent* ev ) { | 202 | void OImageZoomer::mouseMoveEvent( QMouseEvent* ev ) { |
194 | int mx, my; | 203 | int mx, my; |
195 | mx = ev->x(); | 204 | mx = ev->x(); |
196 | my = ev->y(); | 205 | my = ev->y(); |
197 | 206 | ||
198 | if ( m_mouseX != -1 && m_mouseY != -1 ) { | 207 | if ( m_mouseX != -1 && m_mouseY != -1 ) { |
199 | int diffx = ( mx - m_mouseX ) * m_imgSize.width() / width(); | 208 | int diffx = ( mx - m_mouseX ) * m_imgSize.width() / width(); |
200 | int diffy = ( my - m_mouseY ) * m_imgSize.height() / height(); | 209 | int diffy = ( my - m_mouseY ) * m_imgSize.height() / height(); |
201 | emit zoomAreaRel( diffx, diffy ); | 210 | emit zoomAreaRel( diffx, diffy ); |
202 | emit zoomArea(m_visPt.x()+diffx, m_visPt.y()+diffy ); | 211 | emit zoomArea(m_visPt.x()+diffx, m_visPt.y()+diffy ); |
203 | } | 212 | } |
204 | m_mouseX = mx; | 213 | m_mouseX = mx; |
205 | m_mouseY = my; | 214 | m_mouseY = my; |
206 | } | 215 | } |
207 | 216 | ||
208 | 217 | ||
209 | } | 218 | } |
210 | } | 219 | } |