------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 Summary: Slideshow shows black screen Product: digikam Version: unspecified Platform: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: digikam-devel kde org ReportedBy: gsking1 gmail com Version: 0.9.2-beta2 (using KDE 3.5.6, Kubuntu (feisty) 4:3.5.6-0ubuntu14) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.20-16-generic If I select 'Side show' from the 'View' menu or icon, the the slide show only shows a black screen. A mouse pointer is visible that blinks on and off, presumably at picture changes. The 'Advanced SlideShow' under the 'Tools' menu works fine and does not have this problem. Also, just noticed that there are different spellings of "Slide Show" and "SlideShow". _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 ------- Additional Comments From krienke uni-koblenz de 2007-05-29 16:09 ------- I just downloaded and installed digikam 0.9.2 beta2. And now I have the same problem. View->slideshow does only show a black screen. Rainer _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Geoff King-4
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 ------- Additional Comments From caulier.gilles gmail com 2007-05-29 16:48 ------- Rainer, You want mean than with 0.9.2-beta1, you don't have this problem ? Witch file format you trying to display ? Gilles Caulier _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Zitat von Gilles Caulier <[hidden email]>:
Well on my laptop which has a 0.9.2 beta1 version installed this problem does not occur. My desktop at home which has a svn version installed (probably 2 weeks old) does not have this problem either. On my system at my office I installed 0.9.2 beta2 and there I have the problem. Its however the very same version of linux (suse10.2) on all systems. ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel attachment0 (4K) Download Attachment |
In reply to this post by Geoff King-4
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 caulier.gilles gmail com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marcel.wiesweg gmx de Status|UNCONFIRMED |NEW everconfirmed|0 |1 ------- Additional Comments From caulier.gilles gmail com 2007-05-29 17:31 ------- ok i confirm this bug. I can reproduce it everywhere. Marcel, This sound like a bug relevant of "threadimageio" again ? Like we have changed a lots this implementation between 0.9.2-beta1 and beta2, we need regression tests indeep (:=))) Gilles _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Geoff King-4
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 caulier.gilles gmail com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From caulier.gilles gmail com 2007-05-29 18:00 ------- SVN commit 669532 by cgilles: digikam from trunk : fix Slideshow and Threaded Image IO interface witch is broken since the last one is ported from QImage to Dimg BUG: 146072 M +8 -7 slideshow.cpp M +2 -1 slideshow.h --- trunk/extragear/graphics/digikam/utilities/slideshow/slideshow.cpp #669531:669532 @ -44,6 +44,7 @ // Local includes. #include "ddebug.h" +#include "dimg.h" #include "toolbar.h" #include "previewloadthread.h" #include "slideshow.h" @ -81,7 +82,7 @ QPixmap pixmap; - QImage preview; + DImg preview; KURL currentImage; @ -149,8 +150,8 @ d->timer = new QTimer(); d->mouseMoveTimer = new QTimer(); - connect(d->previewThread, SIGNAL(signalPreviewLoaded(const LoadingDescription &, const QImage &)), - this, SLOT(slotGotImagePreview(const LoadingDescription &, const QImage&))); + connect(d->previewThread, SIGNAL(signalImageLoaded(const LoadingDescription &, const DImg &)), + this, SLOT(slotGotImagePreview(const LoadingDescription &, const DImg&))); connect(d->mouseMoveTimer, SIGNAL(timeout()), this, SLOT(slotMouseMoveTimeOut())); @ -221,7 +222,7 @ else { d->currentImage = KURL(); - d->preview = QImage(); + d->preview = DImg(); updatePixmap(); update(); } @ -256,14 +257,14 @ else { d->currentImage = KURL(); - d->preview = QImage(); + d->preview = DImg(); updatePixmap(); update(); } } -void SlideShow::slotGotImagePreview(const LoadingDescription&, const QImage& preview) +void SlideShow::slotGotImagePreview(const LoadingDescription&, const DImg& preview) { d->preview = preview; @ -310,7 +311,7 @ { // Preview extraction is complete... Draw the image. - QPixmap pix(d->preview.smoothScale(size(), QImage::ScaleMin)); + QPixmap pix(d->preview.smoothScale(width(), height(), QSize::ScaleMin).convertToPixmap()); p.drawPixmap((width()-pix.width())/2, (height()-pix.height())/2, pix, 0, 0, pix.width(), pix.height()); --- trunk/extragear/graphics/digikam/utilities/slideshow/slideshow.h #669531:669532 @ -37,6 +37,7 @ namespace Digikam { +class DImg; class SlideShowPriv; class DIGIKAM_EXPORT SlideShow : public QWidget @ -62,7 +63,7 @ void slotTimeOut(); void slotMouseMoveTimeOut(); - void slotGotImagePreview(const LoadingDescription &, const QImage &); + void slotGotImagePreview(const LoadingDescription &, const DImg &); void slotPause(); void slotPlay(); _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Geoff King-4
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 ------- Additional Comments From gsking1 gmail com 2007-05-29 18:26 ------- Fixed for Me. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Am Tuesday 29 May 2007 schrieb Geoff King:
> ------- You are receiving this mail because: ------- > You are the assignee for the bug, or are watching the assignee. > > http://bugs.kde.org/show_bug.cgi?id=146072 > > > > > ------- Additional Comments From gsking1 gmail com 2007-05-29 18:26 > ------- Fixed for Me. > _______________________________________________ > Digikam-devel mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-devel Gerhard -- Hakuna matata http://www.gerhard.fr _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel signature.asc (196 bytes) Download Attachment |
In reply to this post by Geoff King-4
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=146072 ------- Additional Comments From gerhard kulzer net 2007-05-29 18:50 ------- Am Tuesday 29 May 2007 schrieb Geoff King: [bugs.kde.org quoted mail] Yes, it's fixed. Gerhard _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Free forum by Nabble | Edit this page |