mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
a6444784dc
- bformat(): contributed by Georg Beaum - Alert::XXX - error(): in SpellBase, ispell, psell, aspell, buffer, etc. - message(), message signal - displayMessage(), setMessage, - ErrorItems - prettyName() - makeDisplayPath() and maybe some more... - etc... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14970 a592a061-630c-0410-9148-cb99ea01b6c8
102 lines
2.6 KiB
C
102 lines
2.6 KiB
C
/**
|
|
* \file ControlAboutlyx.C
|
|
* 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.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlAboutlyx.h"
|
|
#include "gettext.h"
|
|
#include "version.h"
|
|
|
|
#include "support/filetools.h" // FileSearch
|
|
#include "support/package.h"
|
|
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
using std::ostream;
|
|
using std::ostringstream;
|
|
using std::string;
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using support::fileSearch;
|
|
using support::makeDisplayPath;
|
|
using support::package;
|
|
|
|
namespace frontend {
|
|
|
|
|
|
ControlAboutlyx::ControlAboutlyx(Dialog & parent)
|
|
: Dialog::Controller(parent)
|
|
{}
|
|
|
|
|
|
void ControlAboutlyx::getCredits(ostream & ss) const
|
|
{
|
|
string const name = fileSearch(package().system_support(), "CREDITS");
|
|
|
|
bool found(!name.empty());
|
|
|
|
if (found) {
|
|
std::ifstream in(name.c_str());
|
|
|
|
ss << in.rdbuf();
|
|
found = ss.good();
|
|
}
|
|
|
|
if (!found) {
|
|
ss << lyx::to_utf8(_("ERROR: LyX wasn't able to read CREDITS file\n"))
|
|
<< lyx::to_utf8(_("Please install correctly to estimate the great\n"))
|
|
<< lyx::to_utf8(_("amount of work other people have done for the LyX project."));
|
|
}
|
|
}
|
|
|
|
|
|
string const ControlAboutlyx::getCopyright() const
|
|
{
|
|
return lyx::to_utf8(_("LyX is Copyright (C) 1995 by Matthias Ettrich,\n1995-2001 LyX Team"));
|
|
}
|
|
|
|
|
|
string const ControlAboutlyx::getLicense() const
|
|
{
|
|
return lyx::to_utf8(_("This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version."));
|
|
}
|
|
|
|
|
|
string const ControlAboutlyx::getDisclaimer() const
|
|
{
|
|
return lyx::to_utf8(_("LyX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA."));
|
|
}
|
|
|
|
|
|
string const ControlAboutlyx::getVersion() const
|
|
{
|
|
ostringstream ss;
|
|
|
|
ss << lyx::to_utf8(_("LyX Version "))
|
|
<< lyx_version
|
|
<< " ("
|
|
<< lyx_release_date
|
|
<< ")\n"
|
|
<< lyx::to_utf8(_("Library directory: "))
|
|
<< lyx::to_utf8(makeDisplayPath(package().system_support()))
|
|
<< "\n"
|
|
<< lyx::to_utf8(_("User directory: "))
|
|
<< lyx::to_utf8(makeDisplayPath(package().user_support()));
|
|
|
|
return ss.str();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|