Kraxy/EBN: missing Q_OBJECT
[kphotoalbum.git] / ThumbnailView / ThumbnailComponent.h
blob5f2ec2356c881cbf21101ffc82c58ea00b8ca648
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 THUMBNAILCOMPONENT_H
19 #define THUMBNAILCOMPONENT_H
21 namespace DB {class ResultId; }
23 namespace ThumbnailView
25 class ThumbnailFactory;
26 class ThumbnailPainter;
27 class ThumbnailWidget;
28 class CellGeometry;
29 class ThumbnailModel;
30 class ThumbnailCache;
32 class ThumbnailComponent
34 public:
35 ThumbnailComponent( ThumbnailFactory* factory );
37 ThumbnailModel* model();
38 const ThumbnailModel* model() const;
40 CellGeometry* cellGeometryInfo();
41 const CellGeometry* cellGeometryInfo() const;
43 ThumbnailWidget* widget();
44 const ThumbnailWidget* widget() const;
46 ThumbnailPainter* painter();
47 const ThumbnailPainter* painter() const;
49 ThumbnailCache* cache();
50 const ThumbnailCache* cache() const;
51 private:
52 ThumbnailFactory* _factory;
57 #endif /* THUMBNAILCOMPONENT_H */