mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
20f2690c6d
controllers/ patch) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2586 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
618 B
C++
37 lines
618 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_dialog();
|
|
};
|
|
|
|
#endif // FORMABOUT_H
|