]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiAbout.cpp
7c9c38aa039d0f5c35041d66a8b85c85e9ff9c66
[lyx.git] / src / frontends / qt4 / GuiAbout.cpp
1 /**
2  * \file GuiAbout.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Kalle Dalheimer
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiAbout.h"
14
15 #include "qt_helpers.h"
16 #include "version.h"
17
18 #include "support/filetools.h"
19 #include "support/gettext.h"
20 #include "support/lstrings.h"
21 #include "support/Package.h"
22
23 #include <QDate>
24 #include <QtCore>
25 #include <QtGui>
26
27 using namespace lyx::support;
28 using lyx::support::package;
29 using lyx::support::makeDisplayPath;
30
31
32 namespace lyx {
33 namespace frontend {
34
35
36 static QDate release_date()
37 {
38         return QDate::fromString(QString(lyx_release_date), Qt::ISODate);
39 }
40
41
42 static QString credits()
43 {
44         QString res;
45         QFile file(toqstr(package().system_support().absFilename()) + "/CREDITS");
46         QTextStream out(&res);
47
48         if (file.isReadable()) {
49                 out << qt_("ERROR: LyX wasn't able to read CREDITS file\n");
50                 out << qt_("Please install correctly to estimate the great\n");
51                 out << qt_("amount of work other people have done for the LyX project.");
52         } else {
53                 file.open(QIODevice::ReadOnly);
54                 QTextStream ts(&file);
55                 ts.setCodec("UTF-8");
56                 QString line;
57                 do {
58                         line = ts.readLine();
59                         if (line.startsWith("@b"))
60                                 out << "<b>" << line.mid(2) << "</b>";
61                         else if (line.startsWith("@i"))
62                                 out << "<i>" << line.mid(2) << "</i>";
63                         else
64                                 out << line;
65                         out << "<br>";
66                 } while (!line.isNull());
67         }
68         out.flush();
69         return res;
70 }
71
72
73 static QString copyright()
74 {
75         QString release_year = release_date().toString("yyyy");
76         docstring copy_message =
77                 bformat(_("LyX is Copyright (C) 1995 by Matthias Ettrich,\n1995--%1$s LyX Team"),
78                         qstring_to_ucs4(release_year));
79         return toqstr(copy_message);
80 }
81
82
83 static QString license()
84 {
85         return qt_("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.");
86 }
87
88
89 static QString disclaimer()
90 {
91         return qt_("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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.");
92 }
93
94
95 static QString version()
96 {
97         QLocale loc;
98         QString loc_release_date =
99                 loc.toString(release_date(), QLocale::LongFormat);
100         if (lyx_release_date == "not released yet")
101                 loc_release_date = qt_("not released yet");
102         docstring version_date =
103                 bformat(_("LyX Version %1$s\n(%2$s)\n\n"),
104                         from_ascii(lyx_version),
105                         qstring_to_ucs4(loc_release_date));
106         QString res;
107         QTextStream out(&res);
108         out << toqstr(version_date);
109         out << qt_("Library directory: ");
110         out << toqstr(makeDisplayPath(package().system_support().absFilename()));
111         out << "\n";
112         out << qt_("User directory: ");
113         out << toqstr(makeDisplayPath(package().user_support().absFilename()));
114         return res;
115 }
116
117
118 GuiAbout::GuiAbout(GuiView & lv)
119         : GuiDialog(lv, "aboutlyx", qt_("About LyX"))
120 {
121         setupUi(this);
122
123         connect(closePB, SIGNAL(clicked()), this, SLOT(reject()));
124
125         copyrightTB->setPlainText(copyright());
126         copyrightTB->append(QString());
127         copyrightTB->append(license());
128         copyrightTB->append(QString());
129         copyrightTB->append(disclaimer());
130
131         versionLA->setText(version());
132         creditsTB->setHtml(credits());
133 }
134
135
136 Dialog * createGuiAbout(GuiView & lv) { return new GuiAbout(lv); }
137
138
139 } // namespace frontend
140 } // namespace lyx
141
142 #include "moc_GuiAbout.cpp"