mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
ce708d095c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5463 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
885 B
C++
52 lines
885 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlAboutlyx.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef CONTROLABOUTLYX_H
|
|
#define CONTROLABOUTLYX_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlDialog_impl.h"
|
|
#include "LString.h"
|
|
|
|
#include <iosfwd>
|
|
|
|
/** A controller for the About LyX dialogs.
|
|
*/
|
|
class ControlAboutlyx : public ControlDialogBI {
|
|
public:
|
|
///
|
|
ControlAboutlyx(LyXView &, Dialogs &);
|
|
|
|
///
|
|
void getCredits(std::ostream &) const;
|
|
|
|
///
|
|
string const getCopyright() const;
|
|
|
|
///
|
|
string const getLicense() const;
|
|
|
|
///
|
|
string const getDisclaimer() const;
|
|
|
|
///
|
|
string const getVersion() const;
|
|
private:
|
|
/// not needed.
|
|
virtual void apply() {}
|
|
};
|
|
|
|
#endif // CONTROLABOUTLYX_H
|