Summary: | thumb bar in image editor standalone operation | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Gerhard Kulzer <gerhard> |
Component: | Thumbs-BarView | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | caulier.gilles, digikam-bugs-null |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 7.6.0 | |
Sentry Crash Report: | |||
Attachments: |
Shofoto thumbbar support in digiKam image editor
New patch version 2 hidden thumbbar when toggle in fullscreen |
Description
Gerhard Kulzer
2005-03-22 18:12:00 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.
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 ***. |