Add .gitignore
[qcomicbook-oblomov] / src / cbinfo.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 __CBINFO_H
14 #define __CBINFO_H
15
16 #include <qtabdialog.h>
17 #include <qfont.h>
18
19 class QStringList;
20
21 namespace QComicBook
22 {
23         class ImgDirSink;
24         
25         class ComicBookInfo: public QTabDialog
26         {
27                 protected:
28                         QFont font;
29
30                         void setupGeneralTab(ImgDirSink &sink);
31                         void setupDescriptionTabs(const ImgDirSink &sink);
32
33                 public:
34                         ComicBookInfo(QWidget *parent, ImgDirSink &sink, const QFont& f);
35                         virtual ~ComicBookInfo();
36         };
37 }
38
39 #endif
40