1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/** ===========================================================
* @file
*
* This file is a part of kipi-plugins project
* <a href="http://www.digikam.org">http://www.digikam.org</a>
*
* @date 2009-11-21
* @brief kipi host test application
*
* @author Copyright (C) 2009-2010 by Michael G. Hansen
* <a href="mailto:mike at mghansen dot de">mike at mghansen dot de</a>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation;
* either version 2, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* ============================================================ */
#ifndef __KIPIIMAGECOLLECTIONSHARED_H
#define __KIPIIMAGECOLLECTIONSHARED_H
// libkipi includes
#include "imagecollectionshared.h"
using namespace KIPI;
namespace KXMLKipiCmd
{
class KipiImageCollectionShared : public ImageCollectionShared
{
public:
// re-implemented inherited functions:
KipiImageCollectionShared(const KUrl& albumPath);
KipiImageCollectionShared(const KUrl::List& images);
virtual ~KipiImageCollectionShared();
virtual QString name();
virtual KUrl::List images();
virtual KUrl path();
virtual KUrl uploadPath();
virtual KUrl uploadRoot();
virtual bool isDirectory();
// functions used internally:
void addImages(const KUrl::List& images);
void addImage(const KUrl& image);
private:
KUrl m_albumPath;
KUrl::List m_images;
};
} // namespace KXMLKipiCmd
#endif // __KIPIIMAGECOLLECTIONSHARED_H
|