Kraxy/EBN: missing Q_OBJECT
[kphotoalbum.git] / ThumbnailView / ThumbnailComponent.cpp
blobbcfee4e5a4aedc7739ab603483071efc9e3c4cd7
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 #include "ThumbnailComponent.h"
19 #include "ThumbnailFactory.h"
21 ThumbnailView::ThumbnailComponent::ThumbnailComponent( ThumbnailFactory* factory )
22 :_factory( factory )
26 ThumbnailView::ThumbnailModel* ThumbnailView::ThumbnailComponent::model()
28 return _factory->model();
31 ThumbnailView::CellGeometry* ThumbnailView::ThumbnailComponent::cellGeometryInfo()
33 return _factory->cellGeometry();
36 ThumbnailView::ThumbnailWidget* ThumbnailView::ThumbnailComponent::widget()
38 return _factory->widget();
41 ThumbnailView::ThumbnailPainter* ThumbnailView::ThumbnailComponent::painter()
43 return _factory->painter();
46 const ThumbnailView::ThumbnailModel* ThumbnailView::ThumbnailComponent::model() const
48 return _factory->model();
51 const ThumbnailView::CellGeometry* ThumbnailView::ThumbnailComponent::cellGeometryInfo() const
53 return _factory->cellGeometry();
56 const ThumbnailView::ThumbnailWidget* ThumbnailView::ThumbnailComponent::widget() const
58 return _factory->widget();
61 const ThumbnailView::ThumbnailPainter* ThumbnailView::ThumbnailComponent::painter() const
63 return _factory->painter();
66 ThumbnailView::ThumbnailCache* ThumbnailView::ThumbnailComponent::cache()
68 return _factory->cache();
71 const ThumbnailView::ThumbnailCache* ThumbnailView::ThumbnailComponent::cache() const
73 return _factory->cache();