mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
3796da5d05
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2585 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
611 B
C++
37 lines
611 B
C++
// -*- 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 Dialogs;
|
|
class LyXView;
|
|
class QAboutDialog;
|
|
class ControlAboutlyx;
|
|
|
|
class QAbout
|
|
: public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
|
|
{
|
|
public:
|
|
QAbout(ControlAboutlyx &);
|
|
|
|
private:
|
|
/// not needed
|
|
virtual void apply() {}
|
|
/// not needed
|
|
virtual void update_contents() {}
|
|
// build the dialog
|
|
virtual void build();
|
|
};
|
|
|
|
#endif // FORMABOUT_H
|