KIO
#include <thumbsequencecreator.h>
Public Member Functions | |
ThumbSequenceCreator () | |
virtual | ~ThumbSequenceCreator () |
float | sequenceIndex () const |
void | setSequenceIndex (float index) |
Public Member Functions inherited from ThumbCreator | |
virtual | ~ThumbCreator () |
virtual bool | create (const QString &path, int width, int height, QImage &img)=0 |
virtual Flags | flags () const |
Additional Inherited Members | |
Public Types inherited from ThumbCreator | |
enum | Flags { None = 0, DrawFrame = 1, BlendIcon = 2 } |
Detailed Description
- See also
- ThumbCreator
This is an extension of ThumbCreator that allows creating a thumbnail sequence for a file. If your thumbnail plugin can create a thumbnail sequence, you should base it on ThumbSequenceCreator instead of ThumbCreator, and should use sequenceIndex() to decide what thumbnail you generate.
You also need to set the following key in the thumbcreator .desktop file
- Since
- 4.3
Definition at line 40 of file thumbsequencecreator.h.
Constructor & Destructor Documentation
ThumbSequenceCreator::ThumbSequenceCreator | ( | ) |
Definition at line 38 of file thumbsequencecreator.cpp.
|
virtual |
Definition at line 42 of file thumbsequencecreator.cpp.
Member Function Documentation
float ThumbSequenceCreator::sequenceIndex | ( | ) | const |
If this thumb-creator can create a sequence of thumbnails, it should use this to decide what sequence item to use.
If the value is zero, the standard thumbnail should be created.
This can be used for example to create thumbnails for different timeframes in videos(For example 0m, 10m, 20m, ...).
If your thumb-creator supports a high granularity, like a video, you can respect the sub-integer precision coming from the float. Else, just round the index to an integer.
If the end of your sequence is reached, the sequence should start from the beginning, or continue in some other way.
Definition at line 30 of file thumbsequencecreator.cpp.
void ThumbSequenceCreator::setSequenceIndex | ( | float | index | ) |
Sets the sequence-index for this thumb creator.
- See also
- sequenceIndex
Definition at line 34 of file thumbsequencecreator.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:24:55 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.