[Bug 276480] New: wish: add support to zoom images in the slideshow

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

[Bug 276480] New: wish: add support to zoom images in the slideshow

Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480

           Summary: wish: add support to zoom images in the slideshow
           Product: digikam
           Version: 1.9.0
          Platform: Debian unstable
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: wishlist
          Priority: NOR
         Component: general
        AssignedTo: [hidden email]
        ReportedBy: [hidden email]


Version:           1.9.0 (using KDE 4.6.4)
OS:                Linux

I very much like the digikam slideshow. It is amazingly fast, even for big
image files. I guess that digikam uses preview versions of the image for that.

What I really miss is the possibility to zoom in/out in the slideshow. It would
be very good to support zooming in the slideshow.

Reproducible: Always

Steps to Reproduce:
Open a slideshow in digikam.

Actual Results:  
No zooming support in the slideshow.

Expected Results:  
Should support zooming in the slideshow.

--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 276480] wish: add support to zoom images in the slideshow

Gilles Caulier-4
https://bugs.kde.org/show_bug.cgi?id=276480


Gilles Caulier <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[hidden email]
          Component|general                     |SlideShow




--- Comment #1 from Gilles Caulier <caulier gilles gmail com>  2011-06-27 11:16:41 ---
Do you talk about slideshow from digiKam core or Advanced SlideShow from
kipi-plugins (last one is based on OpenGL)

Gilles Caulier

--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 276480] wish: add support to zoom images in the slideshow

Bugzilla from jonas@freesources.org
In reply to this post by Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480


Jonas Meurer <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[hidden email]




--- Comment #2 from Jonas Meurer <jonas freesources org>  2011-06-27 11:30:52 ---
Not sure. I'm talking about the slideshow which is launched by pressing F9 in
digikam, or by browsing "View" -> "Slideshow" -> "All" in the menu.

Thanks for the great work on this wonderful software!

--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 276480] Add zoom support in slideshow tool

Gilles Caulier-4
In reply to this post by Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480

Gilles Caulier <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|wish: add support to zoom   |Add zoom support in
                   |images in the slideshow     |slideshow tool

--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 276480] Add zoom support in slideshow tool

Gilles Caulier-4
In reply to this post by Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480

--- Comment #3 from Gilles Caulier <[hidden email]> ---
Git commit 05f67e3f6fe46b37221c7073c4e31b95532b3471 by Gilles Caulier.
Committed on 21/09/2014 at 19:26.
Pushed by cgilles into branch 'master'.

move slideshow info rendering code to dedicated widgets to simplify
implementation in goal to use later a stack of widgets, support zoom feature,
use main digiKam image preview cache, and play video files.
Related: bug 159824, bug 256361

M  +2    -0    CMakeLists.txt
A  +355  -0    utilities/slideshow/slideinfo.cpp     [License: GPL (v2+)]
A  +68   -0    utilities/slideshow/slideinfo.h     [License: GPL (v2+)]
A  +189  -0    utilities/slideshow/slideosd.cpp     [License: GPL (v2+)]
A  +72   -0    utilities/slideshow/slideosd.h     [License: GPL (v2+)]
M  +20   -378  utilities/slideshow/slideshow.cpp
M  +3    -4    utilities/slideshow/slideshow.h

http://commits.kde.org/digikam/05f67e3f6fe46b37221c7073c4e31b95532b3471

--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 276480] Add zoom support in slideshow tool

Gilles Caulier-4
In reply to this post by Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480

--- Comment #4 from Gilles Caulier <[hidden email]> ---
Git commit cafb796485f835f7ba172452c53edd247446eeb4 by Gilles Caulier.
Committed on 22/09/2014 at 08:58.
Pushed by cgilles into branch 'master'.

use QStackedWidget to show slide image view, slide error view, and slide end
view
Related: bug 159824, bug 256361

M  +3    -0    CMakeLists.txt
A  +96   -0    utilities/slideshow/slideend.cpp     [License: GPL (v2+)]
A  +50   -0    utilities/slideshow/slideend.h     [License: GPL (v2+)]
A  +88   -0    utilities/slideshow/slideerror.cpp     [License: GPL (v2+)]
A  +61   -0    utilities/slideshow/slideerror.h     [License: GPL (v2+)]
M  +16   -0    utilities/slideshow/slideosd.cpp
M  +90   -188  utilities/slideshow/slideshow.cpp
M  +6    -6    utilities/slideshow/slideshow.h
A  +191  -0    utilities/slideshow/slideview.cpp     [License: GPL (v2+)]
A  +77   -0    utilities/slideshow/slideview.h     [License: GPL (v2+)]

http://commits.kde.org/digikam/cafb796485f835f7ba172452c53edd247446eeb4

--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 276480] Add zoom support in slideshow tool

Gilles Caulier-4
In reply to this post by Bugzilla from jonas@freesources.org
https://bugs.kde.org/show_bug.cgi?id=276480

--- Comment #5 from Gilles Caulier <[hidden email]> ---
Created attachment 89098
  --> https://bugs.kde.org/attachment.cgi?id=89098&action=edit
SlideImage class using preview widget

Implementation is not perfect. There is no fit to screen support for small
image. image navigation is broken using mouse wheel and keyboard shortcuts must
be review

--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel