2001-08-19 13:25:15 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QAbout.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMABOUT_H
|
|
|
|
#define FORMABOUT_H
|
|
|
|
|
|
|
|
#include "Qt2Base.h"
|
|
|
|
#include "boost/utility.hpp"
|
|
|
|
|
|
|
|
class LyXView;
|
|
|
|
class QAboutDialog;
|
|
|
|
class ControlAboutlyx;
|
|
|
|
|
|
|
|
class QAbout
|
|
|
|
: public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
|
|
|
|
{
|
2002-03-21 21:21:28 +00:00
|
|
|
public:
|
2002-08-12 14:28:43 +00:00
|
|
|
QAbout();
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
private:
|
2001-08-19 13:25:15 +00:00
|
|
|
/// not needed
|
|
|
|
virtual void apply() {}
|
|
|
|
/// not needed
|
2001-08-25 20:04:15 +00:00
|
|
|
virtual void update_contents() {}
|
2001-08-19 13:25:15 +00:00
|
|
|
// build the dialog
|
2001-08-26 00:29:39 +00:00
|
|
|
virtual void build_dialog();
|
2001-08-19 13:25:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORMABOUT_H
|