Fix navigation in twoPagesSpread mode
[qcomicbook-oblomov] / src / iconviewthumbnail.h
1 /*
2  * This file is a part of QComicBook.
3  *
4  * Copyright (C) 2005-2006 Pawel Stolowski <yogin@linux.bydg.org>
5  *
6  * QComicBook is free software; you can redestribute it and/or modify it
7  * under terms of GNU General Public License by Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY. See GPL for more details.
11  */
12
13 #ifndef __ICONVIEWTHUMBNAIL_H
14 #define __ICONVIEWTHUMBNAIL_H
15
16 /*! \file iconviewthumbnail.h */
17
18 #include <qiconview.h>
19 #include "thumbnailitem.h"
20
21 namespace QComicBook
22 {
23         class IconViewThumbnail: public QIconViewItem, public ThumbnailItem
24         {
25                 public:
26                         IconViewThumbnail(QIconView *view, int page, const QPixmap &pixmap);
27                         virtual ~IconViewThumbnail();
28         };
29 }
30
31 #endif
32