/*
* This file is a part of QComicBook.
*
* Copyright (C) 2005 Pawel Stolowski <yogin@linux.bydg.org>
*
* QComicBook is free software; you can redestribute it and/or modify it
* under terms of GNU General Public License by Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY. See GPL for more details.
*/
#ifndef __ABOUT_DIALOG_H
#define __ABOUT_DIALOG_H
#include <qdialog.h>
class QLabel;
class AboutDialog: public QDialog
{
private:
QLabel *about;
public:
AboutDialog(QWidget *parent, const QString &caption, const QString &text=QString::null);
virtual ~AboutDialog();
void setText(const QString &text);
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1