Kraxy/EBN: missing Q_OBJECT
[kphotoalbum.git] / ThumbnailView / ThumbnailFactory.h
blob3e0ae7abc382557d8f8d104934c8aef6ca9ec212
1 /* Copyright (C) 2003-2009 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef THUMBNAILFACTORY_H
19 #define THUMBNAILFACTORY_H
21 namespace ThumbnailView
23 class ThumbnailWidget;
24 class CellGeometry;
25 class ThumbnailModel;
26 class ThumbnailPainter;
27 class ThumbnailCache;
29 class ThumbnailFactory
31 public:
32 virtual ~ThumbnailFactory() {};
33 virtual ThumbnailModel* model() = 0;
34 virtual CellGeometry* cellGeometry() = 0;
35 virtual ThumbnailWidget* widget() = 0;
36 virtual ThumbnailPainter* painter() = 0;
37 virtual ThumbnailCache* cache() = 0;
42 #endif /* THUMBNAILFACTORY_H */