Bug 167320 - Filmstrip in album view is not synchronized correctly
Summary: Filmstrip in album view is not synchronized correctly
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Preview-Image (show other bugs)
Version: 0.10.0
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-07-23 20:28 UTC by Andi Clemens
Modified: 2012-06-27 11:16 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 0.10.0


Attachments
API change (922 bytes, patch)
2008-10-18 23:25 UTC, Andi Clemens
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andi Clemens 2008-07-23 20:28:46 UTC
Version:           unknown (using 3.5.9, Arch Linux)
Compiler:          Target: i686-pc-linux-gnu
OS:                Linux (i686) release 2.6.25-ARCH

When viewing images with the filmstrip (thumbnail bar) turned on, the filmstrip is not synchronized accordingly.

1. Open a folder with a lot of images (or use album subtree inclusion)
2. select an image from the middle of the set (not the first one, this will not show the error)
3. Now the filmstrip might not display the thumbnail of the currently viewed image (if it does, go to album view again and select another image, sometimes the first selection works)
4. if you press PageUp or PageDown, the filmstrip will be updated again.

BUT: the filmstrip is acting strange. I assume that the current selected image is positioned in the middle of the filmstrip, but it is not. Most of the time it is the second last image in the filmstrip. So selecting images AFTER the current viewed is nearly impossible, because you don't see much choices.
Comment 1 caulier.gilles 2008-07-23 22:59:44 UTC
If i remember, Arnd has already reported a similar bug in the pass, to showfoto component...

Gilles
Comment 2 Andi Clemens 2008-07-28 22:12:36 UTC
Really? I can't find that entry? Maybe it has been closed already...
Comment 3 Andi Clemens 2008-10-17 19:33:27 UTC
I found out that the filmstrip is not set to the current selection if the image size is bigger than 100kb. Very strange but all images in an album will be displayed correctly in the filmstrip if they have a size less than 100kb.
I guess this is some kind of signal / slots problem, maybe the update signal comes too late if an image takes longer to load.
Since 2 hours I'm playing around with GDB and callgrind, but no clue so far.
Just wanted to give an update here.

Andi
Comment 4 Andi Clemens 2008-10-18 18:54:54 UTC
SVN commit 873062 by aclemens:

fix centering of the selected image in filmstrip

this commit will fix the centering of the currently selected image in album icon view as well as in image editor.
Strangely showFoto isn't working, although it is derived from the same class as image editor.

There is still a problem on first init: sometimes the width of the content is unknown, so that a item in the thumbbar is highlighted, but the bar is not scrolled to the
correct position. This is only true for the first image displayed, all the other times it is working, since now the thumbbar is not re-generated all the time.

This patch also fixes the re-generating of the thumbbar every time an image is selected and viewed from the album icon view.
On large albums the old behavior was very slow.

Marcel, Gilles,

we still have the thread problem I mentioned before and that someone else posted here. Sometimes you get a very high CPU load while thumbbar is created and digiKam will crash on close.
I have not figured out why this is sometimes happening.

CCBUG:167320

 M  +18 -14    digikam/albumwidgetstack.cpp  
 M  +4 -4      libs/widgets/common/thumbbar.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=873062
Comment 5 Andi Clemens 2008-10-18 23:18:16 UTC
Gilles,

I guess I found a solution for the problem that the thumbbar is not always displayed correctly. For this I have made the slotUpdate() from thumbbar.cpp public and call it directly now, before this it was called by triggerUpdate(), but somehow this didn't work out all the time. Since triggerUpdate calls slotUpdate immediately (timer->start(0)), there is no big difference in calling slotUpdate() directly. So if this really fixes the problem, we might think about removing the trigger method and just call slotUpdate in the corresponding places.

What do you think?

Andi
Comment 6 Andi Clemens 2008-10-18 23:25:03 UTC
Created attachment 28011 [details]
API change

This little patch combined with the above commit should fix the problem.

Andi
Comment 7 Andi Clemens 2008-10-19 10:24:03 UTC
Another way would be to call slotUpdate() directly from triggerUpdate(), without the use of a timer, if we want to keep triggerUpdate() method.
Comment 8 Andi Clemens 2008-10-19 11:27:06 UTC
SVN commit 873272 by aclemens:

make triggerUpdate() call slotUpdate() directly, remove the timer

since the timer calls slotUpdate() immediately, we can also remove the timer completely and call the slot manually from within triggerUpdate(), so no API change will be done.
This seems to fix the problem that sometimes a thumbnail in the filmstrip isn't shown correctly.
Maybe we don't even need triggerUpdate() anymore, but if we want to do additional processing in there, this is the best solution right now that doesn't change any program logic.

BUG:167320

 M  +2 -1      NEWS  
 M  +1 -0      digikam/albumwidgetstack.cpp  
 M  +1 -8      libs/widgets/common/thumbbar.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=873272