Version: (using KDE KDE 3.3.2) Installed from: Debian testing/unstable Packages On my wishlist is the standalone use of the digikam image editor. I hear that showfoto is supposed to do that, but then showfoto has no plugins available. So digikamplugins should be loadable into showfoto. Closely linked to this wish is a thumb bar in the editor. I very often have to jump forth and back more than 1 or 2 images at a time. I think in both modes, as digikam editor and standalone it'd be great to have that thumb bar. I love that editor! Since it exists I never had to use IrfanView again. Off course, in full screen mode it'd have to go away.
Created attachment 10281 [details] Shofoto thumbbar support in digiKam image editor Applying patch: 1/ go to your kdeextragear-3/digikam/utilities/imageeditor local path. 2/ copy this patch file on this folder. 3/ Enter the command line #patch -p0 < imageeditor_with_thumbbar_patch 4/ Rebuild and install digikam.
Point #1 : showfoto image editor plugins support : I'm currently working on. Comming soon (:=)))... Point #2 : showfoto thumbbar support in digiKam image editor : patch for CVS attached in this thread. Any feedback welcome ! Gilles Caulier
Point #2 : a screenshot is available at this url : http://digikam3rdparty.free.fr/image_editor_with_thumbbar.png A nice day Gilles Caulier
Created attachment 10291 [details] New patch version 2 hidden thumbbar when toggle in fullscreen Shofoto thumbbar support in digiKam image editor patch version 2 for CVS
CVS commit by cgilles: Showfoto now support digiKam image editor plugins (digiKAm plugin core + DigikamImagePlugins) Showfoto Menu Fixed. Note : showfoto is a standalone digiKam image editor program ! TODO : - disable plugin menu entries if no current image. - writing hanbook based on digiKam handbook image editor part. - add showfoto icon. - implemented Redo/Undo features - disable Fix-Incease/Decrease BCG if core plugin is available. - add Edit menu entries like in digiKam image editor. - add shofoto settings dialog. - disable thumbbar in full screen mode. CCMAIL: digikam-devel@lists.sourceforge.net CCBUGS: 102195 M +11 -11 digikam.kdevelop 1.2 M +1 -0 showfoto/Makefile.am 1.13 M +25 -0 showfoto/showfoto.cpp 1.25 M +23 -17 showfoto/showfotoui.rc 1.13 M +3 -3 utilities/imageeditor/Makefile.am 1.21 M +17 -2 utilities/imageeditor/imagepluginloader.cpp 1.13
CVS commit by cgilles: Showfoto: Disable Thumbbar in Full screenmode. CCMAIL: digikam-devel@lists.sourceforge.net CCBUGS:102195 M +1 -1 TODO 1.10 M +9 -0 showfoto.cpp 1.33 --- kdeextragear-3/digikam/showfoto/TODO #1.9:1.10 @@ -2,5 +2,5 @@ --------------------------------- -* disable thumbbar in full screen mode. +* add First/Last image button like in image editor. * disable Fix-Incease/Decrease BCG if core plugin is available. * add shofoto settings dialog. --- kdeextragear-3/digikam/showfoto/showfoto.cpp #1.32:1.33 @@ -734,4 +734,9 @@ void ShowFoto::slotToggleFullScreen() #endif menuBar()->show(); + + // If Hide Thumbbar option is checked. + if (!m_showBarAction->isChecked()) + m_bar->show(); + QObject* obj = child("mainToolBar","KToolBar"); if (obj) @@ -748,4 +753,8 @@ void ShowFoto::slotToggleFullScreen() menuBar()->hide(); + // If Hide Thumbbar option is checked. + if (!m_showBarAction->isChecked()) + m_bar->hide(); + QObject* obj = child("mainToolBar","KToolBar"); if (obj)
*** Bug has been marked as fixed ***.