File: kipiimagecollectionshared.h

package info (click to toggle)
digikam 4%3A4.4.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 200,076 kB
  • ctags: 75,791
  • sloc: cpp: 627,542; xml: 334,251; ansic: 33,208; sql: 3,076; perl: 2,392; yacc: 958; sh: 695; lex: 308; python: 274; lisp: 228; ruby: 141; makefile: 41
file content (65 lines) | stat: -rw-r--r-- 1,862 bytes parent folder | download | duplicates (2)
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