Add helper function to return local filename of picture as C string

This way we can actually find the picture that we are showing.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-06-21 10:29:02 -07:00
parent 97386a6f3d
commit c9d48c9a72
3 changed files with 11 additions and 2 deletions

View file

@ -881,6 +881,12 @@ void learnImages(const QDir dir, int max_recursions, bool recursed)
QtConcurrent::blockingMap(files, hashFile);
}
extern "C" const char *local_file_path(struct picture *picture)
{
QString localFileName = fileFromHash(picture->hash);
return strdup(qPrintable(localFileName));
}
extern "C" void picture_load_exif_data(struct picture *p)
{
EXIFInfo exif;