Bug 102195 - thumb bar in image editor standalone operation
Summary: thumb bar in image editor standalone operation
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Thumbs-BarView (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-22 18:12 UTC by Gerhard Kulzer
Modified: 2022-01-21 14:47 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In: 7.6.0


Attachments
Shofoto thumbbar support in digiKam image editor (16.45 KB, patch)
2005-03-22 19:07 UTC, caulier.gilles
Details
New patch version 2 hidden thumbbar when toggle in fullscreen (9.50 KB, patch)
2005-03-23 08:06 UTC, caulier.gilles
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gerhard Kulzer 2005-03-22 18:12:00 UTC
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.
Comment 1 caulier.gilles 2005-03-22 19:07:57 UTC
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.
Comment 2 caulier.gilles 2005-03-22 19:10:38 UTC
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
Comment 3 caulier.gilles 2005-03-22 19:12:53 UTC
Point #2 : a screenshot is available at this url :

http://digikam3rdparty.free.fr/image_editor_with_thumbbar.png

A nice day

Gilles Caulier
Comment 4 caulier.gilles 2005-03-23 08:06:51 UTC
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
Comment 5 caulier.gilles 2005-03-29 08:46:44 UTC
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
Comment 6 caulier.gilles 2005-04-01 13:04:10 UTC
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)
Comment 7 Joern Ahrens 2005-06-11 12:26:42 UTC
*** Bug has been marked as fixed ***.