mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
827 B
C++
51 lines
827 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlAboutlyx.h
|
|
* Copyright 2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*/
|
|
|
|
#ifndef CONTROLABOUTLYX_H
|
|
#define CONTROLABOUTLYX_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlDialog_impl.h"
|
|
#include "Lsstream.h"
|
|
#include "LString.h"
|
|
|
|
/** A controller for the About LyX dialogs.
|
|
*/
|
|
class ControlAboutlyx : public ControlDialogBI {
|
|
public:
|
|
///
|
|
ControlAboutlyx(LyXView &, Dialogs &);
|
|
|
|
///
|
|
stringstream & getCredits(stringstream &) 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
|