~ubuntu-branches/ubuntu/maverick/kdegraphics/maverick-proposed

« back to all changes in this revision

Viewing changes to gwenview/importer/thumbnailpage.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-02 14:03:43 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20091202140343-2732gbkj69g89arq
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Add build-depend on shared-desktop-ontologies for nepomuk integration
  - Bump .so versions for libkexiv, libkdcraw and libkipi
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
 
2
/*
 
3
Gwenview: an image viewer
 
4
Copyright 2009 Aurélien Gâteau <agateau@kde.org>
 
5
 
 
6
This program is free software; you can redistribute it and/or
 
7
modify it under the terms of the GNU General Public License
 
8
as published by the Free Software Foundation; either version 2
 
9
of the License, or (at your option) any later version.
 
10
 
 
11
This program is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with this program; if not, write to the Free Software
 
18
Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
 
19
 
 
20
*/
 
21
#ifndef THUMBNAILPAGE_H
 
22
#define THUMBNAILPAGE_H
 
23
 
 
24
// Qt
 
25
#include <QModelIndex>
 
26
#include <QWidget>
 
27
 
 
28
// KDE
 
29
#include <kurl.h>
 
30
 
 
31
// Local
 
32
#include "documentdirfinder.h"
 
33
 
 
34
namespace Gwenview {
 
35
 
 
36
 
 
37
class ThumbnailPagePrivate;
 
38
class ThumbnailPage : public QWidget {
 
39
        Q_OBJECT
 
40
public:
 
41
        ThumbnailPage();
 
42
        ~ThumbnailPage();
 
43
 
 
44
        /**
 
45
         * Returns the list of urls to import
 
46
         * Only valid after importRequested() has been emitted
 
47
         */
 
48
        KUrl::List urlList() const;
 
49
 
 
50
        KUrl destinationUrl() const;
 
51
        void setDestinationUrl(const KUrl&);
 
52
 
 
53
        void setSourceUrl(const KUrl&);
 
54
 
 
55
Q_SIGNALS:
 
56
        void importRequested();
 
57
        void rejected();
 
58
 
 
59
private Q_SLOTS:
 
60
        void slotImportSelected();
 
61
        void slotImportAll();
 
62
        void updateImportButtons();
 
63
        void slotThumbnailViewIndexActivated(const QModelIndex&);
 
64
        void openUrl(const KUrl&);
 
65
        void slotDocumentDirFinderDone(const KUrl& url, DocumentDirFinder::Status status);
 
66
        void showConfigDialog();
 
67
 
 
68
private:
 
69
        friend class ThumbnailPagePrivate;
 
70
        ThumbnailPagePrivate* const d;
 
71
        void importList(const QModelIndexList&);
 
72
};
 
73
 
 
74
 
 
75
} // namespace
 
76
 
 
77
#endif /* THUMBNAILPAGE_H */